/* START WEB FONTS */

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo-ExtraBold.woff2') format('woff2'),
        url('../fonts/Cairo-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo-Black.woff2') format('woff2'),
        url('../fonts/Cairo-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo-Bold.woff2') format('woff2'),
        url('../fonts/Cairo-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo-ExtraLight.woff2') format('woff2'),
        url('../fonts/Cairo-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo-Light.woff2') format('woff2'),
        url('../fonts/Cairo-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo-Medium.woff2') format('woff2'),
        url('../fonts/Cairo-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo-Regular.woff2') format('woff2'),
        url('../fonts/Cairo-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo-SemiBold.woff2') format('woff2'),
        url('../fonts/Cairo-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo-Bold.eot');
    src: url('../fonts/Cairo-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Cairo-Bold.woff2') format('woff2'),
        url('../fonts/Cairo-Bold.woff') format('woff'),
        url('../fonts/Cairo-Bold.ttf') format('truetype'),
        url('../fonts/Cairo-Bold.svg#Cairo-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* END WEB FONTS */

:root {
    --primary-font: "Cairo";
    --primary-color: #FFF;
    --secondary-color: #85183C;
    --hover-color: #4A1029;
    --white: #ffffff;
    --bg-color: #161616;
    --yellow: #FEC20D;
    --black: #000;
    --gray: #757575;
    --dark-gray: #2e2e2e;
    --popup-border-radius: 20px;
    --show-card-border-radius: 4px;
    --profile-border-radius: 8px;
    --button-border-raduis: 6px;
    --form-input-border-radius: 4px;
    --white-10: rgba(255, 255, 255, .10);
    --white-30: rgba(255, 255, 255, .30);
    --white-80: rgba(255, 255, 255, .80);
    --red: #e21a2d;
    --redhover: #FEB913;
}


/* START CUSTOM SCROLL BAR */

*::-webkit-scrollbar {
    width: 8px;
    border-radius: var(--show-card-border-radius);
}

*::-webkit-scrollbar-track {
    background: var(--dark-gray);
    border-radius: var(--show-card-border-radius);
}

*::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: var(--show-card-border-radius);
}

* {
    scrollbar-width: unset;
    /*    scrollbar-color: var(--yellow) var(--dark-gray);*/
}

/* END CUSTOM SCROLL BAR */

/* START GLOBLE CSS */

input[type="file"]::-webkit-file-upload-button {
    cursor: pointer;
}

input[type="file"]::-moz-file-upload-button {
    cursor: pointer;
}

input[type="file"]::-ms-file-upload-button {
    cursor: pointer;
}

input[type="file"]::-o-file-upload-button {
    cursor: pointer;
}

input[type="file"] {
    cursor: pointer;
}

*::-moz-selection {
    color: var(--black);
    background: var(--white);
}

*::-webkit-selection {
    color: var(--black);
    background: var(--white);
}

*::-webkit-input-placeholder {
    color: var(--black);
    opacity: 1;
    font-family: var(--primary-font);
    font-weight: 400;
}

*:-moz-placeholder {
    color: var(--black);
    opacity: 1;
    font-family: var(--primary-font);
    font-weight: 400;
}

*::-moz-placeholder {
    color: var(--black);
    opacity: 1;
    font-family: var(--primary-font);
    font-weight: 400;
}

*:-ms-input-placeholder {
    color: var(--black);
    opacity: 1;
    font-family: var(--primary-font);
    font-weight: 400;
}

a,
div a:hover,
div a:active,
div a:focus,
button {
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a,
span,
div a:hover,
div a:active,
button {
    text-decoration: none;
}

*::after,
*::before,
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
    display: block;
}

body.no_space {
    padding-top: 0;
}

body {
    font-family: var(--primary-font);
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    line-height: 100%;
    color: var(--white);
}

body * {
    margin: 0;
    box-sizing: border-box;
}
#wrapper{
    overflow-x: hidden;
}
.main-wrapper {
    min-height: 85vh;
    z-index: 2;
    position: relative;
}

.hide_in_desktop {
    display: none;
}

.no_scroll {
    overflow: hidden;
}

.hidden {
    display: none !important;
}

svg {
    width: 100%;
    height: 100%;
}

body .clearfix,
body .clear {
    clear: both;
    line-height: 100%;
}

body .clearfix {
    height: auto;
}

* {
    outline: none !important;
}

* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    /* For some Androids */

}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.clr::after,
ul::after,
.clearfix::after,
li::after {
    clear: both;
    display: block;
    content: "";
}

iframe {
    display: block;
    width: 100%;
}


/* START BODY CONTAINER STYLE */
.container {
    width: 100%;
    max-width: 93.4%;
    /* max-width: 1316px; */
    /* padding-left: 15px;
    padding-right: 15px; */
    margin: 0 auto;
    position: relative;
    float: none;
}

section {
    /* padding-top: 60px; */
    padding-bottom: 55px;
    position: relative;
}

.main-wrapper section:last-child {
    padding-bottom: 60px;
}

/* END BODY CONTAINER STYLE */

/* START FORM-ITEMS STYLES */
div input,
div select,
div textarea,
div button {
    font-family: var(--primary-font);
}

div select {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

div select option {
    font-size: 13px;
    color: var(--black);
    padding: 2px 5px;
}

/* END FORM-ITEMS STYLES */

/* START IMAGE STYLE */
img {
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

/* END IMAGE STYLE */



/* START HEADING STYLE */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
    transition: all 0.3s ease;
    font-weight: 400;
    color: var(--primary);
    line-height: 140%;
}

/* END HEADING STYLE */




/* START BODY TEXT STYLE */
p {
    font-family: var(--primary-font);
    font-size: 16px;
    color: var(--primary);
    line-height: normal;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

span {
    display: inline-block;
    transition: all 0.3s ease;
}

/* END BODY TEXT STYLE */


/* START LINKS STYLE */
a {
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    transition: all 0.3s ease;
}

/* END LINKS STYLE */


/* START  BUTTONS STYLE */

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}


.btn,
button {
    display: inline-block;
    border: none;
    padding: 12px 60px;
    margin: 0;
    text-decoration: none;
    background: var(--red);
    color: #ffffff;
    font-size: 30px;
    line-height: 120%;
    cursor: pointer;
    text-align: center;
    border-radius: 10px;
    font-weight: bold;
}



.btn_wrap {
    text-align: center;
}

.btn {
    color: var(--white);
    background-color: var(--secondary-color);
    text-align: center;
    font-family: var(--primary-font);
    font-weight: 400;
    font-style: Medium;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    padding: 10px 20px;
    border-radius: var(--form-input-border-radius);
    min-height: 38px;
}

.btn:hover {
    background-color: var(--hover-color);
}

.btn.play {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
}

.btn.play:before {
    content: "";
    background-image: url(../images/play-icon.svg);
    height: 15px;
    width: 15px;
    display: block;
    background-repeat: no-repeat;
    margin-left: 12px;
}

/* END BUTTONS STYLE */




/* START LISTING STYLE */

body ul {
    margin: 0;
    padding: 0;
}

ul,
ul li,
ol,
li {
    font-family: var(--primary-font);
    padding: 0;
    list-style: none;
    transition: all 0.3s ease;
}

/* END LISTING STYLE */

.article ul li {
    list-style: disc;
}

.article ul {
    margin-right: 30px;
    margin-bottom: 25px;
}

section.ltr .article ul {
    margin-left: 30px;
    margin-bottom: 25px;
}


.article ul li {
    color: #757575;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 177.778%;
}
.article ul ol a,
.article ul li a{
    font-size: inherit;
    font-weight: inherit;
}

[data-loaded="true"] {
    animation-name: fade;
    animation-duration: 1.5s;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 1;
}

/* .lozad {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 0;
} */
/* END GLOBLE CSS */

.show-in-mobile {
    display: none;
}

/* START HEADER CODE */
.header-top {
    background: var(--yellow);
    z-index: 9;
    position: relative;
    text-align: center;
    padding: 8px 0;
}

.header-top p {
    color: var(--black);
}

.header-top p a {
    color: var(--black);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
    font-size: inherit;
}

.header-top p:last-child {
    margin-bottom: 0;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    transition: all 0.5s ease 0s;
}

.header .header-row {
    padding: 12px 0;
    transition: 0.5s all;
}

.header::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    background: linear-gradient(360deg, #161616 0%, rgba(22, 22, 22, 0) 100%);
    transform: rotate(180deg);
    height: 191px;
    width: 100%;
    pointer-events: none;
}

.header.fixed {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    padding: 25px 0;
    transition: all 0.5s ease 0s;
    z-index: 99;
}

.hide-header .header {
    top: -200px;
    transition: all 0.5s ease;
}

.header-logo-block .logo {
    max-width: 155px;
    width: 100%;
    vertical-align: top;
}

.header-logo-block .logo img {
    max-width: 155px;
    width: 100%;
    object-fit: contain;
    display: block;
}

.nav>ul>li>a {
    color: rgba(255, 255, 255, .5);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 3;
    padding: 25px 0;
}

li.has-dropdown.open a {
    color: var(--primary-color);
}

.nav>ul>li>a:hover {
    color: var(--primary-color);
}

.nav>ul>li.has-dropdown>a::after,
.sub-menu>li.inner-dropdown>a::after {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url(../images/down_arrow.svg);
    transition: 0.3s all;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 12px;
    margin-top: 5px;
}

/*.nav > ul > li.has-dropdown.open > a::after {
    transform: rotate(180deg);
    margin-top: 0;
}*/

.nav>ul>li.active>a {
    color: var(--white);
}

.nav .sub-menu {
    position: absolute;
    top: calc(100% - 20px);
    right: 0;
    /* transform: translate(-50%); */
    margin: 0 auto;
    background: var(--bg-color);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
    width: 100%;
    min-width: 138px;
    padding: 20px 8px 20px 8px;
}

.nav li.has-dropdown.open .sub-menu {
    display: block;
}

.nav .sub-menu>li {
    margin-bottom: 5px;
}

.nav .sub-menu>li:last-child {
    margin-bottom: 0;
}

.nav .sub-menu li>a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 4px 10px;
    border-radius: 4px;
    display: flex;
}

.nav .sub-menu li>a:hover {
    background-color: #383838;
    color: var(--white);
}

/*.nav ul li a:before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 36px;
    background-color: var(--redhover);
    height: 2px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease 0s;
    border-radius: 10px;
}*/

/*.nav ul li.active>a:before {
    opacity: 1;
    visibility: visible;
    width: 100%;
}*/

.header-right-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.header.fixed {
    position: fixed;
    /* background: rgba(0, 0, 0, 0.5); */
    background: linear-gradient(360deg, #161616 0%, rgba(22, 22, 22, 0) 100%);
    padding: 0;
    transition: all 0.5s ease 0s;
    z-index: 99;
}

.header.fixed .header-row {
    padding: 8px 0;
}

.nav ul {
    display: flex;
    flex-wrap: wrap;
}

.mobile_menu {
    display: none;
}

.header-logo-block {
    display: inline-flex;
    padding-left: 30px;
    z-index: 1000;
}

.nav>ul>li {
    margin-left: 0;
    padding: 0 14px;
    position: relative;
}

.nav>ul>li {
    position: relative;
}

.nav ul li:last-child {
    margin-left: 0;
}

.sub-menu-click {
    display: none;
}

.nav ul.submenu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 275px;
    background: #222127;
    padding: 30px 7px 5px;
    border-radius: 5px;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: all 0.5s ease;
    border: 1px solid #444043;
}

.nav ul li.has-submenu:hover>ul.submenu {
    max-height: 1000px;
    overflow: visible;
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transition: all 0.5s ease;
}

.nav ul.submenu::before {
    content: "\f0d8";
    position: absolute;
    top: -27px;
    right: 30px;
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    font-size: 45px;
    color: #090907;
    display: none;
}

.nav ul.submenu li {
    margin: 0 0 6px 0;
    display: block;
    width: 100%;
}

.nav ul.submenu li a::before {
    display: none;
}

.nav ul.submenu li a {
    border-radius: 4px;
    padding: 6px 12px;
    background-color: transparent;
    font-size: 16px;
    width: 100%;
    color: #fff;
    text-shadow: none;
}

.nav ul.submenu li.active a,
.nav ul.submenu li a:hover {
    background-color: #2E2C34;
}

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

.header-left-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 155px;
}


