:root {
    --primary-color: #F2408E;
    --secondary-color: #8F3C9C;
    --light-gray-color: #979797;
    --tag-color: #8E146F;
    --gray-color: #E5E5E5;
    --transition: all 0.3s;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'true_mediumregular';
    font-size: 24px;
    line-height: 24px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #F3F3F3;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

:focus {
    outline: none;
}
/*
::-webkit-scrollbar {
    display: none;
}

::-webkit-scrollbar {
    display: none;
}

::-webkit-input-placeholder {
    /* WebKit, Blink, Edge *!/
    color: #CECECE;
}*/

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #CECECE;
    opacity: 1;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #CECECE;
    opacity: 1;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #CECECE;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #CECECE;
}

::placeholder {
    /* Most modern browsers support this now. */
    color: #CECECE;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.form-control {
    color: #000;
    background-color: #F3F3F3;
    transition: var(--transition);
    border-color: transparent;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: none;
}

header .header-first,
header .header-menu {
    background-color: #FFF;
}

header .header-menu {
    box-shadow: inset 10px 10px 10px rgb(0 0 0 / 2%);
    transition: background-color 0.5s ease;
}

header .header-search .search-toggler {
    display: none;
}

header .header-first .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .navbar {
    padding: 0;
}

header .navbar-brand img {
    height: 48px;
    width: auto;
}

header .navbar-toggler {
    display: none;
}

header .dropdown-item:focus,
header .dropdown-item:hover {
    background-color: #f2f2f2;
}

header ul.navbar-nav li.nav-item {
    margin-right: 22px;
}

header ul.navbar-nav li .dropdown-toggle::after {
    font-family: 'icomoon';
    content: "\e91b";
    transform: rotate( -90deg);
    font-size: 10px;
    border: 0;
    position: absolute;
    right: 0px;
    top: 3px;
    bottom: 0;
}

header ul.navbar-nav li.nav-item a {
    color: #494949;
    font-size: 24px;
    line-height: 32px;
    padding: 5px 22px;
    display: block;
    position: relative;
}

header ul.navbar-nav li.nav-item:hover>a,
header ul.navbar-nav li.nav-item.current>a {
    color: var(--primary-color);
}

header ul.navbar-nav li.nav-item {
    border-bottom: 4px solid transparent;
}

header ul.navbar-nav li.nav-item:not(.dropdown) {
    margin-right: 0px;
}

header ul.navbar-nav li.nav-item.current {
    border-color: var(--primary-color);
}

header .dropdown-menu li:hover a.dropdown-item {
    color: var(--primary-color);
}

header .dropdown-menu {
    border: 0;
    border-radius: 0;
}

header .header-menu.active {
    background-color: var(--primary-color);
}

header .header-menu.active ul.navbar-nav li.nav-item>a,
header .header-menu.active ul.navbar-nav li.nav-item>a {
    color: #FFF;
}

header .dropdown-menu {
    border-bottom: 3px solid var(--primary-color);
}

header .dropdown-menu[data-bs-popper] {
    margin-top: 4px;
}

header .header-right>div>div {
    margin-left: 16px;
}

header .header-language ul {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}

header .header-language ul li {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    line-height: 24px;
}

header .header-language ul li:not(:last-child):after {
    content: '|';
    color: #CECECE;
    display: inline-block;
    padding-left: 8px;
}

header .header-language ul li a {
    color: #979797;
}

header .header-language ul li.current a,
header .header-language ul li:hover a {
    color: #494949;
}

header .header-language ul li.current a {
    font-family: 'true_boldregular';
}

header .header-member {
    font-family: 'true_boldregular';
    font-size: 18px;
    line-height: 24px;
}

header .header-member a {
    display: flex;
    justify-content: center;
    align-items: center;
}

header .header-member i {
    font-size: 18px;
}

header .header-member a {
    padding-right: 12px;
}

header .watch-now a {
    color: #FFF;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    width: 146px;
    font-size: 16px;
    border-radius: 0;
    overflow: hidden;
}