.header-left-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-left-inner .search_btn,
.header-left-inner .lang_btn>a,
.header-left-inner .kids_btn>a {
    background-color: var(--bg-color);
    width: 62px;
    height: 38px;
    border-radius: var(--button-border-raduis);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang_btn {
    position: relative;
}

.header-left-inner .search_btn {
    cursor: pointer;
}

.header-left-inner .kids_btn>a {
    background-color: #DDA130;
}

.header-left-inner .kids-mode>a {
    background-color: var(--secondary-color);
}

.header-left-inner .exit_btn>a {
    background-color: var(--white);
}

.header-left-inner .search_btn:hover,
.header-left-inner .lang_btn>a:hover {
    background-color: var(--secondary-color);
}

.header-left-block>ul>li>a {
    color: #fff;
    font-size: 36px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.header-btn-wrap .btn+* {
    margin-right: 10px;
}

.header-left-block ul li {
    transition: all 0.5s ease;
    position: relative;
    vertical-align: top;
}

.header-left-block ul li:last-child {
    margin-right: 0;
}

.header-left-block ul li.mobile-menu {
    display: none;
}

.header-left-block>ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


.header-left-block>ul>li>a.profile-click {
    width: 55px;
    display: flex;
    height: 45px;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    border: 1px solid transparent;
    text-align: center;
    border-radius: 9px;
    transition: all 0.5s ease;
    padding-right: 26px;
}

.header-left-block li>a.profile-click img {
    display: inline-block;
    margin: 0;
    max-width: 28px;
}

.header-left-block li.show-profile>a.profile-click {
    width: 216px;
    transition: all 0.5s ease;
    color: var(--white);
    background: var(--redhover);
    border-color: var(--redhover);
    margin-bottom: 0px;
    padding-left: 15px;
}

.header-left-block>ul>li>a i {
    position: absolute;
    right: 3px;
    top: 16px;
    display: block;
}

li.show-profile>a.profile-click .fa-angle-down {
    right: 10px;
}

.sign-up-btn-wrapper ul li * {
    transition: all 0.5s ease;
}

.profile-option {
    display: flex;
    align-items: center;
    margin: auto;
    background: transparent;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.sign-up-btn-wrapper .profile-option>li a {
    font-family: "Gotham";
    color: var(--white);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

li.sign-up-btn {
    margin-left: 6px;
}

li.sign-up-btn>a {
    padding: 10px 10px;
    border: 1px solid transparent;
    border-radius: 4px;
}

li.sign-up-btn>a:hover {
    border: 1px solid #FFF;
}

.sign-up-btn-wrapper .profile-option>li.log-in-btn.btn_fill>a {
    border-radius: 4px;
    background: #1E1E1E;
    padding: 11px 17px;
    min-height: 38px;
}

.sign-up-btn-wrapper .profile-option>li.log-in-btn.btn_fill>a:hover {
    font-weight: 400;
    color: var(--black);
    background-color: var(--primary);
}

.sign-up-btn-wrapper .profile-option>li.active a,
.sign-up-btn-wrapper .profile-option>li a:hover {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.list-popup-box-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.list-popup-box {
    position: fixed;
    left: 0;
    right: 0;
    margin: auto;
    background: var(--black);
    max-width: 450px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    max-height: 95vh;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--red) var(--black);
    width: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    border-radius: 8px;
    padding: 40px;
}

.close-popup,
.epg-close-popup {
    position: absolute;
    width: 51px;
    height: 51px;
    border-radius: 50px;
    background: transparent;
    border: 2px solid #F1F1F1;
    text-align: center;
    display: flex;
    cursor: pointer;
    top: 30px;
    left: 40px;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    z-index: 1;
    font-size: 24px;
    color: #fff;
    background: rgba(0, 0, 0, 0.25);
}

.list-popup-box .close-popup {
    top: 15px;
    left: 15px;
}

.close-popup>img,
.epg-close-popup>img {
    filter: invert(0) brightness(100);
}

.kd-center {
    text-align: center;
}

.dec-text p {
    font-size: 18px;
    color: #fff;
}

.search-wrap .search {
    display: flex;
    width: 45px;
    height: 45px;
    padding: 5px;
    background: transparent;
    text-align: center;
    border-radius: 9px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    top: 0;
}

.search-wrap .search:hover {
    background: var(--redhover);
}

.header-left-block>ul>li>a i.fa-angle-down::before {
    background: url(../images/profile-arrow.png) no-repeat;
    height: 18px;
    width: 18px;
    display: block;
}

.add-to-fav i.fa-plus::before,
.banner-label li a::before,
.banner-slide .banner-image::before,
.banner-slide.hide-caption::before,
.banner-slider::before,
.clearfix::after,
.clr::after,
.container::after,
.header-left-block>ul>li>a i.fa-angle-down::before,
.header::before,
.kd-row::after,
.nav ul li a::before,
.show-page-banner.banner::before,
li::after,
ul::after {
    content: "";
}

/* END HEADER CODE */


/* START FOOTER CODE */
.footer {
    background-color: var(--black);
    padding: 30px 0;
    z-index: 1;
    position: relative;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.footer-row .footer-left {
    display: flex;
    align-items: center;
}

.footer-row .footer-left {
    display: flex;
    align-items: center;
}

.footer-left .copyright-txt p {
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    margin: 0;
    direction: ltr;
}

.footer-left .store-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 60px;
}

.footer-left .store-badges a img {
    display: block;
}

.footer-right {
    display: flex;
    align-items: center;
}

.footer-right .footer-logo {
    padding-left: 45px;
}

.footer-right .footer-link {
    padding-left: 60px;
}

.footer-logo a img {
    display: block;
    width: 100%;
    max-width: 45px;
}

.social_link_inner {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 10px;
}

.social_link_inner a {
    width: 20px;
}

.social_link_inner a:hover {
    opacity: 0.6;
}

.social_link_inner a img {
    display: block;
}

.footer-link ul li {
    display: inline-block;
    vertical-align: top;
    margin-left: 18px;
}

.footer-link ul li:last-child {
    margin-left: 0;
}

.footer-link ul li a {
    color: var(--white);
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    display: block;
}
.footer-link ul li a.active-link{
    color: var(--secondary-color);
}
.footer-link ul li a:hover {
    color: rgba(255, 255, 255, .6)
}

.footer-middle {
    display: flex;
    align-items: center;
    gap: 63px;
}

/* END FOOTER CODE */

/* START HERO BANNER CODE */

.hero-section .owl-carousel:not(owl-loaded) {
    display: block;
}

.hero-section {
    overflow: visible;
    padding-top: 0;
    position: relative;
    z-index: 2;
    padding-bottom: 0;
    margin-bottom: 35px;
}

.hero-section.live-page-banner {
    padding-top: 0;
}

.hero-section+.common-tv-show-sec {
    padding-top: 0;
    /*margin-top: -70px;*/
    position: relative;
    z-index: 2;
}

.HeroSlider .item {
    position: relative;
}

.HeroSlider .HeroSlider-img {
    position: relative;
    padding-top: 56.25%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.HeroSlider .HeroSlider-img>a::before,
.HeroSlider-iframe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(360deg, #161616 0%, rgba(22, 22, 22, 0) 100%);
    z-index: 2;
}

.kids_banner .HeroSlider .HeroSlider-img::before {
    display: none;
}

.hero-section.inner-single-banner .HeroSlider-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(34, 34, 34, 0.00) 0%, #222 100%);
    z-index: 4;
}


.HeroSlider-iframe {
    position: relative;
    /*    padding-top: 53.25%;*/
    height: 100vh;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.HeroSlider-img a,
.HeroSlider-iframe a,
.HeroSlider-img>img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: block;
}

.HeroSlider-img>img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.HeroSlider-iframe>a>iframe,
.HeroSlider-iframe iframe {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
}

.HeroSlider-iframe a img,
.HeroSlider-iframe img,
.HeroSlider-img a img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.HeroSlider .HeroSlider-info {
    position: absolute;
    bottom: 160px;
    right: 0;
    left: auto;
    max-width: 100%;
    padding: 0 3.2%;
    z-index: 3;
    margin: auto;
    width: 100%;
    pointer-events: none;
}


.HeroSlider-info .on_top {
    max-height: 120px;
    max-width: 350px;
}

.HeroSlider-info .inner_wrap {
    max-width: 460px;
    width: 100%;
    pointer-events: auto;
}

.HeroSlider-info .inner_wrap h1,
.HeroSlider-info .inner_wrap h2 {
    color: var(--white);
    font-family: var(--primary-font);
    color: rgba(255, 255, 255, 0.92);
    text-align: right;
    font-size: 25.5px;
    font-style: normal;
    font-weight: 400;
    line-height: 129.412%;
}

.HeroSlider-info .inner_wrap h1 {
    font-size: 48px;
}

.HeroSlider-info .inner_wrap .badge_labels {
    margin: 0 0 15px;
    width: auto;
    display: block;
}

.HeroSlider-info .inner_wrap .badge_labels img {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    max-width: 120px;
}

.HeroSlider-info .inner_wrap .logo {
    margin: 0 0 25px;
}

.HeroSlider-info .inner_wrap .logo img {
    width: auto;
    height: auto;
    margin: 0;
    max-width: 120px;
    object-fit: contain;
    object-position: bottom;
}

.HeroSlider-info .inner_wrap .movie_category {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 28px;
}

.HeroSlider-info .inner_wrap .movie_category span {
    color: var(--white);
    text-align: center;
    font-family: var(--primary-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 7px 12px;
    text-transform: capitalize;
    display: block;
    text-align: center;
    line-height: 100%;
    border-radius: 4px;
    border: 1px solid var(--white);
    background-color: #16161680;
}

.HeroSlider-info .inner_wrap .desc {
    margin-bottom: 21px;
    text-align: justify;
}

.HeroSlider-info .inner_wrap .desc p {
    display: -webkit-box;
    -webkit-line-clamp: 3;   /* show max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.HeroSlider-info p,
.HeroSlider-info .desc p {
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
}

.HeroSlider-info .hero-slider-bottom p b {
    font-weight: 400;
    padding-right: 25px;
}

.HeroSlider-info .hero-slider-bottom p:not(:last-child) {
    margin-bottom: 12px;
}

.hide-caption .inner_wrap> :not(.action-button) {
    opacity: 0.25;
}

.HeroSlider-info .inner_wrap>* {
    margin-bottom: 15px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.HeroSliderNav_wrapper {
    position: absolute;
    z-index: 1;
    bottom: 125px;
    max-width: 53.5%;
    left: 8.4%;
    overflow: hidden;
    padding: 1.5vw;
    width: 100%;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.HeroSlider .owl-stage.single {
    -webkit-transform: translate3d(0px, 0px, 0px) !important;
    transform: translate3d(0px, 0px, 0px) !important;
}

.hide-nav-slider .HeroSliderNav_wrapper {
    opacity: 0;
    visibility: hidden;
}

.HeroSliderNav .owl-item.active.current {
    z-index: 2;
}

.HeroSliderNav .owl-item.active.current .featur-slide .details {
    transform: unset;
    opacity: 1;
    visibility: visible;
}

.HeroSliderNav .owl-item.active.current .action-div {
    transform: translateY(-50%) scale(1);
}

.owl-carousel:not(owl-loaded) {
    display: flex;
}

.slider-banner {
    overflow: hidden;
}

.slider-banner .HeroSliderNav {
    /* max-width: 65%; */
    padding: 0 3.2%;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
}

.HeroSliderNav .HeroSlider-img {
    position: relative;
    width: 100%;
    /* padding-top: 55.6%; */
    padding-top: 40%;
    border-bottom: 2px solid transparent;
    transition: 0.3s all;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

.HeroSliderNav .HeroSlider-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.HeroSliderNav .owl-nav button {
    width: 8px;
    pointer-events: all;
}

.HeroSliderNav .owl-nav button img {
    object-fit: contain;
}

.HeroSlider .item.hide-caption .HeroSlider-img iframe {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
}


.HeroSlider .owl-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    max-width: calc(100% - 72px);
    pointer-events: none;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.HeroSlider.owl-carousel .owl-nav {
    max-width: 90px;
    top: auto;
    bottom: 120px;
    right: 0;
    left: auto;
}

.HeroSlider.owl-carousel .owl-nav button.owl-prev,
.HeroSlider.owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    pointer-events: all;
    border-radius: 111px;
    border: 1px solid rgba(255, 255, 255, 0.50);
    display: flex;
    align-items: center;
    justify-content: center;
}

.HeroSlider .owl-nav button img {
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-filter: brightness(0) invert(1);
}

.HeroSlider .owl-nav button:hover img {
    filter: brightness(1) invert(0);
    -webkit-filter: brightness(1) invert(0);
}

.owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    max-width: 520px;
    display: flex;
    margin: 0 auto;
    left: auto;
    right: 0;
    padding: 0 3.2%;
    align-items: center;
}

.inner-single-banner .owl-dots {
    bottom: 120px;
}

.banner-action-div {
    display: flex;
    align-items: center;
}

.action-button .common_icon_box.close-icon {
    display: none;
}

.hide-caption .action-button .common_icon_box.close-icon {
    display: flex;
}

.common_icon_box>a {
    display: block;
    height: inherit;
    width: inherit;
}

.play-icon.widget_link {
    position: relative;
}

.play-icon.widget_link .pause_btn {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
}

.widget_item.active .play-icon.widget_link .pause_btn {
    opacity: 1;
    visibility: visible;
}

.widget_item.active .play-icon.widget_link .play_btn {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.banner-action-div ul.social-share {
    background-color: #737373;
    text-align: center;
    border-radius: 6px;
}

.banner-action-div ul.social-share li {
    margin-bottom: 3px;
}

.banner-action-div ul.social-share li:last-child {
    margin-bottom: 0;
}

.banner-action-div ul.social-share li a {
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 2px;
}

.banner-action-div ul.social-share li a img {
    width: auto;
}

.banner-action-div ul.social-share li a:hover {
    background-color: var(--secondary-color);
    border-radius: var(--button-border-raduis);
}

.btn_share {
    position: relative;
}

.btn_share ul.social-share {
    background-color: #737373;
    text-align: center;
    border-radius: 6px;
    position: absolute;
    left: 0;
    right: 0;
    top: -120px;
    opacity: 0;
    visibility: hidden;
    padding: 3px 0;
    z-index: 2;
}

.btn_share:hover ul.social-share {
    opacity: 1;
    visibility: visible;
}

/*.widget_item.active ul.social-share{
    opacity: 1;
    visibility: visible;
}*/
.social-share li a img {
    opacity: 1 !important;
}

.btn_share .social-share:after {
    content: "";
    height: 24px;
    width: 24px;
    display: block;
    background-image: url(../images/share-icon_rectangle.png);
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
    position: absolute;
    bottom: -28px;
    left: 0;
    right: 0;
}

div .owl-dots .owl-dot:first-child {
    height: 9px;
    width: 9px;
}

div .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.30);
    display: block;
    border-radius: 50%;
    margin: 0 5px;
}

div .owl-dots .owl-dot.active {
    background-color: var(--yellow);
}

div .owl-dots .owl-dot:last-child {
    height: 4px;
    width: 4px;
}

div .owl-dots .owl-dot:nth-last-child(2) {
    height: 6px;
    width: 6px;
}

div.HeroSlider .owl-dots .owl-dot:first-child {
    height: 9px;
    width: 9px;
}

div.HeroSlider .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.30);
    display: block;
    border-radius: 50%;
}

div.HeroSlider .owl-dots .owl-dot:last-child {
    height: 4px;
    width: 4px;
}

div.HeroSlider .owl-dots .owl-dot:nth-last-child(2) {
    height: 6px;
    width: 6px;
}

div.HeroSlider .owl-dots .owl-dot.active {
    background-color: var(--yellow);
}


.volume .icon {
    position: relative;
}

.volume img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.volume img {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    pointer-events: none;
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
}

.common_icon_box.widget_item .volume img {
    width: auto;
}

.action-button .common_icon_box.volume_icon {
    display: none;
}

.hide-caption .action-button .common_icon_box.volume_icon {
    display: flex;
}

.volume[data-mute="0"] img.v-off {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    pointer-events: auto;
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.volume[data-mute="1"] img.v-on {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    pointer-events: none;
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}



.seasons_category {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.seasons_category span {
    display: inline-flex;
    color: var(--white);
    align-items: center;
}

.seasons_category span::before {
    content: '';
    position: relative;
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: var(--white);
    border-radius: 50%;
    margin: 0 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.seasons_category span:first-child::before {
    display: none;
}

.top10_box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.top_title p {
    font-size: 22px;
    color: var(--white);
    line-height: 140%;
    padding: 0 10px;
}

.HeroSlider-info .top10_icon {
    width: 22px;
    height: 22px;
}

.action-button {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 55px;
    pointer-events: auto;
}


/* START COMMON SLIDER CODE */

.common-slider-sec {
    overflow: hidden;
    padding: 36px 0 0;
}

.common-slider-sec>.common-slider-inner {
    padding-left: 5.4%;
    overflow: hidden;
    padding-right: 5%;
}

.common-slider-sec .title {
    position: relative;
}

.title {
    margin-bottom: 24px;
}

.title h2 {
    font-size: 33px;
    font-weight: 800;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.banner-label li a:hover,
.title h2 {
    color: #fff;
}

.title h2 img {
    width: 70px;
    margin: 0 15px;
}

.common-slider-inner div.owl-stage-outer {
    overflow: visible;
}

.owl-carousel .owl-stage::after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.movies-slide-info,
.movies-slider .owl-item,
.observations-slider .owl-item,
.owl-carousel .owl-item,
.owl-carousel .owl-nav,
.owl-carousel.owl-rtl .owl-item {
    transition: all .5s ease 0s;
}

.owl-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    margin: 0;
    position: absolute;
    max-width: 90px;
    top: -60px;
    bottom: auto;
    right: 0;
    left: auto;
    pointer-events: none;
    z-index: 1;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    pointer-events: all;
    border-radius: 111px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
}

.owl-carousel .owl-nav button.owl-prev {
    background-image: url(../images/slider-arrow-left.svg);
}

.owl-carousel .owl-nav button.owl-next {
    background-image: url(../images/slider-arrow-right.svg);
}

.owl-carousel .owl-nav button span {
    display: none;
}

.owl-carousel .owl-nav button.owl-next {
    margin-left: 10px;
}

.owl-carousel .owl-nav button svg {
    display: none;
}

.common-slider-sec:last-of-type {
    padding-bottom: 100px;
}

.owl-nav button.disabled {
    opacity: 0.5;
    pointer-events: none !important;
}

/*.owl-carousel .owl-nav > button.owl-next, .owl-carousel .owl-nav > button.owl-prev {*/
/*  background: url(../images/owl-arrow.png) no-repeat;*/
/*}*/
.owl-carousel .owl-nav>button i {
    display: none;
}

/* END COMMON SLIDER CODE */



/* START LIVE PAGE CODE */
section.live-sec {
    padding: 118px 0 0;
    position: relative;
}

.liver-video {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.liver-video .video-wrap {
    height: auto;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.live-sec .liver-video .video-wrap {
    height: auto;
    padding-top: 50%;
    min-height: unset;
}

.video-wrap>iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}


.all-tv-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.all-tv-list a {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.all-tv-list.owl-carousel a {
    position: relative;
    width: 100%;
    padding-top: 60%;
}

.all-tv-list a img {
    display: block;
    width: 100%;
}

.all-tv-list.owl-carousel a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.img_wrapper {
    width: 100%;
}

.box-item .img_wrapper {
    border-radius: 8px;
    overflow: hidden;
}

.img_wrap {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
}

.img_wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img_wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.live-section .left-side {
    max-width: 73%;
    width: 100%;
}

.live-section .left-side .img_wrap {
    background: url("../images/logo.png") no-repeat;
    background-size: 50%;
    background-position: center;
}

.live-section {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    flex-wrap: wrap;
}

.live-section .right-side {
    max-width: calc(100% - 75%);
    text-align: left;
    width: 100%;
    max-height: 37vw;
    overflow: hidden;
    overflow-y: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
}

.live-section .right-side::-webkit-scrollbar {
    width: 0;
}

.live-section .right-side hr {
    margin: 30px 0;
    height: 1px;
    border: none;
    background-color: #6f6969;
}

.live-section .right-side .box-item div.label {
    background: var(--redhover);
    border-color: var(--redhover);
    color: #FFFFFF;
    padding: 8px 10px;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    min-width: 80px;
    text-align: center;
}

.live-section .right-side .box-item div.label.live {
    background-color: #d53027;
    line-height: 1.5;
}

.live-section .right-side .box-item h4 {
    font-size: 1.5rem;
    margin-top: 15px;
    color: var(--white);
}

.live-section .right-side .box-item .time {
    margin-top: 10px;
    color: var(--white);
}

.live-section .left-side>iframe {
    height: 697.5px;
}



.box-item {
    background-color: #36343C;
    border-radius: 8px;
    box-shadow: 0 2px 2px #151418;
}

.box-item .details {
    padding: 16px;
    z-index: 1;
    position: relative;
}

.box-item .img_wrapper {
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    margin-bottom: -70px;
    position: relative;
}

.box-item .img_wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(#fff0, #34323c);
    z-index: 1;
}

/* END LIVE PAGE CODE */


/* START VERTICAL SLIDER CODE */
.vertical_slider .owl-item:hover {
    z-index: 1;
}

.vertical_slider_sec .slider_wrap {
    padding-bottom: 5%;
}

/* END VERTICAL SLIDER CODE */



/* START RADIO PAGE CODE */
section.radio_player_sec {
    padding: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #2221278a;
    background-blend-mode: multiply;
    height: 100%;
    min-height: 100vh;
}

.radio_player_sec .container {
    padding-top: 210px;
    padding-bottom: 100px;
    max-width: 1500px;
}

.radio_player_sec .radio_player_wrap {
    display: flex;
    flex-wrap: wrap;
    border-radius: var(--show-card-border-radius);
    overflow: hidden;
    background-color: #36343C;
}

.radio_player_img_wrap {
    width: 35.9%;
}

.radio_player_img_wrap figure {
    margin: 0;
    width: 100%;
    line-height: 0;
    position: relative;
    padding-top: 100%;
    height: 100%;
}

.radio_player_img_wrap img {
    object-fit: scale-down;
    object-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.radio_player_sec .radio_player_info_wrap {
    width: 64%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    flex-direction: column;
}

.radio_player_info {
    padding: 68px 50px;
    width: 100%;
}

.radio_player_head h2 {
    color: var(--white);
    font-size: 40px;
    margin-bottom: 10px;
}

.radio_player_contant p {
    font-size: 20px;
    color: #dadada;
    font-weight: 400;
    /* display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical; */
}

.radio_player_info>*+* {
    margin-top: 10px;
}

.radio_player_control {
    width: 100%;
    margin-top: auto;
}

.radio_player_sec .not-allowed-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .8);
    color: var(--redhover);
    font-weight: 800;
    font-size: 22px;
    text-align: center;
}

.radio_player_control iframe {
    display: block;
    width: 100%;
}

iframe {
    display: block;
    width: 100%;
    border: none;
}

.radio_channels {
    margin-top: 15px;
}

.radio_channels ul::-webkit-scrollbar {
    height: 8px;
}

.radio_channels ul {
    display: flex;
    flex-wrap: nowrap;
    width: auto;
    overflow-x: auto;
}

.radio_channels ul li {
    border-radius: 4px;
    min-width: 200px;
    margin-bottom: 12px;
    overflow: hidden;
    padding-top: 114px;
    position: relative;
}

.radio_channels ul li+* {
    margin-left: 8px;
}

.radio_channels ul li a {
    background-color: #36343C;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.radio_channels ul li a img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.radio_channels ul li a:hover .hover_img,
.radio_channels ul li.active a .hover_img {
    visibility: visible;
    opacity: 1;
}

.radio_channels ul li a .hover_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: all 0.3s ease;
    object-position: center;
    visibility: hidden;
}

/* END RADIO PAGE CODE */


/* START TERM AND PP PAGE CODE */
.first-section {
    padding-top: 200px !important;
}

.toc-title {
    margin-bottom: 20px;
    /*max-width: 853px;*/
}

.toc-title h1 {
    color: var(--white);
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.toc-title p {
    color: var(--white);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 177.778%;
    margin-bottom: 20px;
    text-align: justify;
}

.toc-title p:last-child {
    margin-bottom: 0;
}

.privacy-statement h2 {
    margin-bottom: 30px;
    font-weight: 400;
}

.article {
    max-width: 1500px;
    width: 100%;
    margin-bottom: 60px;
}

.article h4,
.privacy-statement h2 {
    font-size: 30px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 186.667%;
}

.article h3 {
    font-size: 20px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 186.667%;
}

.privacy-statement h2 {
    line-height: 130%;
}

.article p {
    color: #757575;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 177.778%;
    margin-bottom: 20px;
    text-align: justify;
}

.article p:last-child {
    margin-bottom: 0;
}

.article ol {
    margin-top: 25px;
}

.article ol li+* {
    margin-top: 10px;
}

.article ol li {
    color: var(--white);
}

.article p a,
.article li a {
    color: var(--redhover);
}

.article p a:hover {
    color: var(--white);
}

/* END TERM AND PP PAGE CODE */

.show_info p {
    font-size: 18px;
    font-weight: bold;
    color: var(--white);
}

.radio_channels li:hover {
    border: 3px solid var(--redhover);
}

.radio_channels li.active {
    border: 3px solid var(--redhover);
}

.desc_box {
    margin-bottom: 5px;
}

.read_more,
.read_less {
    color: var(--redhover);
    display: none;
}

.title_filter_wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
    position: relative;
}

.title_filter_wrap:before {
    position: absolute;
    content: "";
    height: 1px;
    width: 100vw;
    background: rgba(255, 255, 255, 0.30);
    bottom: -1px;
}

.title_filter_wrap .title {
    margin: 0;
    padding-right: 30px;
}

.title_filter_wrap .title h1 {
    color: #fff;
}

.filter_list {
    position: relative;
    z-index: 3;
}

.filter_wrap {
    width: 100%;
    max-width: 275px;
    position: relative;
}

.filter_link {
    position: relative;
    display: inline-block;
    min-width: 275px;
    padding: 12px 15px 12px 40px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    text-align: right;
    color: var(--primary);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.filter_link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15px;
    margin-top: -3px;
    background-image: url(../images/down_arrow.svg);
    background-repeat: no-repeat;
    height: 10px;
    width: 20px;
    transition: 0.3s all;
    background-position: center;
}

/*.filter_link span {
    display: block;
    width: 100%;
    padding: 5px 20px;
    text-align: center;
    border-radius: 5px;
    background-color: #69686b;
    border: 1px solid transparent;
    transition: all 0.32s ease;
    -webkit-transition: all 0.32s ease;
    -moz-transition: all 0.32s ease;
    -ms-transition: all 0.32s ease;
    -o-transition: all 0.32s ease;
}*/
.filter_list .dropdown_list {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 10px;
    border-radius: 5px;
    box-shadow: inherit;
    background: inherit;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -ms-transition: .5s ease;
    transition: .5s ease;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 0;
    visibility: hidden;
    z-index: 8;
    /* padding: 0; */
    overflow: auto;
    background-color: rgb(57, 57, 57);
}

.filter_wrap.active .dropdown_list {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

/*.dropdown_list ul {
    width: 100%;
    padding: 15px;
    overflow-y: auto;
}*/
.dropdown_list ul li {
    font-size: 12px;
    padding: 0;
    overflow: hidden;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -ms-transition: .5s ease;
    transition: .5s ease;
}

/*.dropdown_list ul li:last-child{padding: 0;margin: 0;border: none;}*/
.dropdown_list ul a {
    font-size: inherit;
    color: inherit;
    transition: unset;
    padding: 10px 15px;
    display: block;
}

.dropdown_list ul li:hover,
.dropdown_list ul li.active {
    background: var(--yellow);
    color: var(--bg-color);
}

/*.dropdown_list ul a:hover,
.dropdown_list ul .active a {
    color: var(--redhover);
}*/
.data-list,
.most-watch>ul {
    display: flex;
    flex-wrap: wrap;
}

.show-listing-wrapper>ul {
    margin: 0 -10px;
}

.most-watch>ul>li {
    width: 16.66%;
    padding: 0 10px;
    margin-bottom: 20px;
}

.most-watch.vertical-x2>ul>li {
    width: 20%;
}

.item,
.show-page-banner .item {
    position: relative;
    transition: all .5s ease;
}

.movies-slide {
    line-height: 0;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.movies-slide-img {
    position: relative;
    overflow: hidden;
    padding-top: 133.28%;
    display: block;
    border-radius: 4px;
}

.movies-slide-img img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-position: top;
    object-fit: cover;
}

#data-container .item .movies-slide {
    transition: all 0.3s ease;
}

#data-container .item:hover .movies-slide {
    scale: 1.2;
    z-index: 2;
}

#data-container .item .show-details {
    position: absolute;
    bottom: -50%;
    padding: 0;
    width: 100%;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s all;
    padding-right: 20px;
}

#data-container .item .show-details .other {
    margin-top: 15px;
}

#data-container .item .show-details .other span {
    color: white;
    padding: 3px;
    border: solid 1px rgba(255, 255, 255, .5);
    font-size: 12px;
    line-height: 100%;
    font-weight: 800;
}

#data-container .item:hover .show-details {
    bottom: 50px;
    opacity: 1;
    visibility: visible;
}

.show-details h6 {
    font-size: 18px;
    display: block;
    margin-bottom: 6px;
    color: var(--primary-color);
}

.item .show-details .category span {
    font-size: 14px;
    /* color: var(--bcolor); */
    font-weight: 400;
    position: relative;
    padding-right: 7px;
    color: white;
    line-height: 140%;
}

.item .show-details .category span:last-child {
    padding-right: 0;
}

.item .show-details .category span:before {
    position: absolute;
    content: "";
    /*background: var(--bcolor);*/
    background: #fff;
    right: 0;
    left: auto;
    height: 12px;
    width: 2px;
    top: 54%;
    transform: translateY(-50%);
}

.item .show-details .category span:last-child:before {
    display: none;
}

#data-container .item .movies-slide::before {
    position: absolute;
    content: "";
    background-image: linear-gradient(transparent 0, black);
    height: 20%;
    width: 100%;
    bottom: -1px;
    z-index: 2;
    opacity: 0.5;
    pointer-events: none;
    transition: all 0.3s ease;
}

#data-container .item:hover .movies-slide::before {
    height: 100%;
    opacity: 1;
}

.item_inner {
    position: relative;
    overflow: hidden;
}

/* START Episods SEC CODE */

.more_list_episods .title_filter_wrap {
    justify-content: space-between;
}

.more_list_episods .filter_link {
    background: transparent;
}

.more_list_episods .filter_link span {
    padding: 0;
    background: transparent;
    border-radius: unset;
    text-align: left;
}

.more_list_episods .filter_list .dropdown_list {
    border-radius: 8px;
    margin-top: 12px;
}

.more_list_episods .dropdown_list ul li {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-color: #b2b2b0;
}

.more_list_episods .dropdown_list ul li:last-child {
    padding: 0;
    margin: 0;
}

.more_list_episods .dropdown_list ul a {
    font-size: 16px;
    font-weight: 400;
    display: block;
    width: 100%;
    color: #b2b2b0;
    text-align: center;
}

.more_list_episods .dropdown_list ul a:hover {
    color: var(--redhover);
}

.more_list_episods .title h2 {
    text-transform: uppercase;
}

.episode_item_wrap li {
    margin-bottom: 15px;
    background-color: transparent;
    padding: 25px 20px;
    border-radius: var(--show-card-border-radius);
    transition: 0.3s all;
}

.more_list_episods li:last-child {
    margin-bottom: 0;
}

.episode_item_wrap li:hover {
    background-color: #27282c;
}

.more_list_episods .ep_item {
    display: flex;
    width: 100%;
}

.more_list_episods li .show_video {
    width: 100%;
    height: 100%;
    max-width: 23.25%;
    border-radius: 10px;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.ratio_img_wrap {
    position: relative;
    padding-top: 56.25%;
    width: 100%;
}

.ratio_img_wrap iframe,
.ratio_img_wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.episode_info {
    width: 100%;
    margin: 0 25px;
}

.episode_duration p {
    position: relative;
    padding-right: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}

.episode_info h5 {
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.episode_info p {
    font-size: 18px;
    color: #dadada;
    font-weight: 400;
}

.ep_item .episode_no {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    padding-right: 15px;
    display: flex;
    align-items: center;
    display: none;
}

.load-more-btn {
    text-align: center;
    margin: 15px auto 0;
}

.load-more-btn .readmore-list {
    background: var(--redhover);
    border-color: var(--redhover);
    color: #FFFFFF;
    padding: 10px 30px;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    border-radius: 30px;
}

.load-more-btn .readmore-list:hover {
    background-color: #d53027;
    border-color: #d53027;
}

/* END Episods SEC CODE */


/* START Related Item CODE */

.comm_item_card ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -7px;
}

.comm_item_card ul li {
    width: 100%;
    max-width: 33.33%;
    padding: 0 7px;
    margin-bottom: 14px;
}

.comm_item_card .item {
    position: relative;
    border-radius: 10px;
}

.related_item_list .img_wrap {
    display: block;
    border-radius: 0;
    overflow: hidden;
    z-index: 1;
}

.related_item_list .item {
    background-color: #27282c;
    overflow: hidden;
}

.related_item_list .item .show-details {
    padding: 20px;
}

.related_item_list .item .show-details h6 {
    font-size: 20px;
}

.related_item_list .item .show-details .category span {
    font-size: 16px;
}

.video_wrap .play {
    background: #fecf45;
    border-color: #fecf45;
    color: #FFFFFF;
    padding: 10px 25px;
    font-weight: 800;
    font-size: 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: auto; */
    vertical-align: middle;
    width: max-content;
    margin-bottom: 12px;
    flex-direction: row-reverse;
}

.video_wrap .play img {
    margin-left: 10px;
}

.video_wrap .play:hover {
    background-color: #d53027;
    border-color: #d53027;
}

/* END Related Item CODE */

/* START BANNER CODE */

.banner {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.show-page-banner .banner-slide {
    position: relative;
    line-height: 0;
}

.show-page-banner .banner-slide,
.show-page-banner .banner-slide.show-trailer {
    padding-top: 56.25%;
    transition: all .5s ease;
}

.show-page-banner .banner-slide>img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.banner-info-block {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    z-index: 9;
    flex-direction: column;
    max-width: 1740px;
    margin: 0 auto;
    justify-content: center;
    padding: 0 15px;
}

.banner-info-block .banner-logo {
    margin-bottom: 20px;
}

.banner-info-block .banner-logo img {
    max-width: 200px;
    min-height: 75px;
}

.banner-info-block .banner-logo h1 {
    color: #fff;
    font-size: 26px;
}

.v-detail {
    max-width: 1130px;
}

.banner-content .category_wrap {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.banner-content .category_wrap .year {
    padding: 0 20px;
    display: inline-flex;
}

.banner-content .category_wrap .year p {
    font-size: 18px;
    color: #fff;
    margin: 0;
    padding-right: 20px;
}

.banner-content .category_wrap .year p:last-child {
    padding-right: 0px;
}

.banner-content .category_wrap img {
    margin: 0;
    max-width: 30px;
}

.banner-content .category span {
    font-size: 18px;
    font-weight: 400;
    position: relative;
    padding-right: 7px;
    color: white;
}

.banner-content .category span:before {
    position: absolute;
    content: "";
    background: #fff;
    right: 0;
    left: auto;
    height: 12px;
    width: 2px;
    top: 54%;
    transform: translateY(-50%);
}

.banner-content .category span:last-child {
    padding-right: 0;
}

.banner-content .category span:last-child:before {
    display: none;
}

.banner-content p {
    font-size: 18px;
    color: #b2b2b0;
}

.director_wrap {
    margin: 10px 0 20px;
}

.director_wrap p {
    font-size: 18px;
    color: #fff;
}

.banner .banner-slide::before,
.banner .banner-slide::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 25%;
    pointer-events: none;
    background-image: linear-gradient(var(--bcolor), transparent);
    z-index: 2;
    top: 0;
}

.banner .banner-slide::after {
    top: auto;
    bottom: 0px;
    background-image: linear-gradient(transparent 60%, var(--bcolor)100%);
    height: 100%;
}

/* START BANNER CODE */



/* START FULL VIDEO PAGE CODE */
section.full-video {
    padding: 0;
    background: var(--bcolor);
    overflow: hidden;
}

.hide-header .transparent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.full-height {
    min-height: 100vh;
    position: relative;
}

.video-info {
    position: absolute;
    top: 0;
    z-index: 1;
    left: 0;
    right: 0;
    padding: 30px 35px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    opacity: 0.9;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: flex-start;
    z-index: 3;
    transition: all 0.5s ease;
    pointer-events: none;
}

/*.hide-header .video-info {
    top: -300px;
    transition: all 0.5s ease;
}*/
.video-info .video-duration {
    position: relative;
    max-width: calc(100% - 200px);
    width: 100%;
    display: flex;
    align-items: flex-start;
}

.video-info .video-duration>* {
    font-weight: bold;
    font-size: 24px;
    text-align: right;
    color: #fff;
    margin-right: 30px;
    pointer-events: auto;
}

.video-info .video-duration {
    position: relative;
    max-width: calc(100% - 200px);
    width: 100%;
    display: flex;
    align-items: flex-start;
}

.video-info .video-duration .channel-logo {
    max-width: 155px;
    max-height: 112px;
}

.video-info .video-duration>.episode {
    border-left: 0px solid var(--redhover);
    padding-left: 0;
    padding-right: 30px;
    position: relative;
}

.video-info .video-duration>.episode::before {
    content: "";
    background-color: var(--redhover);
    width: 2px;
    top: calc(50% - 6px);
    display: block;
    position: absolute;
    right: 3px;
    height: 13px;
}

.video-info .video-duration> :last-child {
    margin-left: 0;
}

.call-back {
    width: 160px;
    pointer-events: auto;
}

.call-back .back {
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    text-align: right;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.call-back .back:hover {
    color: var(--redhover);
}

.call-back .back::after {
    content: "";
    background: url("../images/right-arrow.svg");
    display: inline-block;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
    margin-left: 20px;
    width: 57px;
    height: 57px;
    vertical-align: top;
    border: 2px solid var(--redhover);
    border-radius: 50px;
    background-position: center;
    margin-top: 0;
    background-size: 29%;
    transition: all 0.3s ease;
}

.call-back .back:hover::after {
    filter: brightness(1) invert(0);
}




.full-event-page .video,
.full-video .video {
    position: relative;
    overflow: hidden;
    transform: scale(1);
    width: 100%;
    height: 100vh;
    margin: 0 auto;
}

.full-event-page .video iframe,
.full-video .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}



.video-widget {
    position: absolute;
    left: 40px;
    z-index: 2;
    right: auto;
    transition: all 0.5s ease;
    top: calc(50% - 100px);
}

.video-widget>ul {
    display: flex;
    flex-direction: column;
}

.showoverlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(#000 0%, rgba(0, 0, 0, 0.69) 100%);
    z-index: -1;
    transition: all 0.5s ease;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    /* transition: all 0.5s ease; */
}

.widget_item.active .showoverlay,
.show-more-ep .showoverlay {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transition: all 0.5s ease;
}

.decline-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
}

.decline-heading {
    display: flex;
    align-items: center;
}

.decline-heading h2 {
    margin-bottom: 0;
    font-weight: 800;
    font-size: 32px;
    position: relative;
    color: #fff;
    padding-right: 25px;
    margin-right: 25px;
}

.decline-heading h2::before {
    content: "";
    position: absolute;
    bottom: 10px;
    top: 10px;
    width: 2px;
    right: 0;
    background: var(--redhover);
}

.cust-dropdown>span.drop-click,
.cust-select {
    font-weight: bold;
    font-size: 24px;
    color: #DADADA;
    border: 0;
    background-color: transparent;
    display: inline-block;
    vertical-align: top;
}

.cust-select {
    font-size: 18px;
    color: var(--white);
    background-color: var(--bcolor);
    border: 1px solid var(--light_gray);
    box-sizing: border-box;
    border-radius: 8px;
    padding: 0 32px 0 16px;
    background-image: url(../images/white-arrow-down.png);
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: calc(100% - 15px) center;
    -webkit-appearance: none;
    line-height: 40px;
    min-width: 140px;
    cursor: pointer;
}

.cust-small-scroll {
    overflow-y: auto;
    overflow-x: hidden;
}

.more-episode-new .decline-shows .decline-grid-view,
.more-episode-new .decline-shows .decline-list-view {
    max-height: 50vh;
    overflow-x: hidden;
    overflow-y: auto;
    margin-right: -20px;
    padding-right: 15px;
    transform: none;
    position: relative;
}


.widget_link img {
    pointer-events: none;
}

.video-widget>ul>li {
    margin-bottom: 15px;
}

a.more-episode-click::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: #565365;
    border-radius: 2px;
    z-index: 1;
    left: 00px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.5s ease 0s;
    opacity: 0;
    visibility: hidden;
}

.video-widget>ul>li>a,
.video-widget>ul>li>span {
    width: 63px;
    height: 61px;
    border-radius: 10px;
    background: var(--bcolor);
    border: 1px solid var(--redhover);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    padding: 10px;
}

.video-widget>ul>li>a::before,
.video-widget>ul>li>span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 70%;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid var(--redhover);
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.video-widget>ul>li>span.share:hover::before,
.video-widget>ul>li.active>a::before,
.video-widget>ul>li.active>span::before {
    left: 100%;
    opacity: 1;
    visibility: visible;
}


.video-widget .widget_item.active .widget_link,
.video-widget>ul>li>span.share:hover,
.video-widget>ul>li>a.active,
.video-widget>ul>li>a:hover {
    background: var(--redhover);
    border-color: var(--redhover);
}

.video-widget>ul>li>a:hover {
    color: #fff;
}

.video-widget .social-share {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-50px) scale(0);
    left: calc(100% + 15px);
    padding: 8px;
    border-radius: 8px;
    border: 1px solid var(--redhover);
    transform-origin: center;
    opacity: 0;
    visibility: hidden;
    background-color: var(--bcolor);
}

.video-widget .share:hover .social-share {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0px) scale(1);
}

.video-widget .social-share::after {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.video-widget .social-share li {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px 0;
}

.video-widget .social-share li a {
    color: var(--white);
    font-size: 24px;
}

.video-widget .social-share li a:hover {
    color: var(--redhover);
}


.video-widget .hover-detail {
    position: absolute;
    bottom: 0;
    left: calc(100% + 40px);
    width: 610px;
    height: auto;
    background-color: var(--bcolor);
    padding: 30px;
    border-radius: 8px;
    /* overflow: hidden; */
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    transition: all 0.5s ease;
    transform: translateX(-50px) scale(0);
    transform-origin: left bottom;
    visibility: hidden;
    border: 1px solid var(--light_gray);
}

.video-widget .widget_item.active .hover-detail {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
    transition: all 0.5s ease;
    transform: translateX(0px) scale(1);
}

.hover-detail .ser-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hover-detail .ser-title h2 {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 24px;
    color: #FFFFFF;
}

.video-widget .s-video-detail {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.genres-block {
    display: block;
    margin: 15px 0;
}

.genres-block>ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.date-and-time span:not(:last-child),
.genres-block>ul>li:not(:last-child) {
    margin-right: 12px;
    padding-right: 12px;
}

.date-and-time span:not(:last-child)::after,
.genres-block>ul>li:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 2px;
    height: 60%;
    background-color: var(--redhover);
}

.genres-block>ul>li {
    font-size: 16px;
    font-weight: 400;
    color: #b0b0b0;
    display: flex;
    align-items: center;
    position: relative;
}

.video-widget .hover-detail {
    pointer-events: none;
}

.video-widget .hover-detail p {
    color: var(--light_gray);
    font-size: 16px;
}

.s-video-detail .ad-cc-block {
    margin-bottom: 0;
}

.date-and-time span {
    color: var(--white);
    display: block;
    position: relative;
}

.date-and-time span:not(:last-child)::after {
    background-color: #fff;
}

.hover-detail p.details {
    margin-bottom: 15px;
}


.episode-decline-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
    width: auto;
}

.episode-decline-list>li {
    width: calc(25% - 16px);
    margin-right: 8px;
    margin-left: 8px;
    margin-bottom: 25px;
}

.episode-decline-list-box {
    position: relative;
    line-height: 0;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid var(--gray);
    transition: all 0.5s ease 0s;
}

.episode-decline-list-box:hover {
    border-color: var(--white);
}

.episode-decline-list-box.active {
    border-color: var(--redhover);
}

.episode-decline-list-box::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(34, 33, 39, 0.43) 40.52%, rgba(0, 0, 0, 0) 100%);
    transform: rotate(180deg);
    z-index: 1;
    height: 50%;
}

.episode-decline-list>li.active .episode-decline-list-box {
    border-color: #FFFFFF;
}

.decline-show-img a {
    display: block;
}

.vertical_thumbnails .img-wrap {
    width: 100%;
    position: relative;
    line-height: 0;
    padding-top: 56.35%;
    overflow: hidden;
    display: inline-block;
    transition: all 0.5s ease;
    box-shadow: 0 5px 7px -4px rgba(0, 0, 0, 0.25);
}

.vertical_thumbnails .img-wrap:before {
    position: absolute;
    content: "";
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%); */
    height: 100%;
    width: 100%;
    top: 0;
    z-index: 1;
}

.vertical_thumbnails .img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.sp-no-info {
    position: absolute;
    bottom: 7px;
    right: 7px;
    left: 7px;
    z-index: 1;
}

.sp-no-info-iocn {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.sp-no-info-iocn .sp-no {
    display: flex;
    align-items: center;
}

a.pink-play {
    display: block;
    background: var(--redhover);
    border-radius: 4px;
    width: 28px;
    height: 28px;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.pink-play img {
    width: auto;
}

.sp-no h2,
.sp-no>span {
    color: #fff;
    font-size: 14px;
    line-height: 110%;
    padding-right: 10px;
    margin-right: 10px;
    font-weight: bold;
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.sp-no h2 a {
    color: var(--white);
    font-weight: bold;
    font-size: 14px;
}

.sp-no h2 a:hover {
    color: var(--redhover);
}

.sp-no>h2::after,
.sp-no>span::after {
    content: "";
    background-color: var(--redhover);
    width: 2px;
    bottom: 25%;
    top: 25%;
    display: block;
    position: absolute;
    right: 0;
}

.sp-no>h2:last-child::after,
.sp-no>span:last-child::after {
    display: none;
}

.sp-no-info-iocn .sp-no h2.ep,
.sp-no-info-iocn .sp-no span.ep {
    font-size: 14px;
    color: #C3C3C3;
}

.sp-no h2:last-child,
.sp-no>span:last-child {
    border: none;
    padding-right: 0;
    margin-right: 0;
}

.decline-heading .title_filter_wrap {
    margin-bottom: 0;
}

/* END FULL VIDEO PAGE CODE */


.disabled-link {
    pointer-events: none;
}

.video>p.not-allowed-text {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    font-size: 20px;
    padding: 0 15px;
    color: #ffff;
}

.episode-decline-list a.pink-play {
    display: none;
}

.homepage_banner.mobile_home_page_banner {
    display: none;
}

section.geo-block-section {
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
}

.geo-block {
    padding-bottom: 0;
    padding-top: 0;
    position: relative;
    min-height: 75vh;
}

.geo-block .no-content {
    position: absolute;
    top: 65%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    padding: 0 15px;
}

.geo-block .no-content p {
    color: white;
    text-align: center;
    font-size: 20px;
}

.more-episode-wrap .btn_wrap {
    margin-bottom: 2px;
}


.featured-slider-sec {
    position: relative;
    z-index: 2;
}

.tab-main-box section.featured-slider-sec:last-child {
    padding-bottom: 0;
}

.sec_title {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    justify-content: space-between;
}

.sec_title .heading {
    display: flex;
    align-items: center;
    gap: 45px;
}

.custom-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 35px;
}

.custom-nav-wrapper a img {
    display: block;
    width: 12px;
}

.custom-nav-wrapper a.disabled {
    opacity: .5;
    cursor: unset;
}

.sec_title h2 {
    color: var(--white);
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;

}

a.more_btn.btn {
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    text-align: center;
    padding: 13px 41px;
}

.featured_slider_wrap {
    padding-left: 10px;
    margin-left: -10px;
}

.featured-carousel.owl-carousel {
    padding-top: 6px;
}

.latest-series .featured_slider_wrap {
    padding-left: 22%;
    margin-left: 0;
}

.featured-carousel .owl-stage-outer,
.latest-series-carousel .owl-stage-outer {
    overflow: visible;
}

.featured-carousel>.item {
    max-width: 283px;
    width: 100%;
    margin-right: 20px;
}

.featur-slide {
    position: relative;
}

.featur-slide .item.info.vertical_thumbnails {
    position: absolute;
    top: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: visible;
}

.featur-slide:hover .item.info.vertical_thumbnails {
    opacity: 1;
    visibility: visible;
}

.featur-slide>a {
    display: block;
    position: relative;
}

.f_show_img {
    position: relative;
    padding-bottom: 56.35%;
    border-radius: 5px;
    overflow: hidden;
    transition: 0.3s all;
    background-color: var(--white-10);

}

.f_show_img:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    border: 1px solid #DDA130;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.featur-slide:hover .f_show_img:after {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.featur-slide .badge_labels {
    position: absolute;
    z-index: 2;
    width: 100%;
    max-width: 120px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.featur-slide:hover .badge_labels {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.featur-slide .badge_labels+.badge_labels {
    bottom: 45px;
}

.latest-series .featur-slide .show-details {
    transform: unset;
    opacity: 0;
    visibility: hidden;
    bottom: 0;
}
.latest-series .featur-slide .movie_category.x2{
    bottom: 28px;
}
.latest-series .featur-slide:hover .show-details {
    opacity: 1;
    visibility: visible;
}
/* .latest-series .featur-slide:hover .show-details h3{
    display: none;
} */

.featur-slide .show-details,
.advanced_movie_slider .show-item .items .show-details {
    position: absolute;
    right: 12px;
    left: auto;
    bottom: 8px;
    transform: translateY(52px);
    transition: 0.5s all ease;
    z-index: 8;
}
.f_show_listing_wrapper .featur-slide .show-details{
    transform: translateY(20px);
}

.show-details>*:not(.movie_category) {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.featur-slide .show-details{
    transform: unset;
}
.featur-slide .show-details *{
    opacity: 1;
}
.featur-slide .f_show_img:before{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%);
    opacity: 1;
    visibility: visible;
}
.advanced_movie_slider .show-item .items:hover .show-details>*:not(.movie_category),
.featur-slide:hover .show-details>*:not(.movie_category) {
    opacity: 1;
}

.advanced_movie_slider .show-item .items:hover .show-details,
.featur-slide:hover .show-details {
    transform: unset;
}

.search-item .movie_category,
.advanced_movie_slider .show-item .items .movie_category {
    position: absolute;
    top: 10px;
    right: 10px;
    left: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 9;
}
.search-item .movie_category{
    top: auto;
    bottom: 10px;
}
.search-item.has-title .movie_category {
    top: auto;
    bottom: 36px;
}
.search-item .movie_category .badge,
.advanced_movie_slider .show-item .items .movie_category .badge,
.featur-slide .movie_category .badge{
    background-color: #FEC20D;
    font-family: var(--primary-font);
    color: var(--black);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    display: inline-block;
    vertical-align: top;
    padding: 8px 11px;
    border-radius: var(--button-border-raduis);
    z-index: 2;
}

.show-details .badge {
    background-color: #FEC20D;
    font-family: var(--primary-font);
    color: var(--black);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    display: inline-block;
    vertical-align: top;
    padding: 5px 11px;
    border-radius: var(--button-border-raduis);
    margin: 0 0 10px;
    margin-left: 8px;
}

.show-details h3 {
    color: var(--white);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    margin: 0 0 15px;
}
.show-details h3:last-child{
    margin-bottom: 0;
}
.show-details .episode-no {
    color: var(--white);
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0%;
    display: block;
}

.kids_sec .f_show_img {
    background-color: transparent;
    overflow: visible;
    padding-bottom: 59%;
}

.kids_sec .featur-slide:hover .f_show_img:before {
    opacity: 0;
    visibility: hidden;
}

.kids_sec .vertical_thumbnails .img-wrap:before {
    opacity: 0;
    visibility: hidden;
}

.f_show_img:before {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, rgba(22, 22, 22, 0) 0%, #161616 100%);
    height: 100%;
    width: 100%;
    bottom: -2px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all;
}

.featur-slide:hover .f_show_img {
    transform: scale(1.12);
    z-index: 2;
}

.featur-slide:hover .f_show_img:before {
    opacity: 1;
    visibility: visible;
}

.f_show_img>img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*.featur-slide:hover .f_show_img img{
    transform: scale(1.1);
}*/

.play-progress {
    height: 2px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.5);
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: -9px;
}

.play-progress .progress {
    position: absolute;
    top: 0;
    border-radius: 4px;
    background: #B2B2B2;
}

.play-progress .progress {
    position: absolute;
    top: 0;
    border-radius: 4px;
    background: #DDA130;
    height: 2px;
    right: 0;
    left: auto;
}

.tv_show_img .play-progress {
    width: 100%;
    position: absolute;
    bottom: 0;
}

.continue_watching .play-progress {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
}

.continue_watching .f_show_img:after {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.85) 100%);
    height: 84px;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
}

.featur-slide .details {
    position: absolute;
    bottom: 10px;
    left: 10px;
    transform: translateY(40px);
    transition: 0.3s all;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.featur-slide:hover .details {
    transform: unset;
    opacity: 1;
    visibility: visible;
}

.featur-slide .details h3 {
    color: var(--white);
    font-size: 22px;
    font-style: normal;
    font-weight: 1000;
    line-height: normal;
}

.featur-slide .details span {
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.action-div.action-button {
    position: absolute;
    right: 0;
    left: auto;
    bottom: 15px;
    transition: 0.3s all;
    display: flex;
    align-items: center;
}

.featur-slide .action-div.action-button {
    opacity: 0;
    visibility: hidden;
}

.featur-slide:hover .action-div.action-button {
    opacity: 1;
    visibility: visible;
}

.action-button .common_icon_box {
    margin-right: 10px;
    position: relative;
    margin-left: 0;
    background-color: #16161680;
    width: 62px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--button-border-raduis);
    cursor: pointer;
}

.action-button .common_icon_box:first-child {
    margin: 0;
}

.action-button .common_icon_box.active,
.action-button .common_icon_box:hover {
    background-color: var(--secondary-color)
}

/* .action-button .common_icon_box:hover .widget_link>img,
.action-button .common_icon_box:hover span>img,
.action-button .common_icon_box:hover>img {
    filter: brightness(0) invert(0);
} */

.wishlist_box .widget_link img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}

.wishlist_box:not(.active) .widget_link img:last-child {
    /*opacity: 0;*/
    /*visibility: hidden;*/
}