header .watch-icon {
    width: 17px;
    height: 17px;
    background: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .watch-icon i {
    margin-top: -6px;
    margin-right: 0;
    margin-left: 2px;
}

header .watch-icon i:before {
    font-size: 8px;
    color: var(--primary-color);
}

header .inputSearch {
    width: 200px;
    border-radius: 16px;
    height: 32px;
    font-size: 14px;
    color: var(--primary-color);
    padding: 0 15px 0 35px;
}

header .searchbox {
    position: relative;
}

header .searchbox:before {
    content: "\e91f";
    font-family: 'icomoon';
    color: #CECECE;
    font-size: 16px;
    position: absolute;
    left: 10px;
    top: 5px;
}

header .buttonSearch {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    max-width: 0;
    position: absolute;
    top: -9999p;
    padding: 0;
    background: transparent;
    border: 0;
}

.btn-hover-gradient {
    color: #FFF;
    background: var(--primary-color);
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.btn-hover-gradient:before {
    content: "";
    background: -webkit-linear-gradient(45deg, #EC4596, #8F3C9C, #EC4596);
    background: -moz-linear-gradient(45deg, #EC4596, #8F3C9C, #EC4596);
    background: linear-gradient(45deg, #EC4596, #8F3C9C, #EC4596);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}

.btn-hover-gradient:hover:after {
    background: transparent;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}

.btn-hover-gradient:active {
    color: #FFF;
}

.btn-hover-gradient:active:after {
    background: transparent;
}

.btn-hover-gradient:hover:before {
    opacity: 1;
}

.btn-hover-gradient:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    left: 0;
    top: 0;
    border-radius: 8px;
}

header .menu-toggler .bar {
    width: 20px;
    height: 2px;
    background: #4f4f4f;
    margin-bottom: 3px;
}

header .menu-toggler .bar:last-child {
    width: 10px;
    margin-bottom: 0;
}

header .navbar-close {
    display: none;
}

header .navbar-close i {
    font-size: 12px;
    margin-right: 0;
}

footer {
    background-color: rgba(0, 0, 0, 1);
}

footer .footer-menu {
    background-image: url(../images/bg_footer.png);
    background-position: bottom center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-color: #1C1C1C;
    padding-top: 30px;
}

footer ul {
    margin-bottom: 0px;
    list-style: none;
    padding: 0;
}

footer .footer-menu ul {
    margin-bottom: 30px;
}

footer .footer-shortcut .col-group {
    width: 48%;
}

footer .footer-menu ul li {
    margin-bottom: 8px;
}

footer .footer-shortcut .col-group:first-child {
    margin-right: 3%;
}

footer {
    font-size: 15px;
    line-height: 20px;
}

footer .footer-shortcut ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

footer .footer-shortcut ul li {
    padding: 30px 0;
}

footer .footer-shortcut ul.social {
    justify-content: flex-end;
}

footer .footer-shortcut ul.social a {
    width: 25px;
    height: 25px;
    background-color: #4f4f4f;
    border-radius: 2px;
    padding: 4px;
    display: block;
    vertical-align: middle;
    text-align: center;
    color: #FFF;
}

footer .footer-shortcut ul.social li {
    margin-left: 10px;
}

footer .footer-shortcut i {
    font-size: 16px;
    margin-right: 0;
}

footer .footer-shortcut ul:not(.social) li i {
    margin-right: 10px;
    vertical-align: middle;
}

footer .col-group {
    display: inline-block;
    width: 19%;
    vertical-align: top;
}

footer .footer-menu h5 {
    margin-bottom: 16px;
    font-size: 18px;
    color: var(--primary-color);
    font-family: 'true_boldregular';
}

footer .footer-menu h5,
footer .footer-menu a {
    color: #FFF;
}

footer .copyright {
    border-top: 1px solid #4F4F4F;
}

footer .copyright p {
    margin-bottom: 0;
    padding: 20px 0;
    text-align: center;
    color: #4F4F4F;
}

footer .footer-callcenter {
    padding: 10px 0;
    background: rgb(243, 243, 243);
    background: linear-gradient(180deg, rgba(243, 243, 243, 1) 0%, rgba(255, 255, 255, 1) 47%, rgba(229, 229, 229, 1) 100%);
}

footer .footer-callcenter p {
    margin-bottom: 0;
    text-align: right;
    font-size: 18px;
}

footer .footer-callcenter p,
footer .footer-callcenter h3 {
    display: inline-block;
    vertical-align: middle;
}

footer .footer-callcenter p span {
    padding-right: 20px;
}

footer .footer-callcenter h3 {
    font-size: 32px;
    margin-left: 40px;
    margin-bottom: 0;
}

footer .footer-callcenter h3 i {
    font-size: 22px;
    margin-left: 20px;
    margin-right: 0;
}

@media (max-width: 1199.98px) {
    header ul.navbar-nav li.nav-item a {
        padding-left: 6px;
        padding-right: 16px;
    }
}

@media (max-width: 991.98px) {
    body.fixed-position {
        position: fixed;
        width: 100%;
    }
    main {
        transition: all 0.5s;
    }
    body.fixed-position main {
        filter: brightness(0.5) blur(1px);
    }
    header .navbar-toggler {
        display: block;
    }
    header .navbar-brand {
        margin-right: 0;
    }
    header .header-first {
        padding: 12px 0;
        height: 60px;
    }
    .header-right .header-member,
    .header-right .watch-now {
        display: none;
    }
	.header-language {
		order: -1;
	}
	.header-language img {
	    width: 20px;
	    height: 20px;
	    border-radius: 50%;
	}
	.header-language span {
	   display: none;
	}
	header .header-language ul li {
		display: block;
		padding: 10px 0;
	}
	.header-language .dropdown-toggle::after {
		display: none;
	}
	header .header-language .dropdown-menu {
	    border-bottom: 0;
	    min-width: unset;
		background: transparent;
	}
    header .navbar-toggler {
        position: relative;
    }
    header .header-search .search-toggler {
        padding: 0;
        color: #4f4f4f;
    }
    header .header-search .search-toggler {
        display: block;
    }
    header .header-search .search-toggler i.icon-search {
        margin-right: 0;
        font-size: 16px;
        color: #4f4f4f;
        display: block;
    }
    header .searchform {
        display: none;
        position: absolute;
        top: 60px;
        width: 100%;
        left: 0;
    }
    header .inputSearch {
        width: 100%;
        border-radius: 0;
        box-shadow: 0 1px 5px #cecece;
        height: 40px;
        font-size: 16px;
    }
    header .searchform.show {
        display: block;
    }
    .header-menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
    }
    header .navbar {
        display: block;
    }
    header .navbar-close {
        position: absolute;
        top: 0;
        padding: 16px;
        right: 5px;
        font-family: 'true_boldregular';
        font-size: 30px;
    }
    header .header-menu {
        background-color: #FFF;
        z-index: 99;
    }
    header .header-menu .container {
        height: 100%;
        padding-left: 28px;
        padding-right: 14px;
        overflow: auto;
    }
    header .header-menu .navbar-brand {
        padding: 18px 0;
    }
    header ul.navbar-nav li.nav-item.current {
        border-bottom: 0;
        background-color: #F2F2F2;
        border-radius: 8px;
    }
    header ul.navbar-nav li.nav-item a {
        font-size: 22px;
        line-height: 24px;
        padding: 12px 14px;
    }
    header .header-menu .watch-now a {
        width: calc(100% + 14px);
        padding-left: 14px;
        font-size: 22px;
        line-height: 24px;
        margin-left: 0;
    }
    header .watch-icon i {
        margin-top: -12px;
    }
    header ul.navbar-nav li.nav-item {
        margin-right: 0;
        width: 265px;
    }
    header .dropdown-menu[data-bs-popper] {
        margin-top: 0;
        border-bottom: 0;
        padding-left: 10%;
    }
    header .dropdown-item:focus,
    header .dropdown-item:hover {
        background-color: transparent;
    }
    header .header-member a {
        display: block;
    }
    header .header-member {
        font-size: 22px;
        padding: 20px 0 20px 15px;
        border-bottom: 1px solid #F2F2F2;
        margin-bottom: 12px;
    }
    footer .footer-callcenter p span {
        padding-right: 0;
    }
    footer .footer-menu {
        background-image: url(../images/bg_footer_m.png);
        background-size: cover;
    }
    footer .footer-shortcut .col-group:first-child {
        margin-right: 0;
    }
    footer .footer-shortcut .col-group {
        width: 49%;
        padding: 24px 0;
    }
    footer .footer-shortcut ul {
        flex-direction: column;
        align-items: flex-start;
    }
    footer .footer-shortcut ul li {
        padding: 5px 0;
    }
    footer .footer-shortcut ul.social {
        flex-direction: row;
        justify-content: center;
        border-top: 1px solid #4f4f4f;
    }
    footer .footer-shortcut ul.social li {
        margin: 5px;
        padding: 20px 10px;
    }
    footer .col-group {
        width: 49%;
    }
    footer .copyright p {
        text-align: left;
    }
    footer .container,
    footer .footer-menu,
    footer .footer-shortcut {
        padding-right: var(--bs-gutter-x, .75rem);
        padding-left: var(--bs-gutter-x, .75rem);
        margin-left: 0;
        margin-right: 0;
    }

    header .navbar-brand img {
        height: 32px;
        width: auto;
    }
}

/*@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1140px;
    }
}*/
.ads .iframe {
	max-width: 100%;
}


.ads {
    text-align: center;
}

.package {
    background: url('/assets/images/bg_package.jpg') !important;
}

@media (max-width: 767.98px) {
    header .navbar-brand img {
        height: 32px;
        width: auto;
    }
}