.common_icon_box>span {
    display: block;
    height: inherit;
    width: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-button .common_icon_box img {
    width: auto;
    height: auto;
    display: block;
}

.action-div.action-button {
    margin: 0;
    z-index: 2;
}


.action-div .common_icon_box:last-child {
    margin-bottom: 0;
}

.all-tv-list.owl-carousel a {
    padding-top: 0;
}

.live_img_box {
    position: relative;
    max-width: 150px;
    width: 100%;
    padding-bottom: 32.512%;
}

.common-slider-channel-sec {
    /* padding-left: calc((100% - 1340px)/2); */
    overflow: hidden;
    background-size: cover;
    padding-top: 8px;
}

/*.common-slider-inner .channel-list-carousel.owl-carousel{
    padding-right: 50px;
}*/

.channel-list-main {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.channel-list-main>li {
    position: relative;
    margin-bottom: 24px;
    padding: 0 10px;
    width: 25%;
}

.channel_card {
    display: block;
}

.channel-list-main .channel_card_inner {
    display: flex;
    align-items: center;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, .1);
    overflow: hidden;
}

/*.channel_img{
    position: relative;
}
.channel_img img{
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}*/
.channel_img {
    width: 100%;
    background: #fff;
    height: 100%;
    max-width: 150px;
}

.channel_img img {
    display: block;
    height: 82px;
    object-fit: cover;
    width: auto !important;
}

.channel_info {
    padding: 15px 20px;
    flex-direction: column;
    display: flex;
}

.channel_info h4 {
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.16px;
    margin-bottom: 7px;
}

.channel_info span {
    color: #757272;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}

.kids-wrapper {
    padding: 42px 32px 30px 32px;
    background-image: url(../images/kids_bg_img.png);
    min-height: 430px;
    border-radius: var(--show-card-border-radius);
    overflow: hidden;
    background-repeat: no-repeat;
    /* background-position: center bottom; */
    background-position: 100%;
    background-size: cover;
}

.kids-wrapper .kids-carousel {
    padding-top: 20px;
}

.kids-wrapper .kids-logo img {
    width: auto !important;
    max-width: 142px;
    margin: unset;
}

.kids-wrapper .kids-info {
    max-width: 445px;
}

.kids-info h2 {
    color: var(--white);
    font-size: 55px;
    font-style: normal;
    font-weight: 1000;
    line-height: normal;
    margin-bottom: 5px;
}

.kids-info h4 {
    color: var(--white);
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 7px;
}

.kids-info p {
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 127%;
}

.kids-wrapper .kids-info .play_btn {
    margin-top: 26px;
}

.kids-wrapper .owl-dots {
    position: absolute;
    top: -20px;
}

.premier-league-wrapper {
    padding: 25px;
    background-image: url(../images/premier_league_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #494891;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    overflow: hidden;
    min-height: 472px;
}

.pre_logo img {
    max-width: 238px;
    width: 100%;
}

.premier-league-carousel {
    padding-top: 40px;
    margin-top: 40px;
}

.premier-league-carousel>.pl_img {
    max-width: 422px;
    width: 100%;
    margin-right: 15px;
}

.premier-league-carousel .pl_img {
    border-radius: 5px;
    background-color: var(--white-10);
    overflow: hidden;
}

.premier-league-wrapper .owl-dots {
    position: absolute;
    top: -20px;
    bottom: auto;
}

.common-tv-show-sec {
    /* padding-left: calc((100% - 1340px)/2); */
    overflow: hidden;
}

.five-slider .owl-stage-outer {
    overflow: visible;
}

.img-wrappper {
    position: relative;
    display: block;
    padding-bottom: 142%;
}

.img-wrappper img {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
}



/*section.kids-sec{
    padding: 30px 0px;
}

section.premier-league-sec {
    padding: 60px 0px;
}*/


/*.common-tv-show-sec .sec_title h2 {
    font-weight: 800;
    font-family: 'Avenir LT Std';
}*/

.five-slider.owl-carousel .owl-stage {
    white-space: nowrap;
    flex-wrap: nowrap;
    display: flex;
}

.five-slider.owl-carousel .owl-item>* {
    white-space: normal;
}

.movies.slider .items:hover {
    background: transparent;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.show-listing-box li.show-item {
    /*    border-radius: var(--show-card-border-radius);*/
    overflow: hidden;
    /*    background-color: var(--white-10);*/
}

.show_listing .show-listing-box li.show-item {
    margin: 0 10px;
    margin-bottom: 20px;
}

.advanced_movie_slider.show-listing-box .movies .show-item .img-wrappper,
.show-item .img-wrappper {
    padding-top: unset;
    padding-bottom: unset;
    opacity: 1 !important;
    max-height: 20.764vw;
    min-height: 20.764vw;
    transition: all 0.5s cubic-bezier(.77, 0, .18, 1);
    display: flex;
    overflow: hidden;
    border-radius: var(--show-card-border-radius);
}

.show-item .img-wrappper {
    background-color: var(--white-10);
}

.img-wrappper img {
    position: relative;
    height: auto;
    object-position: top center;
    object-fit: cover;
}

.advanced_movie_slider .show-item .items .badge_labels {
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 120px;
}

.advanced_movie_slider .show-item .items {
    width: 13.819vw;
    transition: all 0.5s cubic-bezier(.77, 0, .18, 1);
    position: relative;
}

.advanced_movie_slider .show-item .items::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    background: linear-gradient(180deg, rgba(22, 22, 22, 0) 0%, #161616 100%);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

.advanced_movie_slider .show-item .items:hover::before {
    opacity: 1;
    visibility: visible;
    z-index: 8;
}

.show-listing-box>.five-slider>.show-item {
    width: 14.31vw;
    margin-left: 20px;
}

.show-listing-box li.show-item .action-div.action-button {
    right: auto;
    left: 15px;
    bottom: 15px;
}

.advanced_movie_slider .show-item .items:hover {
    /* width: 35.556vw; */
    width: 37vw;
    transition-delay: 0.6s;
}

.advanced_movie_slider.slider.movies li>.items .vertical_thumbnails {
    opacity: 0;
    z-index: -1;
    justify-content: flex-start;
    transition: all 0.5s cubic-bezier(.77, 0, .18, 1);
    border-radius: var(--show-card-border-radius);
    overflow: hidden;
}

.advanced_movie_slider.slider.movies li>.items:hover .vertical_thumbnails {
    opacity: 1;
    z-index: 9;
    transition-delay: 0.6s;
}

.movies.slider .items>* {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.movies .vertical_thumbnails {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    /* visibility: hidden; */
    z-index: -1;
}

.show-listing-box .movies .show-item .vertical_thumbnails .img-wrap {
    padding-top: 56.25%;
}

.vertical_thumbnails .details {
    position: absolute;
    padding: 15px;
    bottom: 0;
    z-index: 2;
}

.vertical_thumbnails .details h3 {
    color: var(--white);
    font-size: 22px;
    font-style: normal;
    font-weight: 1000;
    line-height: normal;
}

.vertical_thumbnails .details .ep_no {
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.slider .item.info .img-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mute-icon-handler {
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    height: 42px;
    width: 50px;
    background-color: var(--primary);
    border-radius: 5px;
    display: none;
    position: relative;

}

.mute-icon-handler img {
    position: absolute;
    width: auto !important;
    max-width: 32px;
    height: auto;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.mute-icon-handler.mute .volume-on {
    display: none;
}

.mute-icon-handler.mute.muted .volume-on {
    display: block;
}

.mute .volume-on {
    display: none;
}

.mute.muted .volume-on {
    display: block;
}

.mute.muted .mute-icon {
    display: none;
}

.back_btn_wrap {
    margin-bottom: 65px;
}

.back_btn {
    color: var(--white);
    font-size: 20px;
    display: flex;
    align-items: center;
}

.back_btn:before {
    content: "";
    height: 50px;
    width: 50px;
    background-image: url(../images/back_btn.svg);
    background-position: center;
    display: block;
    margin-left: 20px;
}

.listing.show-listing-sec {
    overflow: hidden;
}

.show-listing-sec .featured-carousel,
.f_show_listing_wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -7px;
    width: auto;
}

.show-listing-sec .featured-carousel .items,
.f_show_listing_wrapper .items {
    width: 20%;
    padding: 0 7px;
    margin-bottom: 25px;
}

.f_show_listing_wrapper.horizontal-x2 .items {
    width: 33.33%;
}

.items:hover {
    z-index: 2;
}

.categories_wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -9px;
}

.categorie_item {
    width: 16.66%;
    padding: 0 9px;
    position: relative;
}

.categorie_item>a {
    display: block;
}

.categorie_item .cat_img {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.categorie_item .cat_img img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.categorie_item .title {
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    right: auto;
}

.categorie_item .title h4 {
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.categorie_item .cat_icon {
    position: absolute;
    right: 7%;
    left: auto;
    bottom: 7%;
    height: 28px;
    width: 28px;
}

.categorie_item .cat_icon img {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s all;
}

.categorie_item .cat_icon img.on {
    opacity: 0;
    visibility: hidden;
    margin-top: -4px;
}

.categorie_item:hover .title h4,
.categorie_item.active .title h4 {
    color: #fff;
}

.categorie_item:hover .cat_icon img.on,
.categorie_item.active .cat_icon img.on {
    opacity: 1;
    visibility: visible;
}

.categorie_item:hover .cat_icon img.off,
.categorie_item.active .cat_icon img.off {
    opacity: 0;
    visibility: hidden;
}


.single-program-player .HeroSlider .HeroSlider-info {
    bottom: 50px;
}

.video_wrapper .video {
    position: relative;
    height: auto;
    padding-bottom: 56.25%;
}

.video_listing {
    margin-top: 60px;
}

.video_listing .wrapper-dropdown {
    margin-bottom: 45px;
}

.hero-section.show_sec {
    padding-bottom: 0;
}

.tv_show_sec .wrapper-dropdown {
    margin-bottom: 45px;
}

.tv_show_listing {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.tv_show_listing .tv_show_item {
    padding: 0 8px;
    width: 25%;
    position: relative;
    margin-bottom: 30px;
}

.tv_show_listing .tv_show_item>a {
    display: block;
    overflow: hidden;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, .1);
    height: 100%;
    border: 1px solid transparent;

}

.tv_show_listing .tv_show_item>a:hover {
    border-color: var(--primary);
    background-color: var(--primary);
}

.tv_show_listing .tv_show_item>a:hover *:not(.conti_watch) {
    color: var(--black);
}

.tv_show_img {
    position: relative;
    padding-bottom: 56.895%;
}

.tv_show_img img {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.tv_show_content {
    /*    background-color: rgba(255,255,255,.1);*/
    padding: 24px 22px 40px;
}

.catchup-sec .tv_show_content {
    padding: 21px 22px;
}

.tv_show_content .title_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tv_show_content .title_wrap h4 {
    font-size: 16px;
    font-weight: 400;
}

.tv_show_content .title_wrap .duration {
    font-size: 12px;
    font-weight: 400;
    color: #8E8E8E;
}

.tv_show_epi_wrap {
    display: flex;
    margin-bottom: 22px;
}

.tv_show_epi_wrap .play-progress {
    margin-top: 0;
}

.tv_show_epi_wrap .epi_no {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 6px;
    display: block;
    font-weight: 400;
    line-height: normal;
}

.tv_show_epi_wrap .conti_watch {
    font-size: 12px;
    color: #BF2325;
    display: block;
    line-height: normal;
}

.tv_show_content h3 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 12px;
}

.tv_show_content p {
    font-size: 12px;
    line-height: normal;
}

.common-radio-sec {
    overflow: hidden;
    padding-top: 15px;
}

.channel-radio-carousel.owl-carousel {
    padding-right: 60px;
    position: relative;
}

.channel-radio-carousel.owl-carousel:before {
    position: absolute;
    content: "";
    background-image: url(../images/radio-carousel-shadow.png);
    height: 100%;
    width: 175px;
    right: -3.5%;
    left: auto;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 11;
}

.channel-radio-carousel .owl-stage {
    display: flex;
}

.channel-radio-carousel .item {
    display: flex;
    height: 100%;
}

.channel-radio-carousel .owl-stage-outer {
    overflow: visible;
}

.channel-radio-carousel>.item {
    width: 15.59%;
}

.radio_slide {
    padding: 20px 15px;
    border: 2px solid transparent;
    transition: 0.3s all;
    background-color: #181818;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
}

.radio_slide>a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.radio_slide:hover {
    border-color: rgba(255, 255, 255, 0.50);
}

.radio_slide .action-div {
    display: flex;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
}

.radio_slide .action-div .common_icon_box {
    margin: 0 8px 0 0;
}

.radio_slide .action-div .common_icon_box:last-child {
    margin-right: 0;
}

.radio_slide:hover .action-div {
    transform: translateY(-50%) scale(1);
}

.radio_slide .img {
    position: relative;
    padding-bottom: 100%;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.vod_casts .radio_slide .img {
    border-radius: 50%;
}

.radio_slide .img img {
    position: absolute;
    content: "";
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.radio_content {
    margin-top: auto;
}

.radio_content h5 {
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 14px;
}

.radio_content p {
    font-size: 12px;
    color: #B3B3B3;
}

.more_wrap {
    text-align: center;
}

.more_wrap .show_more {
    color: var(--primary);
}

.more_wrap .show_more:after {
    content: "";
    background-image: url(../images/show_more_arrow.svg);
    background-position: center;
    height: 10px;
    width: 10px;
    display: block;
    background-repeat: no-repeat;
    margin: 5px auto 0;
    transition: 0.3s all;
}

.more_wrap .show_more.active:after {
    transform: rotate(-180deg);
}

.title_filter_wrap .filter_list {
    display: flex;
    flex-wrap: wrap;
}

.filter_list .wrapper-dropdown:not(:last-child) {
    margin-right: 12px;
}

.wrapper-dropdown {
    position: relative;
    display: inline-block;
    min-width: 164px;
    padding: 13px 15px 13px 40px;
    border-radius: 5px;
    background-color: #232323;
    color: var(--primary);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-shadow: 0px 4px 4px 0px #00000040;

}

.wrapper-dropdown::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15px;
    margin-top: -3px;
    background-image: url(../images/down_arrow.svg);
    background-repeat: no-repeat;
    height: 10px;
    width: 20px;
    transition: 0.3s all;
    background-position: center;
}

.wrapper-dropdown.active::before {
    transform: rotate(-180deg);
    margin-top: -6px;
}

.wrapper-dropdown .dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 10px;
    border-radius: 5px;
    box-shadow: inherit;
    background: inherit;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -ms-transition: .5s ease;
    transition: .5s ease;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 0;
    visibility: hidden;
    z-index: 8;
    /*     padding: 0;*/
    overflow: auto;
    background-color: rgb(57, 57, 57);
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
.wrapper-dropdown .dropdown {
    scrollbar-width: auto;
    scrollbar-color: var(--background-color);
}

/* Chrome, Edge, and Safari */
.wrapper-dropdown .dropdown::-webkit-scrollbar {
    width: 6px;
}

.wrapper-dropdown .dropdown::-webkit-scrollbar-track {
    background: #ffffff;
}

.wrapper-dropdown .dropdown::-webkit-scrollbar-thumb {
    background-color: var(--background-color);
    border-radius: var(--border-radius-8);
    border: 6px solid var(--background-color);
}


.wrapper-dropdown .dropdown li {
    font-size: 12px;
    padding: 10px 15px;
    overflow: hidden;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -ms-transition: .5s ease;
    transition: .5s ease;
}

.wrapper-dropdown .dropdown li a {
    font-size: inherit;
    color: inherit;
    transition: unset;
}

.wrapper-dropdown .dropdown li:last-child {
    border-bottom: none;
}

.wrapper-dropdown .dropdown li:hover {
    background-color: var(--secondary-color);
    color: var(--white)
}

.wrapper-dropdown.active .dropdown {
    opacity: 1;
    visibility: visible;

    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

.wrapper-dropdown span {
    color: var(--white);
    font-size: 14px;
    font-style: normal;
    line-height: 100%;
    /* width: 100%; */
    white-space: nowrap;
    text-overflow: ellipsis;
    display: flex;
    font-weight: 400;
}

.icon_ttl_wrap {
    display: flex;
    align-items: center;
    padding-left: 48px;
    position: relative;
    top: -8px;
}

.icon_ttl_wrap:before {
    position: absolute;
    content: "";
    background: var(--bg-color);
    height: 2px;
    width: calc(100% + 5px);
    bottom: -10px;
}

.title_filter_wrap:before {
    position: absolute;
    content: "";
    height: 1px;
    width: 100vw;
    background: rgba(255, 255, 255, 0.30);
    bottom: -2px;
}

.icon_ttl_wrap .icon {
    padding-right: 18px;
}

.icon_ttl_wrap img {
    display: block;
}

.icon_ttl_wrap h2 {
    font-size: 16px;
    font-weight: 400;
}




/* START EPG SEC CODE */
.epg_nav_btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    width: calc(100vw - 177px - 5.2vw);
    height: 100%;
    left: 0;
    z-index: 1;
    pointer-events: none;
    width: 100%;
}

.epg_nav_btns a {
    display: flex;
    width: 46px;
    justify-content: center;
    align-items: center;
    background-color: rgba(29, 29, 29, 0.84);
    height: 100%;
    pointer-events: all;
    z-index: 1;
}

.epg_nav_btns img {
    width: 20px;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.epg_nav_btns a:hover img {
    filter: brightness(1) invert(0);
}

.epg_current_time {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    /* height: calc(100% - 7px); */
    padding: 6px 13px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 400;
    right: auto;
    width: 63px;
    text-align: center;
    border-radius: 6px;
    border: 1px solid #F00;
    background: #B30000;
}

.epg_current_time::before {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 4px;
    height: calc(100vh - 142px);
    background-color: #B30000;
    top: 29px;
}



.channel_theme .epg_nav_btns a:hover img {
    filter: brightness(1) invert(0);
}

section.epg_sec {
    margin-bottom: 75px;
    overflow: hidden;
    padding: 0;
}

.epg_top_sec {
    transition: all 0.3s ease;
    display: flex;
    align-items: stretch;
}

section.epg_sec .container .container {
    max-width: 100%;
    padding: 0;
}

section.epg_sec>.container {
    /* padding-right: 0; */
}

.epg_timeline_box {
    display: flex;
    width: auto;
    margin-right: -1px;
    margin-left: -1px;
    align-items: stretch;
}

.epg_live_show {
    width: 100%;
    max-width: 147px;
}

.epg_timeline_wrap {
    width: calc(100% - 161px);
    margin-right: auto;
}

.epg_live_show a {
    width: 100%;
    height: 100%;
    background-color: var(--dark-gray);
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-size: 14px;
    font-weight: bold;
    color: var(--primary);
    justify-content: center;
}

.epg_live_show a .icon {
    width: 23px;
    height: 23px;
    margin-left: 8px;
}

.epg_live_show a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.epg_live_show a .icon svg {
    transition: all 0.3s ease-in-out;
    width: 100%;
    height: 100%;
    fill: var(--channel_color);
}

.epg_live_show a:hover .icon svg {
    fill: var(--white);
}

.epg_timeline_aside {
    min-width: 161px;
    display: flex;
    width: 100%;
    max-width: 161px;
    height: auto;
}

.epg_tl_item {
    margin: 2px 0;
    padding: 0 1px;
    width: 100%;
    height: auto;
    display: inline-block;
}

.epg_tl_item.epg_open_detail {
    cursor: pointer;
}

.epg_tl_title {
    width: 100%;
    height: 100%;
}

.epg_item_box {
    background-color: var(--dark-gray);
    padding: 11px 20px;
    border-radius: var(--button-border-raduis);
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    align-content: center;
}

.epg_timeline_show_row .epg_time.epg_item_box {
    padding: 13px 28px;
}

.epg_top_sec .epg_time.epg_item_box p {
    color: var(--white);
}


.epg_tl_item.epg_item_box {
    border: 2px solid transparent;
}

.active_show.epg_tl_item .epg_item_box {
    border: 2px solid var(--yellow);
}

.epg_channel_wrap .epg_timeline_show_row .epg_item_box {
    padding: 11px 11px;
    min-height: 82px;
}

.epg_top_sec .epg_item_box p {
    font-size: 16px;
    color: var(--white);
    font-weight: 400;
}

.epg_timebar_wrap,
.epg_swipe_wrapper {
    position: relative;
    max-width: 100%;
}

.epg_bottom_sec .epg_swipe_wrapper {
    max-width: calc(100% - 161px);
}

.epg_swipe_inner_wrap {
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.epg_top_sec .epg_swipe_inner_wrap {
    pointer-events: none;
}

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

.epg_timeline_show_row {
    display: inline-flex;
    white-space: nowrap;
    font-size: 0;
}

.epg_top_sec .epg_timeline_show_row .epg_tl_item {
    min-width: 288px;
    max-width: 288px;
}

.epg_item_box>* {
    width: 100%;
}

.epg_item_box .title {
    margin-bottom: 2px;
}

.epg_item_box .title h2 {
    font-size: 18px;
    color: var(--white);
    font-weight: 400;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.active_show .epg_item_box h2 {
    color: var(--white);
}

.epg_item_box h3 {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: var(--white);
}

.tl_timing_wrap .tl_time {
    font-size: 12px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 7px;
}

.tl_season_wrap p {
    font-size: 10px;
    font-weight: 400;
    color: var(--white);
}

.active_show .tl_timing_wrap .tl_time {
    color: var(--white);
}

.epg_timeline_aside .epg_tl_title .epg_item_box {
    padding: 0 28px;
}

.epg_timeline_aside .epg_tl_title .epg_item_box h2 {
    color: #FFF;
    text-align: right;
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
    height: inherit;
    display: flex;
    align-items: center;
}

.epg_timeline_aside .epg_tl_title .epg_item_box.today h2 {
    font-weight: 400;
}

.epg_img_box {
    height: 100%;
}

.epg_img_box img {
    display: block;
    height: 100%;
    object-fit: cover;
}

.epg_nav_btns {
    position: static;
    top: 0;
    justify-content: flex-end;
    margin-bottom: 40px;
    height: auto;
}

.epg_nav_btns>a {
    width: 40px;
    height: 40px;
    pointer-events: all;
    border-radius: 111px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
}

.epg_nav_btns .epg_next {
    margin-left: 10px;
}

/* END EPG SEC CODE */

.live-page-banner .HeroSlider .HeroSlider-img {
    padding-top: 0;
    height: 100vh;
}

.live-page-banner .img_wrap {
    position: relative;
    padding-top: 50.35%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.live-page-banner .img_wrap:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    background: linear-gradient(180deg, rgba(34, 34, 34, 0.00) 0%, #222 100%);
    z-index: 1;
    pointer-events: none;
}

.live-page-banner .HeroSlider-iframe::before {
    opacity: 0;
    visibility: hidden;
}

.hide-header .live-page-banner .HeroSlider-iframe::before {
    opacity: 0;
    visibility: hidden;
}

.live-page-banner .img_wrap img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    top: 0;
}

.live_radio_wrap {
    position: absolute;
    z-index: 2;
    bottom: 40px;
    width: 100%;
    transition: 0.5s all;
}

.hide-header .live_radio_wrap {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.live_radio_box {
    position: relative;
}

.live_radio_box .logo_box {
    margin-bottom: 45px;
}

.live_radio_box .logo_box img {
    width: auto;
    margin: 0;
}

.live_radio_action_btn {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: 0;
}

.live_radio_img {
    width: 150px;
    border-radius: 6px;
    overflow: hidden;
}

.live_radio_content {
    width: 100%;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.live_radio_content .live_item {
    padding-left: 60px;
    border-left: 2px solid rgba(255, 255, 255, .5);
    margin-left: 60px;
}

.live_radio_content .live_item:last-child {
    padding-left: 0;
    margin-right: 0;
    border-left: none;
}

.f_show_img .season_wrap {
    position: absolute;
    bottom: 10px;
    right: 10px;
    left: auto;
}

.season_wrap span {
    font-size: 10px;
    font-weight: 400;
    color: #161616;
    border: 1px solid var(--primary-color);
    border-radius: var(--button-border-raduis);
    background-color: rgba(255, 255, 255, .5);
    padding: 0px 10px;
}

.season_wrap span.duration {
    color: var(--primary-color);
    background-color: #16161680;
}

.live_radio_img img {
    display: block;
}

.live_radio_content .live_wrap {
    margin-bottom: 15px;
}

.live_radio_content .live_tag {
    background-color: #414097;
    font-size: 14px;
    font-weight: 400;
    border-radius: 6px;
    padding: 2px 12px;
    line-height: normal;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
}

.live_radio_content .live_tag.live {
    font-weight: 400;
    background-color: #FF0000;
}

.live_wrap .duration {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    padding-right: 15px;
}

.live_radio_content h3 {
    color: rgba(255, 255, 255, 0.92);
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 129.412%;
    margin-bottom: 10px;
}

.radio-player-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 22px 0;
    border-bottom: 1px solid #242424;
}

.radio-player-left {
    display: flex;
    align-items: center;
}

.play_push_btn {
    display: flex;
    width: 34px;
    min-width: 34px;
    min-height: 34px;
    height: 34px;
    justify-content: center;
    align-items: center;
    background-image: url(../images/play_icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    cursor: pointer;
    background-color: #D9D9D9;
    margin-right: 25px;
}

.radio-player-item h3 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 3px;
}

.radio-player-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
}

.radio-player-right .duration {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.3);
    display: block;
    padding-right: 55px;
}

.radio-player-right {
    display: flex;
    align-items: center;
}

.radio-player-right img {
    opacity: 0.3;
}

.widget_item.active .widget_link img {
    opacity: 1;
}

.radio-player-right .widget_item {
    position: relative;
}

.radio-player-right .btn_share {
    margin-right: 30px;
}


.radio-player-right .btn_share .widget_link {
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.radio-player-right .play_list_icon.active {
    border-radius: 50%;
}

.radio-player-right .btn_share .widget_link:hover {
    background-color: var(--primary);
}

.radio-player-right .play_list_icon:hover img {
    filter: brightness(0) invert(0);
    opacity: 1;
}

.radio-player-right .btn_share ul.social-share {
    top: -115px;
}

.radio-show-banner-sec {
    margin-top: -86px;
    padding-bottom: 0;
    margin-bottom: 60px;
}

.radio-show-banner-sec .radio_banner_img {
    position: relative;
    padding-top: 49.027%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.radio-show-banner-sec .radio_banner_img:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    z-index: 1;
}

.radio-show-banner-sec .radio_banner_img img {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.radio-show-banner-sec.HeroSlider .HeroSlider-info {
    bottom: 10px;
}

.radio-show-banner-sec .HeroSlider-info .inner_wrap {
    max-width: 668px;
    width: 100%;
}

.radio-show-banner-sec .HeroSlider-info .inner_wrap .desc {
    margin-bottom: 0;
}

.HeroSlider-info .logo_img {
    max-width: 160px;
    border-radius: 5px;
    overflow: hidden;
}

.HeroSlider-info .logo_img {
    max-width: 160px;
}

.HeroSlider-info .logo_img img {
    display: block;
}

.radio-show-banner-sec.vod_cast_banner.HeroSlider .HeroSlider-info {
    position: static;
    padding-top: 100px;
}

.more-episode-wrap .wrapper-dropdown {
    display: block;
    max-width: 167px;
}

.more-episode-wrap {
    display: block;
    background-color: #181818;
    padding: 25px 18px;
    border-radius: 6px;
    overflow: hidden;
}

.more-episode-carousel {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -6px;
}

.more-episode-carousel.owl-carousel {
    margin: 0;
}

.more-episode-carousel.owl-carousel {
    padding-right: 50px;
}

.more-episode-carousel .owl-stage-outer {
    overflow: visible;
}

.more-episode-carousel>.item {
    width: 17.983%;
    padding: 0 6px;
}

.episode_item>a {
    display: block;
    width: 100%;
}

.episode_img {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 5px;
    overflow: hidden;
}

.episode_img img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    top: 0;
    display: block;
}

.episode_item .epi_no {
    font-size: 16px;
    font-weight: 400;
    color: var(--primary);
    display: block;
    margin-top: 15px;
}

.more-episode-wrap .HeroSlider-info {
    position: static;
    padding: 0;
}

.more-episode-wrap .more_txt {
    display: none;
    transition: unset;
    -webkit-transition: unset;
}

.more-episode-wrap .more_wrap {
    text-align: left;
}

.more-episode-wrap .HeroSlider-info .inner_wrap .epi_no {
    margin-bottom: 15px;
}

.more-episode-sec {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    bottom: 130px;
    transform: translateY(100%);
    transition: 0.5s all;
    opacity: 0;
    visibility: hidden;
}

.show-more-ep .more-episode-sec {
    transform: unset;
    opacity: 1;
    visibility: visible;
}

.new_playlist_dropdown {
    background-color: #737373;
    padding: 5px 4px;
    position: absolute;
    top: -200px;
    width: 155px;
    z-index: 2;
    left: 50%;
    right: 0;
    margin: 0 auto;
    transform: translateX(-50%);
    border-radius: 5px;
    max-height: 175px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.new_playlist .widget_link {
    position: relative;
}

.new_playlist .widget_link:after {
    content: "";
    height: 24px;
    width: 24px;
    display: block;
    background-image: url(../images/share-icon_rectangle.png);
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
}

.new_playlist.active .widget_link:after,
.new_playlist:hover .widget_link:after {
    opacity: 1;
    visibility: visible;
}

.new_playlist_dropdown ul li a {
    font-size: 12px;
    color: var(--primary);
    font-weight: 400;
    padding: 10px 8px;
    display: block;
    border-radius: 2px;
}

.new_playlist_dropdown ul li a:hover {
    background-color: var(--black);
}

.add_playlist {
    border-top: 1px solid #404040;
    padding: 4px 4px;
    margin-top: 5px;
}

.add_playlist>a,
.add_playlist>input {
    color: var(--white);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    background: transparent;
    border: none;
    color: var(--primary);
}

.add_playlist input::placeholder {
    font-weight: 400;
    color: var(--primary);
}

.new_playlist.active .widget_link>img {
    opacity: 1;
}

.new_playlist:hover .new_playlist_dropdown,
.new_playlist.active .new_playlist_dropdown {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;

}

.owl-item:hover {
    z-index: 1;
}

.faq-wrapper {
    max-width: 1092px;
    width: 100%;
    margin: 0 auto;
}

.faq-sec h1 {
    color: var(--white);
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 50px;
    text-align: right;
}

.faq-wrapper .accrodion-item+h2 {
    margin-top: 35px;
    font-weight: normal;
    font-size: 28px;
}

.accrodion-item {
    border-bottom: 1px solid #D9DBE9;
    padding: 35px 40px;
    position: relative;
}

.accrodion-item:first-child {
    padding-top: 0;
}

.accrodion-item:last-child {
    border: none;
    border-bottom: unset;
}

.accrodion-content {
    margin-top: 30px;
    display: none;
}

.accrodion-item .accrodion-title {
    background-image: url(../images/faq_plus_icon.svg);
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 40px;
    cursor: pointer;
}

.accrodion-item.active .accrodion-title {
    background-image: url(../images/faq_minus_icon.svg);
}

.accrodion-item .accrodion-title h5 {
    font-size: inherit;
    font-weight: inherit;
}

.accrodion-content p {
    color: #757575;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.accrodion-content p a {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

.accrodion-content p a:hover {
    color: var(--yellow);
}

.get-in-touch-sec {
    padding-top: 200px;
    margin-bottom: 140px;
}

.get-in-touch-sec h1 {
    color: var(--white);
    font-weight: 400;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0.5%;
    text-align: center;
    margin: 0 0 50px;
}

.get-in-touch-wrapper {
    width: 100%;
}

.get-in-touch-wrapper .contact_info_wrap {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
}

.social_icons_wrapper {
    max-width: 197px;
    width: 100%;
}

.contact_info>a {
    border-radius: 5px;
    background-color: #222222;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 17px 25px;
    min-height: 71px;
}

.contact_info .icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_info svg,
.contact_info img {
    display: block;
}

.contact_info h6 {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 12px;
}

.contact_info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.contact_info .details {
    padding-right: 25px;
    width: calc(100% - 24px);
}

.social_icon {
    border-radius: 5px;
    background: #FFF;
    width: 100%;
    max-width: 197px;
}

.social_icon a {
    display: flex;
    align-items: center;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 23px 25px;
    margin-bottom: 16px;
    min-height: 71px;
}

.social_icon .icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.comm_auth_sec {
    padding-top: 200px;
    min-height: 100vh;
    /* padding-bottom: 65px;*/
    /*    min-height: calc(100vh - 143px);*/
}

.comm_auth_sec.no_header {
    padding-top: 120px;
}

.comm_auth_title {
    margin-bottom: 40px;
}

.comm_auth_title.reset-pwd-ttl {
    max-width: 325px;
    margin: 0 auto 30px;
}

#registration-section .comm_auth_title {
    margin-bottom: 20px;
}

.comm_auth_title h1 {
    color: var(--primary-color);
    text-align: center;
    font-weight: 400;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0.5%;
}

.auth_short_desc {
    max-width: 173px;
    margin: 0 auto 30px;
}

.auth_short_desc p {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    margin: 0;
}

#registration-section .comm_auth_inner .comm_auth_title p {
    color: var(--yellow);
}

.comm_auth_title h3 {
    color: var(--primary-color);
    text-align: center;
    font-family: Tajawal;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 112%;
    letter-spacing: 0.125px;
    margin-top: 25px;
}

.form-group-wrapper {
    max-width: 226px;
    margin: 0 auto;
}
.account_form_wrap .form-group-wrapper{
    max-width: 258px;
}
.big_wrapper {
    max-width: 400px;
    text-align: center;

}

.form-group {
    position: relative;
}

.form-group-wrapper label {
    color: rgba(255, 255, 255, .30);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 12px;
    display: block;
}

.form-group.mobile-wrap {
    border-radius: var(--form-input-border-radius);
    background-color: rgba(255, 255, 255, .1);
}

.form-group.mobile-wrap input {
    background-color: transparent;
}

.form-group.mobile-wrap .iti input[type=text] {
    background-color: transparent;
    border-radius: unset;
    padding-left: 125px !important;
}

.form-group.mobile-wrap .iti__flag-container .iti__arrow {
    margin-left: 5px;
}

.form-group.mobile-wrap .iti--separate-dial-code .iti__flag-container {
    right: auto;
    left: 50px;
}

.form-group .change-txt {
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    position: absolute;
    right: auto;
    left: 4px;
    z-index: 1;
    height: calc(100% - 8px);
    padding: 5px 10px;
    border-radius: 4px;
    top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-group:not(:last-child) {
    margin-bottom: 11px;
}

i.toggle-password {
    height: 100%;
    width: 32px;
    display: block;
    position: absolute;
    top: 50%;
    left: 10px;
    right: auto;
    transform: translateY(-50%);
    background-image: url(../images/hide_pwd.svg);
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    background-size: 18px auto;
}

i.toggle-password.show_pwd {
    background-image: url(../images/show_pwd_icon.svg);
}

input,
textarea,
.iti input,
.iti input[type=text],
.iti input[type=tel] {
    color: var(--primary-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: none;
    border-radius: var(--form-input-border-radius);
    background-color: rgba(255, 255, 255, .1);
    padding: 5px 15px;
    width: 100%;
    min-height: 38px;
}

textarea {
    height: 120px;
    resize: none;
}

/* .iti input[type=text],
.iti input[type=tel] {
    direction: ltr;
} */

.form-group .pwd_input {
    padding-left: 45px;
    direction: ltr;
    text-align: right;
}

input::-ms-reveal {
    display: none;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
}

.iti__selected-flag {
    padding: 0 16px 0 16px;
    display: flex;
    flex-direction: row-reverse;
    background-color: transparent;
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent;
}

.iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 0;
}

.iti__flag-container .iti__arrow {
    margin-left: 12px;
    border-top: 4px solid #FFF;
    background-image: url(../images/iti__arrow.svg);
    background-size: 100%;
    border: none;
    height: 10px;
    width: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.iti__selected-flag .iti__flag {
    display: none;
}

.iti__flag-container .iti__arrow--up {
    /*  border-bottom: 4px solid #FFF;
    border-top: none;*/
    border: none;
    transform: rotate(180deg);
}

.iti--separate-dial-code .iti__selected-dial-code {
    color: var(--primary-color);
    direction: ltr;
    font-size: 14px;
}

/* .iti--separate-dial-code .iti__selected-flag:before {
    position: absolute;
    content: "";
    background: rgba(255, 255, 255, 0.5);
    height: 18px;
    width: 1px;
    right: 2px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
} */

.iti__flag {
    background-image: url(../images/flags.png);
}

.iti__country-list {
    overflow-y: unset;
    /*    max-width: 380px;*/
    overflow-x: hidden;
    background-color: var(--bg-color);
    right: auto;
    left: 0;
}

.g-recaptcha {
    margin-top: 40px;
    text-align: center;
}
.otp-bottom-txt .g-recaptcha{
    margin-bottom: 20px;
}
.custom_link {
    color: var(--white-30);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
}

.custom_link.reset {
    font-weight: 400;
}

.comm_auth_inner .btn_wrap {
    padding-top: 38px;
}

.comm_auth_inner .create-profile .btn_wrap {
    padding-top: 90px;
}

.comm_auth_inner .choose_avatar_wrapper .btn_wrap {
    padding-top: 0;
}

.default_btn {
    color: var(--primary-color);
    text-align: center;
    font-family: var(--primary-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 4px 20px;
    border-radius: var(--form-input-border-radius);
    min-height: 38px;
    border: 1px solid transparent;
    background-color: var(--secondary-color);
}

.default_btn:hover {
    background-color: var(--primary-color);
    border-color: transparent;
    color: var(--black);
}

.comm_auth_inner .btn,
.comm_auth_inner .btn_wrap .btn {
    padding: 10px 30px;
}

.comm_auth_inner .social-login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    max-width: 242px;
    margin: 35px auto 0;
}

.comm_auth_inner .social-login .btn {
    color: #0000008A;
    background-color: var(--white);
    padding: 9px 15px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    font-weight: 400;
}

.comm_auth_inner .social-login .btn img {
    display: block;
    max-width: 18px;
    width: 100%;
    margin: 0;
    margin-right: 10px;
}

.comm_auth_inner .social-login .btn i {
    margin-left: 10px;
}

.comm_auth_inner .social-login .btn.facebook-btn {
    background-color: #1877F2;
    color: var(--white);
    flex-direction: unset;
}

.comm_auth_inner .btn_wrap input {
    max-width: 226px;
}
.comm_auth_inner .manage_profile .btn_wrap input {
    min-width: 98px;
    width: auto;
}
.registration_form_wrap .description {
    max-width: 507px;
    width: 100%;
    margin: 30px auto 0;
}

.g-recaptcha>div {
    margin: 30px auto 0;
}

.comm_auth_inner .auth_short_desc p {
    color: var(--white);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.comm_auth_inner .registration_form_wrap .auth_short_desc {
    margin: 0 0 12px;
}

.comm_auth_inner .registration_form_wrap .auth_short_desc p {
    text-align: unset;
    color: rgba(255, 255, 255, .3);
}

.otp-input-fields {
    max-width: 226px;
    margin: 0 auto;
    width: 100%;
    direction: ltr;
    display: flex;
    align-items: center;
    justify-content: center;
}

.otp-input-fields input {
    height: 38px;
    width: 38px;
    border-radius: 4px;
    text-align: center;
    margin-right: 9px;
    padding: 0;
    direction: ltr;
}

.otp-input-fields input:last-child {
    margin-right: 0;
}

.otp-input-fields input::-webkit-outer-spin-button,
.otp-input-fields input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.otp-input-fields input[type=number] {
    -moz-appearance: textfield;
}

.otp_info_box {
    max-width: 230px;
    margin: 0 auto 10px;
}

.comm_auth_inner .otp_info_box p {
    color: rgba(255, 255, 255, .3);
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
}

.otp_info_box p {
    margin-bottom: 15px;
}

.otp_info_box p:last-child {
    margin-bottom: 0;
}

.otp_msg_box {
    padding-top: 23px;
    text-align: center;
}

.otp_msg_box p {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 10px;
    color: #545454;
    position: relative;
    padding: 5px 10px;
    border-radius: 100px;
    display: inline-flex;
}

.success {
    color: #23E44D;
}

.otp_msg_box p.success {
    color: #23E44D;
}

.success:after {
    content: "";
    height: 15px;
    width: 15px;
    background-image: url(../images/otp-sent-icon.svg);
    background-repeat: no-repeat;
    background-position: left center;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.otp_failure {
    color: #D42929;
}

p.otp_failure {
    color: #D42929;
    background-color: transparent;
    line-height: normal;
    margin-bottom: 20px;
    border: 1px solid #BC2727;
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 2px 11px;
    margin-bottom: 10px;
}

p.otp_failure.d-none {
    display: none;
}

.otp_failure:after {
    content: "";
    height: 15px;
    width: 15px;
    min-width: 15px;
    background-image: url(../images/otp-wrong-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    top: 1px;
    position: relative;
    margin-left: 6px;
    background-size: 10px;
}

.otp_msg_box .otp_time {
    color: #81B3FF;
    border: 1px solid #81B3FF
}
.otp_time_register {
    display: inline-block !important;
}
.otp-bottom-txt {
    max-width: 230px;
    margin: 32px auto 0;
}

.otp-bottom-txt p {
    color: #646464;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
}

.otp-bottom-txt .forget-link {
    color: var(--white);
    margin-bottom: 12px;
}

.otp-bottom-txt .forget-link a {
    font-weight: 400;
}

select,
.form-group select {
    color: var(--primary-font);
    font-family: var(--primary-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: none;
    border-radius: var(--form-input-border-radius);
    background-color: rgba(255, 255, 255, .1);
    padding: 11px 15px;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/down_arrow.svg);
    background-repeat: no-repeat;
    background-position: 15px center;
    padding-left: 35px;
}

select option,
.form-group select option {
    color: var(--black);
}

.form-group select {
    padding: 5px 15px;
    min-height: 38px;
}

input.hasDatepicker {
    /*    background-image: url(../images/calendar-icon.svg);
    background-position: 15px 50%;
    background-repeat: no-repeat;*/
    padding-left: 35px;
}

input.hasDatepicker {
    opacity: 0.5;
    pointer-events: none;
}

.form-group img.ui-datepicker-trigger {
    cursor: pointer;
    position: absolute;
    right: auto;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    object-position: 15px center;
    object-fit: none;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    background: var(--secondary-color);
    color: var(--white)
}

.parental-control p {
    color: var(--white);
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    margin: 0 0 35px;
}

.parental-control .otp-input-fields {
    max-width: 226px;
}

.parental-control .otp-input-fields input {
    width: 50px;
}

.account .info_txt {
    margin-bottom: 30px;
}

.form-group .send-otp {
    text-align: right;
    margin-top: 10px;
}

.line_separator {
    display: block;
    height: 1px;
    width: 164px;
    background: #7B7B7B;
    margin: 40px auto;
}

.user_profile_main {
    max-width: 980px;
    margin: 20px auto 0;
    width: 100%;
}

.user_profile_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px;
}

.profile_item {
    position: relative;
    padding: 0 16px;
    max-width: 176px;
    width: 100%;
    margin-bottom: 30px;
}

.profile_item_inner {
    position: relative;
}

.profile_item_inner>a {
    display: block;
    width: 100%;
}

.profile_img {
    position: relative;
    border: 4px solid transparent;
    border-radius: var(--profile-border-radius);
    overflow: hidden;
    transition: 0.5s all;
}

.profile_item:hover .profile_img,
.profile_item.active .profile_img {
    border: 4px solid var(--secondary-color);
}

.user_profile_wrapper .profile_item.active .profile_img {
    transform: scale(1.1);
}

.user_profile_wrapper .profile_item.active .profile_name {
    margin-top: 16px;
}

.profile_item.active .edit_profile {
    opacity: 1;
    visibility: visible;
}

.profile_img img {
    object-fit: cover;
    width: 100%;
    display: block;
}

.edit_profile {
    width: 45px;
    height: 28px;
    background-color: var(--secondary-color);
    border-radius: var(--form-input-border-radius);
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edit_profile>a {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.edit_profile>a img {
    display: block;
    height: auto;
    width: auto;
}

.profile_item:hover .edit_profile {
    opacity: 1;
    visibility: visible;
}

.profile_name {
    margin-top: 10px;
    text-align: center;
}

.profile_name h4 {
    color: var(--white);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.edit_profiler_form .profile_item {
    padding: 0;
    margin: 0 auto;
    max-width: 176px;
    width: 100%;
}

.manage_profile .edit_profiler_form .profile_item {
    max-width: 226px;
}

.manage_profile .edit_profiler_form .profile_item .profile_item_inner {
    max-width: 164px;
    margin: 0 auto;
}

.edit_profiler_form .form-group-wrapper {
    margin-top: 32px;
}

.form-group-wrapper .wrapper-dropdown {
    min-width: unset;
    width: 100%;
    box-shadow: unset;
    background-color: rgba(255, 255, 255, .1);
    padding: 12px 15px 12px 40px;
}

.form-group-wrapper .wrapper-dropdown.active {
    background-color: var(--white);
}

.form-group-wrapper .wrapper-dropdown.active span {
    color: var(--secondary-color);
}

.form-group-wrapper .wrapper-dropdown.active::before {
    filter: brightness(0) saturate(100%) invert(15%) sepia(24%) saturate(6611%) hue-rotate(319deg) brightness(97%) contrast(98%);
}

.form-group-wrapper .wrapper-dropdown .dropdown {
    margin-top: 5px;
    background-color: #2D2D2D;
    padding: 5px;
}

.form-group-wrapper .wrapper-dropdown .dropdown li {
    color: var(--white-30);
    border-radius: var(--button-border-raduis);
}

.form-group-wrapper .wrapper-dropdown .dropdown li:hover {
    color: var(--white);
}

.manage_profile .otp-input-fields {
    display: none;
    max-width: 226px;
}

.manage_profile .otp-input-fields.active {
    display: flex;
}

.manage_profile .otp-input-fields input {
    width: 50px;
}

/* Common toggle base */
.form-group-wrapper .toggle {
    position: relative;
    width: 35px;
    height: 21px;
    margin: 0;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-wrapper .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E9E9EA;
    transition: 0.4s;
    border-radius: 16px;
}

.toggle-wrapper .slider::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    top: 1.4px;
    background-color: var(--white);
    transition: 0.4s;
    border-radius: 16px;
    box-shadow: 0px 3px 7px 0px #0000001F;
}

.toggle-wrapper .slider::after {
    position: absolute;
    content: "";
    height: 6px;
    width: 6px;
    right: 4px;
    left: auto;
    top: 8px;
    border: 1px solid #B2B2B2;
    border-radius: 50%;
}

.toggle input:checked+.slider::after {
    width: 1px;
    background-color: var(--white);
    border: unset;
    left: 7px;
    right: auto;
    border-radius: 0;
}

.toggle input:checked+.slider {
    background: #65C466;
}

.toggle input:checked+.slider::before {
    transform: translateX(12px);
}

/* Toggle with label */
.toggle-wrapper {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, .1);
    padding: 2px 15px;
    border-radius: 5px;
    flex-direction: row-reverse;
    justify-content: space-between;
    min-height: 38px;
}

.toggle-label {
    color: var(--white-30);
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.custom-model-main {
    text-align: center;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* z-index: 1050; */
    -webkit-overflow-scrolling: touch;
    outline: 0;
    opacity: 0;
    -webkit-transition: opacity 0.15s linear, z-index 0.15;
    -o-transition: opacity 0.15s linear, z-index 0.15;
    transition: opacity 0.15s linear, z-index 0.15;
    z-index: -1;
    overflow-x: hidden;
    overflow-y: auto;
}

.model-open {
    z-index: 99999;
    opacity: 1;
    overflow: hidden;
}

.custom-model-inner {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out,
        -webkit-transform 0.3s ease-out;
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 30px);
    margin: 0 auto;
    max-width: 560px;
    border-radius: var(--popup-border-radius);
    background: #222222E5;
    position: fixed;
    overflow-x: hidden;
    overflow-y: auto;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    box-shadow: -11.09px 10.3px 36.44px 0px #00000040;
    backdrop-filter: blur(224px)
}

.model-open .custom-model-inner {
    opacity: 1;
    visibility: visible;
}

.custom-model-wrap {
    display: block;
    width: 100%;
    position: relative;
    outline: 0;
    padding: 50px 20px 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-height: calc(100vh - 70px);
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 262px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.model-open .custom-model-inner {
    z-index: 999;
}

.model-open .bg-overlay {
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
    opacity: 1;
    visibility: visible;
}

.bg-overlay {
    background: rgba(0, 0, 0, 0);
    height: 100vh;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    -webkit-transition: background 0.15s linear;
    -o-transition: background 0.15s linear;
    transition: background 0.15s linear;
    opacity: 0;
    visibility: hidden;
}

.close-btn {
    position: absolute;
    height: 18px;
    width: 18px;
    right: 25px;
    top: 25px;
    cursor: pointer;
    z-index: 99;
    background-image: url(../images/close_icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    transition: 0.3s all;
}

.close-btn:hover {
    opacity: 1;
}

.kids-exit-modal .pop-up-content-wrap h2 {
    color: #FEFEFE;
    font-weight: 400;
    font-size: 25px;
    line-height: 28px;
    letter-spacing: 0.5%;
    text-align: center;
    margin: 0 0 45px;
}

.kids-exit-modal .form-group-wrapper {
    margin-bottom: 30px;
}

.kids-exit-modal .links_wrap {
    text-align: right;
}

.kids-exit-otp-wrap {
    max-width: 180px;
    margin: 0 auto 30px;
}

.kids-exit-modal .otp-input-fields {
    max-width: 180px;
}

.kids-exit-modal .otp-input-fields input {
    width: 38px;
}


.choose_avatar_wrapper .avatar_list {
    max-width: 750px;
    margin: 0 auto;
    width: 100%;
}

.avatar_list:hover .avatar_img {
    opacity: 0.5;
}

.avatar_list:hover .avatar_img:hover {
    opacity: 1;
}

.avatar_list:hover .avatar_img.active {
    opacity: 1;
}

.avatar_list {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0;
}

.avatar_list .avatar_img {
    max-width: 20%;
    width: 100%;
    padding: 0 10px;
    margin-bottom: 30px;
}

.avatar_img>a {
    display: block;
    height: 100%;
    width: 100%;
}

.avatar_list .avatar_img img {
    border: 4px solid transparent;
    transition: 0.3s all;
    border-radius: var(--profile-border-radius);
    width: 100%;
}

.avatar_list .avatar_img.active img,
.avatar_list .avatar_img:hover img {
    border: 4px solid var(--secondary-color);
    transform: scale(1.2);
    border-radius: 4px;
}

.avatar_list .avatar_img img {
    display: block;
}

.avatar_popup .custom-model-inner {
    max-width: 1024px;
    padding: 65px 0 40px;
}

.avatar_popup .custom-model-wrap {
    max-width: 815px;
    margin: 0 auto;
    padding: 0;
}

.delete_acc_btn_wrap {
    margin: 21px auto 0;
    text-align: center;
    max-width: 226px;
}

.delete_acc_btn_wrap .delete_acc_btn {
    width: 100%;
}


.delete_account_popup h2,
.confirm_delete_popup h2 {
    color: #FEFEFE;
    text-align: center;
    font-family: var(--primary-font);
    font-size: 25;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 25px;
}

.confirm_delete_account {
    max-width: 386px;
    margin: 0 auto 60px;
}

.pop-up-content-wrap .btn_wrap {
    padding-top: 12px;
    border-top: 1px solid #3A3A3A;
    width: calc(100% + 40px);
    right: -20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pop-up-content-wrap .btn_wrap .btn {
    min-width: 98px;
}

.btn.btn-dark {
    background-color: var(--bg-color);
}

.account_form_wrap {
    position: relative;
}

.account_form_wrap .tab-menu {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 43px;
}

.account_form_wrap div.tab-menu ul li {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.account_form_wrap .tab-menu ul li a {
    color: var(--white);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 6px 20px;
    min-height: 38px;
}

.account_form_wrap .tab-menu ul li a::before {
    bottom: 0;
}

.account_form_wrap .tab-menu ul {
    position: relative;
}

.tab-box {
    display: none;
}

.loged-in-user {
    background-color: var(--secondary-color);
    padding: 4px 5px;
    border-radius: 4px;
    min-width: 170px;
    cursor: pointer;
    position: relative;
}

.loged-in-user::before {
    position: absolute;
    content: "";
    left: 15px;
    right: auto;
    top: 15px;
    height: 10px;
    width: 10px;
    background-image: url(../images/down_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.loged-in-user:hover {
    background-color: var(--white);
}

.loged-in-user:hover:before {
    filter: brightness(0) saturate(100%) invert(15%) sepia(24%) saturate(6611%) hue-rotate(319deg) brightness(97%) contrast(98%);
    transform: rotate(-180deg);
}

.loged-in-user .user_profile {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    flex-direction: row-reverse;
    gap: 10px;
    justify-content: flex-end;
    padding-left: 30px;
}

.loged-in-user .user_profile:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 100%;
    left: 0;
    right: 0;
    bottom: -16px;
}

.user_name p {
    color: var(--white);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.loged-in-user:hover .user_name p {
    color: var(--secondary-color);
}

.user_img img {
    display: block;
    height: 30px;
    width: 30px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.dropdown_profile_list .profile_items {
    margin-bottom: 5px;
}

.dropdown_profile_list .profile_items:last-child {
    margin-bottom: 0;
}

.dropdown_profile_list {
    border-bottom: 1px solid #7B7B7B;
    padding-bottom: 12px;
}

.profile_items>a {
    display: flex;
    align-items: center;
}

.profile_items .profile_img_wrap {
    width: 31px;
    border-radius: 2px;
    overflow: hidden;
}

.profile_items .profile_img_wrap img {
    display: block;
}

.profile_items .profile_txt p,
.profile_items .profile_txt span {
    color: var(--primary);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.profile_items .profile_txt span {
    color: #C1BFBF;
    display: block;
}

.profile_txt {
    padding-left: 10px;
    text-align: left;
}

.profile_dropdown_menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: auto;
    width: 170px;
    opacity: 0;
    border-radius: 4px;
    transform: translateY(-10px);
    visibility: hidden;
    transition: 300ms;
    padding: 12px 6px;
    text-align: left;
    pointer-events: none;
    background-color: rgba(22, 22, 22, .65);
}

/*.profile_dropdown_menu ul {
    margin-top: 20px;
}*/
.loged-in-user:hover .profile_dropdown_menu,
.profile_dropdown_menu.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.profile_dropdown_menu ul li {
    margin-bottom: 5px;
}

.profile_dropdown_menu ul li a {
    color: var(--white);
    text-align: right;
    font-family: var(--primary-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 4px 25px;
    border-radius: 4px;
    width: 100%;
}

.profile_dropdown_menu ul li a:hover {
    background-color: var(--secondary-color)
}

.login_btn_wrapper a.sign_btn {
    display: flex;
    align-items: center;
    padding: 10px 10px 10px 28px;
    border-radius: 4px;
}

.login_btn_wrapper a.sign_btn:hover {
    background-color: #383838;
}

.login_btn_wrapper a.sign_btn .user_name {
    color: #FFF;
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-right: 15px;
}

.sign_out_btn_wrap {
    text-align: center;
    border-top: 1px solid #7B7B7B;
    padding-top: 4px;
    margin-top: 6px;
}

.sign_out_btn_wrap>a {
    color: var(--primary);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* .user_profile_wrapper:hover .profile_img {
    opacity: 0.5
}

.user_profile_wrapper:hover .profile_img:hover {
    opacity: 1;
} */


.new_profiler_form .profile_item {
    padding: 0;
    margin: 0 auto;
    max-width: 167px;
    width: 100%;
}

.new_profiler_form .profile_item .profile_img {
    border: none;
}

.new_profiler_form .form-group-wrapper {
    margin-top: 30px;
}

.playlist-sec {
    padding-top: 130px;
}

.playlist_wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
    margin-bottom: 15px;
}

.playlist_item {
    width: 25%;
    position: relative;
    padding: 0 7px;
    margin-bottom: 45px;
}

.playlist_item>a {
    display: block;
}

.playlist_item .playlist_img {
    position: relative;
    padding-bottom: 56.628%;
    border-radius: 6px 6px 0px 0px;
    overflow: hidden;
}

.playlist-category-sec .playlist_item .playlist_img {
    border-radius: 6px;
}

.playlist-category-sec .playlist_item .playlist_img:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.3s all;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.playlist-category-sec .playlist_item:hover .playlist_img:before {
    opacity: 1;
    visibility: visible;
}

.playlist_item .playlist_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    display: block;
}

.playlist_item .action-div {
    top: 50%;
    transition: 0.3s all;
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.playlist_item:hover .action-div {
    transform: translateY(-50%) scale(1);
}

.playlist_item .action-div .common_icon_box {
    margin: 0 10px 0 0;
}

.playlist_item .action-div .common_icon_box:last-child {
    margin-right: 0;
}

.total_vid {
    color: var(--primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 4px;
    background-color: #1E1E1E;
    padding: 11px 16px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: inline-flex;
    align-items: center;
}

.total_vid:before {
    content: "";
    height: 18px;
    width: 18px;
    display: block;
    background-image: url(../images/video_playlist_icon.svg);
    background-repeat: no-repeat;
    background-position: left center;
    margin-right: 5px;
    margin-top: -4px;
}


.playlist_bottom {
    background-color: var(--secondary-color);
    padding: 11px 15px;
    border-radius: 0px 0px 6px 6px;
    padding-right: 22px;
}

.playlist_content_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.playlist_content_wrap h5 {
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.playlist_action_btn {
    display: flex;
    gap: 4px;
}

.playlist_action_btn .play_list_icon>a {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.playlist_action_btn .play_list_icon>a img {
    display: block;
}

.play_list_icon.active a {
    background-color: var(--white);
}

.play_list_icon.active img {
    filter: brightness(0) invert(0);
}

.playlist_action_btn .play_list_icon a:hover {
    background-color: var(--white);
}

.playlist_action_btn .play_list_icon a:hover img {
    filter: brightness(0) invert(0);
}

.playlist_action_btn .btn_share .social-share:after {
    top: -28px;
    bottom: auto;
}

.playlist_action_btn .btn_share ul.social-share {
    top: auto;
    bottom: -115px;
}

.radio_playlist .playlist_item {
    width: 14.28%;
}

.radio_playlist .playlist_item .playlist_img {
    padding-bottom: 100.07%;
}

.radio_playlist .playlist_content_wrap {
    display: block;
}

.my-history-sec {
    overflow: hidden;
}

.featur_item_list {
    margin: 0 -8px;
    display: flex;
    flex-wrap: wrap;
}

.featur_item_list>.item {
    width: 25%;
    padding: 0 7px;
    margin-bottom: 20px;
}

.head_ttl {
    margin-bottom: 20px;
}

.head_ttl h2 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.playlist-category-sec .back_btn_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.playlist-category-sec .back_btn_wrap .total_vid {
    position: static;
}


.reset_password_step-1,
.reset_password_step-2 {
    margin-bottom: 30px;
}

.reset_password_msg {
    max-width: 435px;
    margin: 0 auto 30px;
}

.reset_password_msg p {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    text-align: center;
}

.reset_password_msg p {
    margin-bottom: 10px;
}

.reset_password_step-2 .links_wrap {
    text-align: center;
    margin: 30px 0 0;
}

.reset_password_msg p:last-child {
    margin-bottom: 0;
}

.reset_password_step-2 .otp-input-fields {
    max-width: 180px;
}

.reset_password_step-2 .otp-input-fields input {
    width: 38px;
}

.opt_sent_txt {
    padding-top: 16px;
    max-width: 312px;
    margin: 0 auto;
    border-top: 1px solid #00FF47;
    margin-top: 40px;
    direction: ltr;
}

.opt_sent_txt p {
    color: var(--primary-color);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    /* 28px */
    font-weight: 400;
}

/*.comm_auth_inner .reset_password_step-1 .btn_wrap .btn{
    min-width: unset;
}*/


.search_popup {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    height: 100%;
    background: #161616;
    min-height: 100vh;
    top: -100%;
    transition: all 0.5s ease;
    opacity: 0;
    visibility: visible;
    pointer-events: none;
}

.search_popup.active {
    top: 0;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

.search_popup_inner {
    display: flex;
}

.search_popup_inner .header-logo-block {
    width: 20%;
}

.search_popup_inner .search_popup_right {
    width: 100%;
    max-width: 76%;
}

.search-bar button {
    height: 20px;
    width: 20px;
    background: transparent;
    padding: 0;
    font-size: 0;
    border: none;
    position: absolute;
    right: auto;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
}

.search_popup_header {
    padding: 33px 0 0;
    padding-right: 180px;
}

.search_popup_right .search-form {
    display: flex;
}

.search_popup_right .search-bar {
    width: 100%;
    position: relative;
}


.search_popup_right .search-bar input {
    font-size: 14px;
    padding: 5px 15px;
    border: none;
    color: #fff;
    font-weight: 400;
    border-radius: 4px;
    background-color: var(--secondary-color);
    padding-right: 35px;
    min-height: 38px;
}

.search_popup_right .search-bar input::placeholder {
    color: var(--white);
}

.close-search {
    color: var(--primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    margin-right: 10px;
    cursor: pointer;
}

.close-search img {
    margin: 0;
}

.voice-search {
    height: 38px;
    width: 62px;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 10px;
    border-radius: var(--button-border-raduis);
}

.search-no-results {
    text-align: center;
}

.search-no-results h3 {
    color: #424242;
    text-align: center;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 20px;
}

.search-no-results {
    text-align: center;
    width: 100%;
    /* position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); */
}

.search_result h2 {
    color: var(--primary);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
}

.search_result {
    padding-top: 70px;
    max-height: calc(100% - 70px);
    overflow: auto;
}

.search_result .tab-menu {
    margin-bottom: 25px;
}

.search_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -6px;
}

.search_list .search-item {
    width: 25%;
    padding: 0 6px;
    margin-bottom: 35px;
    position: relative;
}

.search_list.episode-list {
    margin: 0 -8px;
}

.search_list.episode-list .search-item {
    width: 25%;
    padding: 0 8px;
}

.search-item .badge_labels {
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 120px;
}

.search-item .badge_labels+.badge_labels {
    top: 45px;
}

.search-item>a {
    display: block;
    position: relative;
}

.search-item .img-wrap {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--white-10);
}

.search_list .search-item .episode-ttl{
    margin-top: 10px;
    padding-left: 5px;
}
.search_list .search-item .episode-ttl h3{
    color: var(--white);
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0%;
}

#episodes .search_list .search-item .img-wrap {
    padding-bottom: 56.25%;
}

.search_list.episode-list .search-item p {
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    margin: 10px 0 0;
}

.search-item a:hover .img-wrap {
    transform: scale(1.05);
    z-index: 1;
}

.search-item .img-wrap img {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.radioPlayer {
    position: fixed;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 1020px;
    width: 100%;
    bottom: 20px;
    z-index: 2;
}

.radio_player_wrap {
    padding: 17px 35px 17px 18px;
    border-radius: var(--button-border-raduis);
    background: var(--dark-gray);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-radius: var(--button-border-raduis);
}

.left_part {
    width: 30%;
    display: flex;
    align-items: center;
}

.center_part {
    width: 60%;
}

.right_part {
    width: calc(100% - 30%);
}

.track_img {
    width: 90px;
    min-width: 90px;
    margin-left: 28px;
}

.track_img img {
    display: block;
}

.radio_channel h5 {
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.radio_channel span {
    color: var(--white);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.radioPlayer .slider {
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    height: 4px;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.radioPlayer .slider .progress {
    background-color: var(--primary-color);
    border-radius: inherit;
    position: absolute;
    pointer-events: none;
    height: inherit;
}

.player_control_wrapper {
    display: flex;
    align-items: center;
}

.player_btn_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.player_play_btn {
    width: 28px;
    height: 28px;
    background-color: #FFF;
    border-radius: 50%;
    margin: 0 10px;
    background-image: url(../images/Play.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.prev_show img,
.next_show img {
    display: block;
}

.player_control {
    width: 100%;
    padding: 0 15px;
}

.current-time,
.duration-time {
    color: #B2B2B2;
    font-family: var(--primary-font);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px;
}

.radio_player_wrap .action-button {
    margin: 0;
    justify-content: flex-end;
}

.create_profile_page .comm_auth_inner {
    padding-left: 0;
    padding-right: 0;
}

.create_profile_page .user_profile_main {
    max-width: 100%;
}

.pick_identity_popup {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    background-color: #0D0D0D;
}

.pick_identity_popup.pop-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.pick_your_identity_slider .owl-stage-outer {
    padding: 20px 0;
}

.pick_your_identity_slider .profile_item {
    transition: 0.3s all;
    opacity: 0.3;
}

.pick_your_identity_slider .owl-item .profile_item:hover,
.pick_your_identity_slider .owl-item.active.center .profile_item {
    transform: scale(1.2);
    opacity: 1;
}

.pick_your_identity_slider .owl-nav {
    position: static;
    margin: 20px auto 0;
    max-width: 100px;
}

.pick_your_identity_slider .owl-nav button.owl-prev,
.pick_your_identity_slider .owl-nav button.owl-next {
    border: none;
    background-size: 100%;
    opacity: .5;
}

.pick_your_identity_slider .owl-nav button.owl-prev:hover,
.pick_your_identity_slider .owl-nav button.owl-next:hover {
    opacity: 1;
}

.pick_your_identity_slider .owl-nav button.owl-prev {
    background-image: url(../images/identity_slider_prev.svg);
}

.pick_your_identity_slider .owl-nav button.owl-next {
    background-image: url(../images/identity_slider_next.svg);
}


.iti__flag-container .iti__arrow--up {
    border: none;
}

.iti__dial-code {
    color: #999;
    padding: 0 5px;
    direction: ltr;
}

.iti__divider {
    display: none;
}

.body-hidden {
    overflow: hidden;
}

.show_in_mobile {
    display: none;
}

img.lozad {
    font-size: 0;
}


.lozad {
    opacity: 0;
    filter: blur(15px);
    transition: all 0.5s ease;
}

[data-loaded="true"] {
    opacity: 1;
    filter: unset;
    transition-delay: 0.3s;
}

.body-hidden {
    overflow: hidden;
}

.items .top_img {
    position: absolute;
    right: 0;
    top: 0;
}

.items .top_img {
    position: absolute;
    right: 10px;
    top: 0;
    z-index: 1;
}

.items .top_img img {
    height: auto;
    width: auto;
}

.most-watch-sec {
    overflow: hidden;
}

.most-watch-carousel .owl-stage-outer {
    overflow: visible;
}

.most-watch-carousel.owl-carousel {
    padding-top: 6px;
    padding-left: 31.3%;
}


.top_ten .advanced_movie_slider .show-item .items {
    width: 20.278vw;
}

.top_ten .show-item .img-wrappper {
    max-height: 28.403vw;
    min-height: 28.403vw;
}

.top_ten .advanced_movie_slider .show-item .items:hover {
    width: 50.494vw;
}

.radio_show_listing {
    margin-top: -100px;
    z-index: 2;
}

.radio_show_listing .drop-down-wrap {
    margin-bottom: 70px;
}

.show_listing .slider:not(.owl-carousel) {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.show_listing .slider>.items {
    width: 25%;
    padding: 0 10px;
    margin-bottom: 45px;
}

.show_filter {
    margin: 0 0 40px;
    position: relative;
}

.show_filter .wrapper-dropdown {
    min-width: 152px;
}

.show_wrap {
    z-index: 1;
    min-height: 400px;
}

.show_wrap .tab-menu {
    margin-bottom: 48px;
}

.tab-menu ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.tab-menu ul li:not(:last-child) {
    margin-left: 10px;
}

.tab-menu ul li {
    padding-bottom: 20px;
}

.tab-menu ul>li>a {
    color: var(--white);
    background-color: transparent;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    position: relative;
    padding: 13px 15px;
    min-width: 152px;
    text-align: center;
    border-radius: var(--button-border-raduis);
}

.tab-menu ul>li>a.active {
    background-color: var(--secondary-color);
}


.show_content {
    margin-top: 25px;
    position: relative;
}

.show_listing.featured_slider_wrap .show_content {
    margin-top: 16px;
    max-width: 280px;
}

.show_content .action-button {
    position: absolute;
    left: 10px;
    right: auto;
    top: 0;
    margin: 0;
    display: block;
}

.show_content .action-button .common_icon_box {
    height: 28px;
    width: 28px;
    margin: 0;
}

.show_content .btn_share ul.social-share {
    width: 38px;
}

.show_content h3 {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 126%;
    margin: 0 0 8px;
}

.show_content p {
    color: var(--white);
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    margin: 0;
    word-wrap: break-word;

    display: -webkit-box;
    -webkit-line-clamp: 3;   /* show max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.play-episode-sec {
    padding-bottom: 0 !important;
    padding-top: 0;
    position: relative;
}

.fullpage-video.play-episode-sec .play-episode-box {
    max-width: 100%;
    /* padding-top: 100vh; */
    margin: 0 auto;
    height: 100vh;
}

.fullpage-video.play-episode-sec .play-episode-box iframe {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

.play-episode-box>iframe,
.play-episode-box>img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
}

.btn-skip {
    max-width: 93.4%;
    margin: 0 auto;
    position: absolute;
    bottom: 90px;
    z-index: 2;
}

.btn-skip>a {
    background-color: var(--white-10);
    padding: 14px 20px;
    font-size: 14px;
}

.btn-skip>a:hover {
    background-color: var(--yellow);
    color: var(--black);
}

.radio-listimg.listing-sec {
    padding-top: 120px;
}

.faq-sec {
    padding-top: 160px;
    padding-bottom: 0;
}

.faq-sec+.faq-sec {
    padding-top: 0;
}

.faq-sec h2 {
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
}

.faq-sec h1+h2 {
    margin-bottom: 30px;
}

.registration-success .success_icon,
.registration-failure .success_icon {
    margin-bottom: 40px;
}

.registration-failure h2,
.registration-success h2 {
    color: var(--primary-color);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    max-width: 250px;
    margin: 0 auto 40px;
}

.registration-failure .pop-up-content-wrap p {
    max-width: 270px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 auto;
}

.my-favorites-sec {
    padding-top: 160px;
}

/*.subscribe-popup .custom-model-inner{
    position: static;
    transform: unset;
}
.subscribe-popup .custom-model-wrap{
    max-height: unset;
}*/
.pop-up-content-wrap .pop-up-content-inner {
    max-width: 290px;
    margin: 0 auto 60px;
}

.subscribe-popup .pop-up-content-wrap h2 {
    color: #FEFEFE;
    font-weight: 400;
    font-size: 25px;
    line-height: 28px;
    letter-spacing: 0.5%;
    text-align: center;
}

.subscribe-popup .form-group-wrapper {
    margin-bottom: 25px;
}

.subscribe-popup .pop-up-content-wrap p {
    color: var(--primary-color);
    font-size: 12px;
    line-height: 100%;
}

.video_episode_box {
    border-radius: 6px;
    border: 0px solid #FFC700;
    background: rgba(255, 255, 255, 0.10);
    position: absolute;
    bottom: 170px;
    z-index: 22;
    padding: 6px;
    max-width: 395px;
    width: 100%;
    padding-left: 30px;
    visibility: visible;
    pointer-events: auto;
}

.hide-header .video_episode_box,
.hide-header .fullpage-video .btn-skip {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-play .transparent-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
}

.video_episode-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.video_episode_box .video_episode_img {
    width: 195px;
    border-radius: 6px;
    overflow: hidden;
}

.video_episode_box .video_episode_content {
    width: calc(100% - 195px);
    border-radius: 6px;
    overflow: hidden;
    padding-right: 16px;
}

.btn-skip {
    display: flex;
    flex-wrap: wrap;
}

.btn-skip .btn_outline:not(:last-child) {
    margin-left: 16px;
}

/*.hide-header .transparent-overlay{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
}*/
/* START CATCHUP PAGE code */
.inner-dropdown>a {
    position: relative;
    display: flex;
    align-items: baseline;
}

.inner-dropdown>a::after {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url("../images/down_arrow.svg");
    transition: 0.3s all;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 12px;
    margin-top: 5px;
}

.inner-sub-menu li {
    width: 100%;
}

.inner-dropdown .inner-sub-menu {
    overflow: hidden;
    transition: unset;
    display: none;
}

.nav .sub-menu .inner-dropdown.open>a {
    /* background-color: #383838;*/
    color: var(--white);
}

.inner-dropdown .inner-sub-menu.active {
    max-height: 138px;
    overflow-y: auto;
}

.inner-sub-menu li>a {
    width: 100%;
}

.nav .sub-menu li.has-dropdown.open>a {
    color: var(--yellow);
}

/* END CATCHUP PAGE CODE */


/* SINGLE INNER BANNER CODE */
.inner-single-banner .HeroSlider .HeroSlider-info {
    padding-left: 3.295%;
    padding-right: 3.295%;
    bottom: 100px;
    z-index: 5;
}

.inner-single-banner .btn.play {
    min-width: 164px;
}

.inner-single-banner .HeroSlider-info .inner_wrap .logo {
    margin-bottom: 30px;
}

.inner-single-banner .HeroSlider-info .inner_wrap h2 {
    margin-bottom: 15px;
}

/* END INNER BANNER CODE */



/* START VERTICAL SLIDER CODE */
.catchup-vertical-slider {
    position: absolute;
    bottom: 65px;
    left: -207px;
    z-index: 2;
    width: 100%;
    max-width: 255px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    max-height: calc(100vh - 163px);
}

.open-drawer.catchup-vertical-slider {
    left: 0px;
}

.vertical-wrapper {
    padding: 68px 48px 0 48px;
    border-radius: 0 30px 0 0;
    background-color: var(--bg-color);
    position: relative;
}

.close-back {
    position: absolute;
    top: 22px;
    right: 16px;
    transition: all 0.5s ease;
}

.open-drawer .close-back {
    right: 22px;
}

.close-back a {
    display: flex;
    width: 30px;
    height: 30px;
    position: relative;
    justify-content: center;
}

.close-back img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 13px;
    height: 13px;
    object-fit: contain;
}

.close-back img.back-icon {
    object-position: right;
}

.open-drawer .close-back img.back-icon,
.close-back img.close-icon {
    opacity: 0;
}

.open-drawer .close-back img.close-icon {
    opacity: 1;
}

.catchup-vertical-slider .item a {
    display: block;
    width: 100%;
}

.catchup-vertical-slider .img-wrapper {
    width: 100%;
}

.catchup-vertical-slider .img-wrapper .img-wrap {
    position: relative;
    padding-top: 57.25%;
    overflow: hidden;
    width: 100%;
    border-radius: var(--form-input-border-radius);
    background-color: var(--white);
}

.catchup-vertical-slider .img-wrapper .img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vertical-slider.slick-vertical .slick-slide {
    border-width: 3px 0;
}

.vertical-slider.slick-vertical .slick-slide>div {
    display: flex;
}

/* END VERTICAL SLIDER CODE */


/* START LISTING SECTION CODE */
section.listing-sec {
    padding-top: 60px;
    z-index: 2;
}

.listing-sec .drop-down-wrap {
    transform: translateY(-127px);
    width: auto;
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
    z-index: 2;
}

/* END LISTING SECTION CODE */


section.kids_sec {
    padding-bottom: 15px;
}

.load_more_btn {
    text-align: center;
}

.show_listing .show-listing-box li.show-item {
    width: calc(16.66% - 20px);
}

.show-listing-sec .advanced_movie_slider .show-item .items:hover {
    width: 14.31vw;
}

.show-listing-sec .advanced_movie_slider.slider.movies li>.items .vertical_thumbnails {
    width: 14.31vw;
    right: 0;
    left: auto;
}

.show-listing-sec .vertical_thumbnails .img-wrap {
    border-radius: var(--show-card-border-radius);
}

.show-listing-sec .advanced_movie_slider.slider.movies li>.items:hover .vertical_thumbnails {
    width: 35.556vw;
}

.show_listing .show-listing-box li.show-item:hover {
    overflow: visible;
    z-index: 2;
}

.show_listing .show-listing-box li.show-item:hover .items>.top_img,
.show_listing .show-listing-box li.show-item:hover .items>.badge_labels,
.show_listing .show-listing-box li.show-item:hover .items>.top_img+.badge_labels {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.show-listing-sec .advanced_movie_slider.slider.movies .show-item:nth-child(6n-1) .items .vertical_thumbnails,
.show-listing-sec .advanced_movie_slider.slider.movies .show-item:nth-child(6n) .items .vertical_thumbnails {
    left: 0;
    right: auto;
}

.search_wrap .loading {
    width: 32px;
    line-height: 100%;
    margin: 0 auto;
    position: relative;
    top: 30px;
    display: none;
}


.d-none {
    display: none !important;
}

.input.btn {
    width: 226px;
}

.go_back_modal:before {
    position: fixed;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.go_back_modal.popup-show:before {
    opacity: 1;
    visibility: visible;
}

.go_back_modal .modal-inner {
    max-width: 715px;
    border-radius: 20px;
    background: #0D0D0D;
    position: fixed;
    overflow-x: hidden;
    overflow-y: auto;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    z-index: 2;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
}

.go_back_modal.popup-show .modal-inner {
    opacity: 1;
    visibility: visible;
}

.go_back_modal .bottom_btn_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.go_back_modal .back_btn:before {
    display: none;
}

.go_back_modal .back_btn {
    margin-right: 20px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    top: 10px;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-prev {
    background-image: url(../images/left_arrow.svg);
    transform: unset;
    left: 2px;
    right: auto;
}

.ui-datepicker .ui-datepicker-next {
    background-image: url(../images/right_arrow.svg);
    right: 2px;
    left: auto;
    transform: unset;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
    left: 2px;
    right: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
    right: 2px;
    left: auto;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    width: auto;
    border: none;
    -webkit-appearance: none;
    background: transparent;
    color: #fff;
    background-image: url(../images/down_arrow.svg);
    background-repeat: no-repeat;
    background-position: right;
}

:disabled,
a:disabled,
input:disabled,
input.default_btn:disabled,
[disabled="disabled"] {
    opacity: .5;
    pointer-events: none;
}

section.ltr {
    direction: ltr;
}

.video_header {
    position: absolute;
    top: 0;
    z-index: 2;
    width: 100%;
    padding: 42px 0;
}

.video_info_inner_wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.video_info_inner_wrap .logo {
    width: 150px;
}

.video_info_inner_wrap .logo img {
    display: block;
    height: auto;
    width: 100%;
}

.video_header .action-button {
    margin-top: 0;
    justify-content: flex-end;
}

.video_header .btn_share ul.social-share {
    top: auto;
    bottom: -142px;
}

.video_header .btn_share .social-share:after {
    top: -28px;
    bottom: auto;
}

.video_show_name {
    transition: 0.5s all;
    text-align: right;
}

.v_desc_hide .video_show_name {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video_show_name h2 {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0%;
    margin: 0 0 15px;
}

.video_show_name .ep_no {
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.hide-header .video_info_inner_wrap,
.hide-header .video_show_name {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-btn-wrapper {
    position: absolute;
    width: 100%;
    right: 0;
    left: auto;
    bottom: 135px;
}

.video-btn-wrapper-cover {
    display: flex;
    align-items: center;
    gap: 10px;
}

.show_on_mobile {
    display: none;
}

.video_info_inner_wrap .logo_wrap {
    display: flex;
    align-items: center;
}

.vid_back_btn {
    margin-right: 20px;
}

.vid_back_btn>a {
    background-color: var(--bg-color);
    border: 1px solid var(--secondary-color);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.vid_back_btn>a:hover {
    background-color: var(--secondary-color);
}

.vid_back_btn>a:hover svg path {
    fill: var(--white);
}

.vid_back_btn>a svg {
    max-width: 24px;
}

.trash_icon {
    margin-left: 0;
    background-color: rgba(34, 34, 34, 0.50);
    border: 1px solid var(--yellow);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%) scale(0);
    transition: 0.3s all;
}

.featur-slide:hover .trash_icon {
    transform: translateY(-50%) scale(1);
}

.trash_icon svg {
    max-width: 24px;
    display: block;
}

.trash_icon:hover {
    background-color: var(--yellow);
}

.trash_icon:hover svg path {
    fill: var(--black);
}

.vid_back_outer {
    position: absolute;
    width: calc(100% - 120px);
    top: 25px;
    z-index: 1;
    left: 0;
    right: 0;
    margin: 0 auto;
    direction: ltr;
}

.vid_back_outer .vid_back_btn {
    margin-right: 0;
}

/*.broadcast_sec .f_show_img {
    background-color: var(--white);
}
.broadcast_sec .f_show_img > img{
    object-fit: contain;
}*/
.error {
    color: var(--red) !important;
}

.contact-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 15px;
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group .btn {
    margin: 0 auto;
    display: block;
}

.contact-form .form-group input[type=submit] {
    width: auto;
    display: block;
    margin: 0 auto;
}

.title_filter_wrap .tab-menu {
    width: calc(100% - 100px);
}

.title_filter_wrap .tab-menu .container {
    margin-left: 0;
    margin-right: 0;
}

.contact-form .form-group input[type=tel] {
    text-align: right;
}

.action-btn.center {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.HeroSlider-iframe>p,
.HeroSlider-img>p {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    max-width: calc(100% - 100px);
    margin: 0 auto;
    top: 50px;
    font-size: 24px;
    line-height: 110%;
    z-index: 2;
}

.remove_background_class {
    background-color: #000000 !important;
}

.contact-form .g-recaptcha {
    margin-bottom: 30px;
}

.footer-app-links {
    display: flex;
    align-items: center;
    margin-top: 43px;
}

.footer-app-links a {
    margin: 0 8px;
    display: flex;
    height: 52px;
    /* overflow: hidden; */
    /* border-radius: 8px; */
}

.footer-app-links a img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.iti__country-list .iti__country.iti__preferred {
    display: none;
}

.inner-single-banner img.mobile-banner,
.inner_banner img.mobile-banner {
    display: none;
}

.force_login .comm_auth_title {
    margin-bottom: 20px;
}

.force_login .btn_wrap {
    padding-top: 30px;
}

.force_login .btn_wrap .default_btn {
    margin: 0 5px;
}

.search_result h1 {
    font-size: 30px;
    margin-bottom: 18px;
}

.slider-banner .HeroSliderNav .owl-stage-outer {
    padding: 10px 0;
}

.slider-banner .HeroSliderNav .owl-stage-outer>* {
    pointer-events: auto;
}

.HeroSlider .owl-stage.single {
    -webkit-transform: translate3d(0px, 0px, 0px) !important;
    transform: translate3d(0px, 0px, 0px) !important;
}

.HeroSlider .hide-caption .HeroSlider-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(360deg, #161616 0%, rgba(22, 22, 22, 0) 100%);
    z-index: 5;
}

.hero-section.inner-single-banner .hide-caption .HeroSlider-img::before {
    z-index: 5;
}

.HeroSlider .hide-caption .HeroSlider-info {
    z-index: 5;
}

.reaction_bar {
    position: relative;
    z-index: 2;
    pointer-events: auto;
    display: flex;
    align-items: center;
    padding-top: 65px;
}

.reaction_bar .rated {
    margin-left: 35px;
}

.reaction_bar .has_tooltip>a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    position: relative;
}

.reaction_bar .has_tooltip>a svg,
.reaction_bar .has_tooltip>a svg path {
    fill: #FFF;
}

.reaction_bar .has_tooltip.active>a svg,
.reaction_bar .has_tooltip.active>a svg path {
    fill: #000000;
}

.reaction_bar .has_tooltip.active>a {
    background-color: #fff;
}

.tool_tip_msg {
    position: absolute;
    top: -48px;
    width: 70px;
    flex-shrink: 0;
    background-color: #fff;
    border-radius: 6px;
    text-align: center;
    padding: 6px 10px;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all;
}

.tool_tip_msg_lg {
    width: 100px !important;
}

.reaction_bar .has_tooltip:hover .tool_tip_msg,
.has_tooltip.active .tool_tip_msg {
    opacity: 1;
    visibility: visible;
    transform: unset;
}

.tool_tip_msg:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #FFF;
    bottom: -7px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.tool_tip_msg p {
    margin: 0;
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.reaction_bar .like {
    margin-left: 35px;
}

.reaction_bar a>svg {
    display: block;
    max-width: 16px;
}


.HeroSlider-info .short-title {
    margin-bottom: 30px;
}

.HeroSlider-info .short-title p {
    font-size: 22px;
    font-weight: 400;
    line-height: 125%;
    position: relative;
    padding-right: 25px;
    margin-bottom: 0;
}

.HeroSlider-info .short-title p:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 5px;
    background: #FEC20D;
    right: 0;
    left: auto;
    border-radius: 5px;
}

.continue_watching .action-div.action-button {
    bottom: 60px;
}

.resume-close {
    opacity: 0;
    visibility: hidden;
    text-align: center;
}

.featur-slide:hover .resume-close {
    opacity: 1;
    visibility: visible;
}

.continue_watching .featur-slide:hover .f_show_img {
    transform: scale(1.05) translateY(-20px);
}

.continue_watching .featur-slide:hover .action-div.action-button {
    bottom: 80px;
}

.resume-close img {
    max-width: 16px;
    margin: 0 auto;
}

.hero_top_img {
    margin-bottom: 10px;
}

.hero_top_img img {
    width: auto !important;
    display: block;
    margin: unset;
}

.fullpage-video .reaction_bar {
    position: absolute;
    bottom: 80px;
    padding: 0;
    right: 90px;
    z-index: 3;
}



/*Rent Page CSS Start*/

.rent_badge_wrapper {
    display: flex;
    align-items: center;
}

.rent_badge_wrapper *+* {
    margin-right: 15px;
}

.rent_badge {
    background: var(--yellow);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    color: #1E1E1E;
    display: flex;
    width: max-content;
    padding: 5px 12px;
    flex-direction: row-reverse;
}

.new_badge {
    background: var(--yellow);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    color: #1E1E1E;
    padding: 6px 15px;
    display: inline-block;
    vertical-align: top;
}

.rent_badge img {
    max-width: 20px;
    margin-left: 6px;
}

.rent-popup {
    direction: ltr;
}

.rent-popup .custom-model-inner {
    background: #222222E5;
    max-width: 676px;
    position: absolute;
}

.rent-popup .pop-up-content-wrap h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    text-align: center;
    color: #D9D9D9;
    margin-bottom: 15px;
}

.rent-popup .pop-up-content-wrap p {
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    text-align: center;
    color: #D9D9D9;
}

.rent-popup .seasons_price {
    max-width: 365px;
    width: 100%;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.rent-popup .btn_outline {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    padding: 10px 15px;
    min-height: 38px;
    background-color: #222222;
    margin-right: 7px;
    margin-bottom: 7px;
}

.rent-popup .seasons_price .btn_outline {
    width: calc(33.33% - 10px);
}

.rent-popup .btn_outline:hover,
.rent-popup .btn_outline.selected {
    color: #222222;
    background-color: var(--yellow);
}

.rent-popup .btn_outline:nth-child(3n) {
    margin-right: 0;
}

.rent-popup .btn_wrapper .btn_outline:last-child {
    margin-right: 0;
}

.seasons_text {
    max-width: 200px;
    width: 100%;
    margin: 0 auto 30px;
}

.rent-popup ul {
    padding-left: 30px;
}

.rent-popup ul li {
    color: #D9D9D9;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 4px;
    text-align: left;
    list-style: disc;
}

.rent-popup ul li:last-child {
    margin-bottom: 0;
}


.items .rent_icon,
.vertical-slider .item .rent_icon {
    position: absolute;
    top: 11px;
    z-index: 1;
    left: 14px;
    right: auto;
    background-color: var(--yellow);
    border-radius: 100px;
    min-width: 44px;
    min-height: 22px;
    padding: 4px 10px;
}

.vertical-slider .item .rent_icon {
    top: 7px;
    left: 7px;
}

.vertical-slider .item .rent_icon img,
.items .rent_icon img {
    max-width: 15px;
    margin: 0 auto;
    display: block;
}

.show_listing .items .rent_icon {
    border: 1px solid var(--yellow);
    background-color: #22222280;
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    top: auto;
    left: 16px;
    bottom: 16px;
}

.show_listing .items .rent_icon img {
    max-width: 18px;
    filter: brightness(1) invert(1);
}




.pay_now .comm_auth_inner {
    padding: 45px 0;
    background-color: #222222;
    border-radius: 20px;
    max-width: 960px;
    margin: 0 auto;
    color: #FFFFFF;
}

.pay_now .comm_auth_inner .btn,
.pay_now .comm_auth_inner .btn_wrap .btn {
    min-width: unset;
}

.pay_now_title {
    margin-bottom: 30px;
}

.pay_now_title h2 {
    font-size: 45px;
    font-weight: 400;
    line-height: 54px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.pay_now_title p {
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.005em;
    text-align: center;
    color: #B0B0B3;
}

.currency_wrapper {
    text-align: center;
}

.currency_wrapper .currency_btn {
    display: inline-block;
    vertical-align: top;
}

.currency_wrapper .currency_btn+.currency_btn {
    margin-right: 8px;
}

.currency_btn [type="radio"] {
    display: none;
}

.currency_btn [type="radio"]:checked+label,
.currency_btn [type="radio"]:not(:checked)+label {
    background-color: #FFFFFF;
    border: 1px solid var(--yellow);
    color: #222222;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    text-align: center;
    padding: 9px 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
}

.currency_btn [type="radio"]:checked+label {
    background-color: var(--yellow);
}

.payment_method {
    padding: 70px 0 0 0;
}

.personal_details {
    padding: 50px 0 0;
}

.personal_details h3 {
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
    text-align: center;
    margin-bottom: 20px;
}

.personal_detail_wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: 480px;
    margin: 0 auto;
    direction: ltr;
}

.personal_detail_wrapper .form-group {
    width: 50%;
    padding: 0 6px;
}

.featured-slider-sec.top_ten_slider .container {
    max-width: 100%;
    padding-right: 3.2%;
}

.featured-slider-sec.top_ten_slider .sec_title {
    padding-left: 3.2%;
}

.top_ten_slider .featured_slider_wrap {
    padding: 0;
    margin: 0;
}

.top-ten-carousel .owl-stage-outer {
    overflow: visible;
}

.top-ten-carousel .featur-slide>a {
    display: flex;
    align-items: flex-end;
    flex-direction: row-reverse;
}

.top-ten-carousel .f_show_img {
    width: 100%;
    padding-bottom: 44.195%;
    border-radius: var(--show-card-border-radius);
    box-shadow: -2px 2px 50px 0px #000000B2;
}

.top-ten-carousel .items .top_img {
    position: unset;
    z-index: -1;
    margin-right: -20px;
}

.celebrity-work-carousel .owl-stage {
    display: flex;
    align-items: flex-end;
    padding: 7px 0;
}

.celebrity-work-carousel .f_show_img {
    /* padding-bottom: 100%; */
    border: unset;
    background-color: unset;
}

.celebrity-work-carousel .f_show_img::after {
    display: none;
}

/* .celebrity-work-carousel .f_show_img img {
    position: unset;
} */

.celebrity-work-carousel .featur-slide:hover .f_show_img {
    border: none;
}

.celebrity-work-carousel .f_show_img:before {
    display: none;
}

.celebrity-work-carousel .featur-slide:hover .f_show_img {
    transform: scale(1.06);
}

.movie-wrapper > a{
    display: block;
    width: 100%;
}
.movies-sec .movie-bg-img {
    position: relative;
    width: 100%;
    padding-top: 30.7%;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.movies-sec .movie-bg-img::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 1;
}

.movies-sec .movie-bg-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.movie-wrapper {
    position: relative;
}

.movie-content {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    bottom: 35px;
    padding: 0 15px;
    pointer-events: none;
}

.movie-content .name {
    margin-bottom: 18px;
}

.movie-content .name h3 {
    font-weight: 400;
    font-size: 42px;
    line-height: 132%;
    margin: 0 0 10px;
}

.movie-content .name img {
    max-width: 295px;
}

.movie-content .inspired-by {
    max-width: 660px;
    margin: 0 auto;
}

.movie-content .inspired-by p {
    font-weight: 400;
    font-size: 16px;
    line-height: 126%;
    letter-spacing: 0%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-content .movie_category {
    margin-top: 15px;
}

.movie-content .movie_category span {
    background-color: #FEC20D;
    color: var(--black);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    display: inline-block;
    padding: 6px 9px;
    border-radius: var(--button-border-raduis);
}

.movie-content .action-button {
    justify-content: center;
    margin-top: 35px;
}

.movie-content .action-button .common_icon_box {
    background-color: var(--secondary-color);
}

.movie-content .action-button .common_icon_box:hover {
    background-color: var(--hover-color);
}

.movie-carousel .owl-dots {
    top: -25px;
    bottom: auto;
    left: 0;
    right: auto;
    max-width: unset;
    padding: 0;
    justify-content: flex-end;
}

.korean-shows-sec .advanced_movie_slider .show-item .items {
    width: 16.928vw;
}

.korean-shows-sec .advanced_movie_slider .show-item .img-wrappper {
    max-height: 25.391vw;
    min-height: 25.391vw;
}

.korean-shows-sec .advanced_movie_slider .show-item .items:hover {
    width: 45.54vw;
    transition-delay: 0.6s;
}

.show_listing.cast-listing .slider:not(.owl-carousel) {
    margin: 0 -6px;
}

.show_listing.cast-listing .slider>.items {
    width: 20%;
    padding: 0 6px;
    margin-bottom: 45px;
}

/* .cast-listing .f_show_img:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    z-index: 1;
    background: linear-gradient(180deg, #580C1E 0%, #951939 100%);
    top: 0;
    opacity: .45;
    pointer-events: none;
    visibility: visible;
}

.cast-listing .featur-slide:hover .f_show_img:before {
    opacity: .45;
} */

.show_listing .slider:not(.owl-carousel) {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.show_listing .show-listing-box li.show-item {
    width: calc(16.66% - 20px);
    margin-bottom: 35px;
}

.show_listing .show-listing-box.advanced_movie_slider .show-item .items {
    width: 100%;
}

.show_listing .show-listing-box li.show-item .img-wrappper {
    min-height: unset;
    max-height: unset;
    position: relative;
    padding-bottom: 150%;
}

.show_listing .show-listing-box li.show-item .img-wrappper img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    object-fit: cover;
}

.subscription-sec {
    padding: 200px 0 70px;
}

.pricing-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.plan-box {
    display: flex;
    flex-direction: row-reverse;
    overflow: hidden;
    margin-bottom: 22px;
}

.plan-content {
    background-color: var(--white);
    border-radius: 4px;
    flex: 1;
    padding: 30px;
    text-align: right;
    color: var(--black);
}

.plan-content h2 {
    color: var(--black);
    font-weight: 800;
    font-size: 33px;
    line-height: 100%;
    margin: 0 0 15px;
}

.plan-content h3 {
    color: #1A1A1A;
    font-weight: 800;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0%;
    margin: 0 0 12px;
    direction: ltr;
}

.plan-content h3 span {
    font-size: 20px;
}

.plan-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    color: #222;
}

.plan-content ul li {
    color: var(--black);
    font-weight: 400;
    font-size: 14px;
    line-height: 180%;
    position: relative;
    margin-bottom: 5px;
    padding-left: 30px;
}

.plan-content ul li::before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    top: 10px;
    left: 0;
    right: auto;
    background-image: url(../images/tick-icon.svg);
    background-repeat: no-repeat;
}

.plan-box .plan-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    max-width: 404px;
    width: 100%;
}

.plan-box .plan-image .app-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    left: auto;
    z-index: 2;
    max-width: 92px;
    width: 100%;
}

.plan-box .plan-image::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(360deg, #161616 0%, rgba(22, 22, 22, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.plan-box .plan-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.plan-content .btn.subscribe-btn {
    min-width: 143px;
}

.voucher-section {
    margin-top: 55px;
}

.voucher-section .voucher-inner {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 34px 30px;
    border-radius: 4px;
    gap: 38px;
    direction: ltr;
}

.voucher-txt {
    max-width: 250px;
    width: 100%;
}

.voucher-txt h3 {
    color: var(--black);
    font-weight: 800;
    font-size: 33px;
    line-height: 100%;
    margin: 0 0 10px;
}

.voucher-txt p {
    color: #1A1A1A;
    font-weight: 800;
    font-size: 20px;
    line-height: 100%;
    margin: 0;
}

.voucher-input-box {
    width: 100%;
    display: flex;
    gap: 8px;
}
.voucher-input-box form {
    width: 100%;
}
.voucher-input-box .otp_msg_box {
    padding-top: 12px;
}
.voucher-input-box input {
    background-color: #DFDEDE;
    border: 1px solid var(--black);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--black);
    padding: 3px 15px;
    min-height: 38px;
    width: 100%;
}

.voucher-input-box input:first-child {
    max-width: 340px;
    /* max-width: 196px; */
}

.voucher-input-box input::placeholder {
    color: #848282;
}

.redeem-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    cursor: pointer;
    padding: 11px 22px;
}

.redeem-btn:hover {
    background-color: var(--hover-color);
}

.featured-carousel .featur-slide .action-div.action-button {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    justify-content: center;
}

.featured-carousel .featur-slide .action-button .common_icon_box {
    background-color: var(--secondary-color);
}

.HeroSlider-info .season-level {
    margin-bottom: 25px;
}

.HeroSlider-info .season-level span {
    background-color: #FEC20D;
    color: var(--black);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    vertical-align: middle;
    display: inline-block;
    border-radius: var(--button-border-raduis);
    /*padding: 5px 10px;*/
    padding: 5px 10px 8px 10px;;
}

.HeroSlider-info .season-level span+* {
    margin-right: 6px;
}

.subscriptions-page {
    margin-bottom: 100px;
}

.subscriptions-wrapper {
    max-width: 790px;
    margin: 0 auto;
}

.subscription-title {
    margin: 0 0 80px;
    text-align: center;
}

.subscription-title h2 {
    font-weight: 400;
    font-size: 45px;
    line-height: 72px;
    margin: 0 0 10px;

}

.subscription-title p {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    margin: 0;
}

.subscription-card {
    background-color: var(--white);
    color: var(--black);
    border-radius: var(--button-border-raduis);
    padding: 18px 25px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.subscriptions-page .subscription-card .plan-info {
    width: calc(100% - 190px);
}
.payment-history.subscription-card {
    padding: 65px 18px;
}

.plan-info h3 {
    color: var(--black);
    font-weight: 800;
    font-size: 26px;
    line-height: 100%;
    margin: 0 0 5px;
}

.plan-info p {
    color: #1A1A1A;
    font-weight: 800;
    font-size: 24px;
    line-height: 100%;
    direction: ltr;
    text-align: right;
}

.plan-info p span {
    font-size: 16px;
}


.payment-method h3,
.payment-history h3 {
    color: var(--black);
    font-weight: 400;
    font-size: 25px;
    line-height: 100%;
    margin: 0 0 25px;
    width: 100%;
}

.payment-select {
    border: 1px solid #D9D9D9;
    padding: 5px 18px;
    max-width: 526px;
    width: 100%;
    border-radius: var(--button-border-raduis);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.payment-select .card-info {
    display: flex;
    align-items: center;
}

.payment-select .card-info img {
    display: block;
    margin: 0;
}

.payment-select span:not(.card-info) {
    background-image: url(../images/down_arrow-black.svg);
    background-position: right center;
    background-repeat: no-repeat;
    padding-right: 20px;
}

.payment-method .note {
    color: #757575;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0 0;
}

.payment-method .note img {
    display: block;
    min-width: 18px;
    width: 18px;
}

.payment-history table {
    width: 100%;
    border-collapse: separate;
    margin-top: 10px;
    border-spacing: 0 6px;
}

.payment-history th,
.payment-history td {
    font-family: var(--primary-font);
    color: var(--black);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    padding: 15px 55px;
    text-align: right;
}

.payment-history td {
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    padding: 18px 55px;
}

.payment-history tr td:first-child {
    border-right: 1px solid #D9D9D9;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.payment-history tr th:last-child {
    text-align: center;
}

.payment-history tr td:last-child {
    border-left: 1px solid #D9D9D9;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    text-align: center;
}

.payment-history td .card-info {
    display: flex;
    align-items: center;
}

.payment-history td .card-info img {
    display: block;
    width: auto;
    margin: 0;
}

.download.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.my-history-sec {
    padding: 130px 0 0;
}

.show-history-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.show-history-list .show-item {
    width: 16.66%;
    padding: 0 12px;
    margin-bottom: 35px;
}

.show-history-list .show-item .img-wrappper {
    max-height: unset;
    min-height: unset;
    padding: 0;
    transition: 0.5s ease all;
}

.show-history-list .show-item .img-wrappper img {
    aspect-ratio: 199 / 299;
    position: unset;
    height: auto;
}

.show-history-list .items {
    position: relative;
}

.show-history-list .show-item:hover .img-wrappper {
    transform: scale(1.07);
}

.show-history-list .items .list_dlt {
    height: 40px;
    width: 40px;
    border-radius: var(--button-border-raduis);
    position: absolute;
    top: 50%;
    overflow: hidden;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%) scale(0);
    transition: 0.5s all ease;
}

.show-history-list .items:hover .list_dlt {
    transform: translateY(-50%) scale(1);
}

.show-history-list .items .list_dlt>a {
    height: 100%;
    width: 100%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.show-history-list .items .list_dlt>a:hover {
    background-color: var(--secondary-color);
}

.show-history-list .items .list_dlt>a img {
    display: block;
}

.show-feature-wrapper {
    position: relative;
}

.show-feature-wrapper .HeroSlider-info {
    position: absolute;
    top: 100px;
    padding: 0 3.2%;
    z-index: 2;
    /*right: 0;*/
    /*left: auto;*/
}

.show-hero-banner {
    position: relative;
    padding-bottom: 560px;
}

.show-hero-banner::before {
    position: absolute;
    content: "";
    bottom: 0;
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(22, 22, 22, 0) 0%, #161616 100%);
    pointer-events: none;
    z-index: 1;
}

.show-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    display: block;
}

.show-feature-wrapper .HeroSlider-info .description {
    max-width: 321px;
}

.show-episodes-carousel .show-item a {
    display: block;
    width: 100%;
}

.feature-episode-wrapper {
    padding-right: 3.2%;
    margin-top: -100px;
    z-index: 2;
    position: relative;
    padding-left: 3.2%;
}

.feature-episode-wrapper .sec_title {
    margin-bottom: 40px;
}

.show-episodes-carousel {
    /*padding-left: 12%;*/
}

.show-episodes-carousel .owl-stage-outer {
    overflow: visible;
}

.show-episodes-carousel .img-wrap {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid transparent;
    background-color: var(----white-10);
}

.show-episodes-carousel .item.info:hover .img-wrap {
    border: 1px solid var(--white);
}

.show-episodes-carousel .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    display: block;
}

.current_device {
    border: solid 1px white;
}

section.device_mgmt {
    margin-bottom: 30px;
}


.show-ep-wrap .episode-no-wrap span {
    color: var(--black);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    display: block;
    margin: 0 0 5px;
}

.show-ep-wrap .episode-no-wrap span.time {
    font-weight: 400;
}

.show-ep-wrap {
    display: flex;
    flex-wrap: wrap;
}

.show-ep-wrap .play-progress {
    position: relative;
    max-width: 109px;
    width: 100%;
    margin-right: auto;
    background: #B2B2B2;
    height: 3px;
}

.show-ep-wrap .play-progress .progress {
    height: 3px;
}

.show-episodes-carousel .item>a {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.show-episodes-carousel .item:hover>a {
    transform: translateY(-30px);
}

.show-episodes-carousel .details {
    padding: 15px;
    background-color: #ffff;
    border-radius: 0 0 6px 6px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
    opacity: 0;
    z-index: unset;
    bottom: auto;
    z-index: -1;
    width: 100%;
}

.show-episodes-carousel .item.info:hover .details {
    top: 80%;
    opacity: 1;
    visibility: visible;
    z-index: 0;
}

.show-episodes-carousel .details .desc {
    margin-top: 15px;
}

.show-episodes-carousel .details .desc p {
    color: var(--black);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0%;
    display: -webkit-box;
    -webkit-line-clamp: 3;   /* show max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.device_mgmt_wrapper h1 {
    color: #FEFEFE;
    font-weight: 400;
    font-style: Medium;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0.5%;
    text-align: center;
    margin: 0 0 30px;
}

.device_mgmt_wrapper .desc_txt {
    max-width: 435px;
    margin: 0 auto 35px;
    text-align: center;
}

.device_mgmt_wrapper .desc_txt p {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #B0B0B3;
}

.connected_device_list h2 {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    margin: 0 0 35px;
}

.device_item {
    padding: 22px 24px;
    background-color: #222222;
    border-radius: 4px;
    max-width: 440px;
    margin: 12px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.device_item .device_name {
    width: calc(100% - 60px);
}

.device_item .device_name p {
    font-size: 14px;
    font-weight: 400;
    color: #D9D9D9;
}

.device_item .device_action {
    display: flex;
    align-items: center;
}

.device_action>a {
    display: block;
}

.device_action>a+a {
    margin-right: 15px;
}

.device_action>a img {
    display: block;
    width: 16px;
}

.device_action>a.logout_btn img {
    width: 22px;
}

.device_mgmt .btn_wrap {
    margin-top: 30px;
}

.device_mgmt .btn_wrap .btn_outline {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    display: inline-block;
}

.device_mgmt .btn_wrap .btn_outline+.btn_outline {
    margin-right: 10px;
}

.device_mgmt .pop-up-content-wrap h2 {
    font-size: 25px;
    font-weight: 400;
    line-height: 120%;
    text-align: center;
    color: #FEFEFE;
    margin: 0 0 20px;
}

.device_mgmt .pop-up-content-wrap p {
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    text-align: center;
    /*color: #D9D9D9;*/
}

.reached-device-popup h2 {
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
}

.reached-device-popup .confirm_delete_account {
    max-width: 285px;
}

.pop-up-content-wrap .icon {
    width: 24px;
    margin: 0 auto 30px;
}

.pop-up-content-wrap .icon svg {
    display: block;
}


.welcome-noorplay {
    padding-top: 160px;
}

.welcome-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: row-reverse;
}

.welcome-wrapper .left-side {
    width: 100%;
    max-width: calc(100% - 435px);
}

.welcome-wrapper .left-side img {
    display: block;
    width: 100%;
    /*object-fit: cover;*/
    object-fit: contain;
    max-height: 600px;
}

.welcome-wrapper .right-side {
    background-color: #222222E5;
    border-radius: 22px;
    box-shadow: -11.09px 10.3px 36.44px 0px #00000040;
    backdrop-filter: blur(224px);
    padding: 30px 0;
    max-width: 435px;
    width: 100%;
    text-align: center;
}

.welcome-wrapper .right-side .logo-box {
    margin: 0 0 15px;
}

.welcome-wrapper .right-side .logo-box img {
    display: block;
    margin: 0 auto;
    max-width: 170px;
    width: 100%;
}

.welcome-wrapper .right-side h2 {
    color: #FEFEFE;
    font-weight: 400;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0.5%;
    margin: 0 0 30px;
}

.welcome-wrapper .right-side .form-box-wrapper {
    max-width: 226px;
    margin: 0 auto;
}

.welcome-wrapper .right-side .form-box-wrapper p {
    color: var(--white-30);
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    text-align: right;
    margin: 0 0 10px;
}

.welcome-wrapper .checkbox-option {
    margin-bottom: 15px;
}

.welcome-wrapper .checkbox-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white-10);
    padding: 11px 12px;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    color: #fff;
    flex-direction: row-reverse;
}

.welcome-wrapper .checkbox-label .price {
    flex: 1;
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    text-align: left;
}

.welcome-wrapper .checkbox-label .text {
    margin-right: 12px;
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
}

.welcome-wrapper .checkbox-label input[type="radio"] {
    display: none;
}

.welcome-wrapper .custom-checkbox {
    width: 14px;
    height: 14px;
    border: 2px solid #fff;
    border-radius: 2px;
    display: inline-block;
    position: relative;
}

/* Checked style */
.welcome-wrapper .checkbox-label input[type="radio"]:checked+.custom-checkbox {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.welcome-wrapper .checkbox-label input[type="radio"]:checked+.custom-checkbox::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 3px;
    width: 5px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-box-wrapper .form-group {
    margin-bottom: 35px;
}

.welcome-wrapper .disclaimer {
    padding: 20px 18px 0;
    margin-top: 20px;
    border-top: 1px solid #3A3A3A;
}

.welcome-wrapper .disclaimer p {
    color: var(--white);
    font-weight: 400;
    font-size: 10px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 20px;
}

.welcome-wrapper .disclaimer p a {
    color: var(--secondary-color);
    font-size: inherit;
    font-weight: 400;
    line-height: inherit;
    margin-right: 5px;
}

.welcome-wrapper .disclaimer p:last-child {
    margin-bottom: 0;
}

.features-section {
    padding-bottom: 85px;
}

.features-sec-wrap {
    background-color: var(--secondary-color);
    border-radius: 22px;
    padding: 55px 20px;
}

.features-sec-wrap h3 {
    color: #FEFEFE;
    font-weight: 400;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0.5%;
    text-align: center;
    margin-bottom: 80px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    justify-content: center;
}

.feature-item .icon {
    margin-bottom: 10px;
}

.feature-item .icon img {
    display: block;
    max-width: 70px;
    width: 100%;
    min-height: 70px;
    object-fit: contain;
}

.feature-item p {
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    margin: 0;
}

.how-subscibe-wrapper {
    background-color: #202020;
    border-radius: 22px;
    padding: 40px 50px;
}

.subscibe-content h2 {
    color: #FEFEFE;
    font-weight: 400;
    font-size: 25px;
    line-height: 100%;
    letter-spacing: 0.5%;
    margin: 0 0 55px;
    text-align: center;
}

.subscibe-content ol {
    margin-bottom: 55px;
    column-gap: 50px;
    column-count: 3;
}

.subscibe-content ol {
    counter-reset: step;
}

.subscibe-content ol li {
    color: var(--white);
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 25px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.subscibe-content ol li::before {
    content: counter(step);
    counter-increment: step;
    width: 26px;
    min-width: 26px;
    height: 26px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscibe-content ol li:last-child {
    margin-bottom: 0;
}

.subscibe-content .btn-wrap {
    text-align: center;
}

.special-storie-sec .sec_title {
    margin-bottom: 40px;
    justify-content: center;
}

.special-storie-sec .show-episodes-carousel {
    padding-left: 0;
}

.special-storie-sec .show-episodes-carousel .item:hover>a {
    transform: translateY(-16px);
}

.special-storie-sec .show-episodes-carousel .details {
    position: unset;
    top: unset;
    background-color: transparent;
    opacity: 1;
}

.special-storie-sec .show-episodes-carousel .details h3 {
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}

.special-storie-sec .show-episodes-carousel .details .desc {
    opacity: 0;
}

.special-storie-sec .show-episodes-carousel .item.info:hover .details {
    top: unset;
    background-color: var(--white);
    transform: translateY(-22px);
}

.special-storie-sec .show-episodes-carousel .item.info:hover .details .desc {
    opacity: 1;
}

.special-storie-sec .show-episodes-carousel .item.info:hover .details * {
    color: var(--black);
}


.iti--allow-dropdown {
    width: 100%;
}

.form-group-wrapper .iti--separate-dial-code input {
    /* padding: 11px 15px 15px 50px !important; */
    /* background-image: url(../images/mobile_icon.svg); */
    background-repeat: no-repeat;
    background-position: 17px center;
    background-size: 25px;
}

.form-group-wrapper .iti--separate-dial-code.has-mobile input {
    padding-left: 93px !important;
    background-image: unset;
}

.form-group-wrapper .iti--separate-dial-code.has-email input {
    /*background-image: url(../images/email_icon.svg);*/
    background-size: 23px;
    background-position: 17px 6px;
}

.iti__flag-container {
    display: none;
}

.has-mobile .iti__flag-container {
    display: block;
}


.show-listing-sec .advanced_movie_slider.slider.movies li>.items .vertical_thumbnails {
    position: static;
    transition: 0.3s all ease;
}

.show-listing-sec .advanced_movie_slider.slider.movies li>.items .vertical_thumbnails .img-wrap {
    display: none;
}

.show-listing-sec .advanced_movie_slider .show-item .items:hover {
    width: 13.819vw;
}

.show-listing-wrapper.vertical-x2 .advanced_movie_slider .show-item .items {
    width: 100%;
}

.show-listing-wrapper.vertical-x2 .advanced_movie_slider .show-item .img-wrappper {
    max-height: unset;
    min-height: unset;
    padding-top: 140%;
}

.show-listing-wrapper.vertical-x2 .advanced_movie_slider .show-item .img-wrappper img {
    position: absolute;
    height: 100%;
    width: 100%;
}

#otp-time {
    margin: 0px 3px 0px 3px;
}

.password-div {
    /*padding-top: 20px;*/
}


.kids-label {
    background-color: #85183C;
    border-radius: 8px;
    position: absolute;
    bottom: 8px;
    box-shadow: 0px 4px 4px 0px #00000040;
    width: 100%;
    max-width: 60px;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 4px 0;
}

.kids-label img {
    display: block;
    max-width: 38px;
}

.special-episodes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.special-episodes-grid .show-item {
    width: calc(25% - 12px);
    margin-bottom: 35px;
}

.special-episodes-grid .show-item a {
    display: block;
    width: 100%;
}

.special-episodes-grid .show-item .img-wrap {
    position: relative;
    padding-bottom: 56.25%;
    background-color: var(--white-10);
    border-radius: 5px;
}

.special-episodes-grid .show-item .img-wrap img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    -o-object-fit: cover;
}

.special-episodes-grid .show-item .details {
    margin-top: 15px;
}

.special-episodes-grid .show-item .details h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.special-episodes-grid .show-item .details p {
    font-size: 14px;
    line-height: 22px;
}

.center-align {
    text-align: center;
}

.form-box-wrapper .form-group .country-code {
    font-size: 14px;
    font-weight: 400;
    position: absolute;
    left: 15px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
}

.form-box-wrapper .form-group input.form-control {
    padding-left: 60px;
}

.f_show_listing_wrapper .items .featur-slide .action-button {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    justify-content: center;
}

.choose_avatar_wrapper {
    overflow: auto;
}

.search_popup .loading {
    width: 32px;
    line-height: 100%;
    margin: 0 auto;
    position: relative;
    top: 30px;
    display: none;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    z-index: 3;
}


.video_info_inner {
    max-width: 100%;
    z-index: 1;
    position: relative;
    padding-right: 140px;
}

.video_info_inner h1 {
    font-size: 48px;
    line-height: 120%;
}

.video-description {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: 0.5s all;
}
.checkout-page {
    padding-top: 180px;
}
.checkout-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 910px;
    width: 100%;
    margin: 0 auto;
}

.order-card {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 4px;
    padding: 40px 10px 10px;
    max-width: 400px;
    width: 100%;
}
.order-card-inner {
    padding: 0 34px 22px;
}
.order-card h2,
.payment-card h2 {
    color: var(--black);
    font-weight: 800;
    font-size: 33px;
    line-height: 100%;
    letter-spacing: 0%;
}
.payment-card p,
.order-card p {
    color: var(--black);
    font-weight: 400;
    font-size: 14px;
    line-height: 180%;
}

.order-card .promo-box {
    padding: 22px 35px;
    background-color: #161616;
    border-radius: 4px;
}

.order-card .promo-box h3 {
    font-weight: 800;
    font-size: 33px;
    line-height: 100%;
    margin: 0 0 18px;
}
.order-card .promo-box .voucher-input-box{
    gap: 3px;
    row-gap: 10px;
}
.order-card .promo-box  .redeem-btn{
    border-radius: 4px;
}
.order-card .promo-box .voucher-input-box input{
    background-color: var(--white);
}
.order-card .promo-box .voucher-input-box input:first-child{
    max-width: unset;
}
.order-details p {
    margin: 0 0 8px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    line-height: 120%;
}
.order-details p:last-child{
    margin-bottom: 0;
}
.order-details p strong {
    font-weight: bold;
}

.order-card .divider {
      border-bottom: 1px solid var(--black);
      margin: 10px 0;
}

.payment-card {
    position: relative;
    background-color: #FFFFFF;
    padding: 40px 28px;
    border-radius: 4px;
    max-width: 550px;
    width: 100%;
}
.payment-options {
    margin-top: 25px;
}
.payment-options .btn{
    background-color: transparent;
    color: var(--black);
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid var(--black);
    border-radius: 4px;
    text-align: right;
}
.payment-options .btn:hover{
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: transparent;
}
.payment-card .close-btn {
    background-image: url(../images/close-icon-black.svg);
    opacity: 1;
    top: 12px;
    left: 12px;
    right: auto;
}
.error_registration .otp_failure:after,
.otp_failure.failed_registration:after{
    display: none;
}

.resend_send_pin_code_button{
    cursor: pointer;
}

.resend_send_pin_code_button[disabled]{
    cursor: none;
}
.featured-carousel .featur-slide .play-progress{
    position: relative;
    margin-top: 12px;
}

.cast-sec .heading{
    margin-bottom: 40px;
}
.cast-sec .heading h2{
    font-size: 20px;
}

.logo > .title{
    font-size: 45px;
    margin-bottom: 30px;
    line-height: 60px;
}

.featur-slide .movie_category{
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 9;
    right: 10px;
    left: auto;
    bottom: 10px;
}

.featur-slide .movie_category.x2{
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 9;
    right: 10px;
    left: auto;
    bottom: 10px;
    transition: 0.3s ease all;
}

html[dir="ltr"] .featur-slide .movie_category {
    left: 10px;
    right: auto;
}
.recaptcha-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.load-more-btn{
    text-align: center;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(22, 22, 22, .65);
    border-radius: 6px;
    list-style: none;
    margin: 10px 0 0;
    display: none;
    min-width: 62px;
    z-index: 100;
    transition: unset;
    padding: 8px 9px;
}
ul.lang-dropdown li:not(:last-child){
    margin-bottom: 5px;
}
ul.lang-dropdown li a{
    color: var(--white);
    font-family: var(--primary-font);
    font-size: 14px;
    font-style: normal;
    display: block;
}

.centered-title{
    text-align: center;
}
