/* START WEB FONTS */


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

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


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

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

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

/* END WEB FONTS */


/* START CUSTOM SCROLL BAR */

*::-webkit-scrollbar {
    width: 8px;
    border-radius: 6px;
}

*::-webkit-scrollbar-track {
    background: var(--secondary);
    border-radius: 6px;
}

*::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 6px;
}

/* 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: 500;
}

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

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

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

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(--bcolor);
    line-height: 100%;
    color: var(--primary);
    overflow-x: hidden;
}

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%;
}

:root {
    --primary-font: 'Sora';
    --primary: #A5225D;
    --secondary: #00040C;
    --white: #fff;
    --white-10: rgba(255, 255, 255, .10);
    --black: #000;
    --bcolor: #00040C;
    --darkyellow: #F2084B;
    --gray: #757575;
}

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

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

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

/* 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 {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}

/* END IMAGE STYLE */



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

h1 {}

h2 {}

h3 {}

h4 {}

h5 {}

h6 {}

/* END HEADING STYLE */




/* START BODY TEXT STYLE */
p {
    font-family: var(--primary-font);
    font-size: 16px;
    color: var(--white);
    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;
    vertical-align: top;
    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;
}


button {
    display: inline-block;
    border: none;
    padding: 12px 60px;
    margin: 0;
    text-decoration: none;
    background: var(--white);
    color: var(--black);
    font-size: 16px;
    line-height: 120%;
    cursor: pointer;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
}

.btn_outline {
    font-family: var(--primary-font);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: block;
    z-index: 9;
    padding: 7px 12px;
    min-width: 55px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
}

.btn_outline:hover {
    border-color: var(--white);
    background-color: var(--white);
    color: var(--black);
}

/* 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-bottom: 20px;
    margin-left: 30px;
}

.article ul li {
    color: var(--Gray-500, #757575);
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    /* 160% */
}


[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 */



/* START HEADER CODE */

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

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

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

.nav ul li a {
    font-family: var(--primary-font);
    color: rgba(255, 255, 255, 0.70);
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0%;
    text-transform: capitalize;
    line-height: normal;
    display: inline-flex;
    position: relative;
    padding: 5px 0;
}

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

.nav ul li a:hover {
    /*color: var(--white);*/
}

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

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

.header.fixed {
    position: fixed;
    padding: 22px 0;
    transition: all 0.5s ease 0s;
    z-index: 99;
}

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

.menu-close-btn,
.mobile_menu {
    display: none;
}

.header-logo-block {
    display: inline-flex;
    padding-right: 38px;
}

.nav ul li {
    margin-right: 27px;
    position: relative;
}

.nav ul li:last-child {
    margin-right: 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: 900;
    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 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 22px 38px;
    background: linear-gradient(115.95deg, rgba(0, 0, 0, 0.6) 10.92%, rgba(0, 0, 0, 0.08) 96.4%);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(76.14620971679688px)
}

.header-row::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(110.43deg,
            #F8C705 5.85%,
            #D64527 46.12%,
            #93073E 94.01%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    border-radius: 10px;
}

.header-left-block {
    text-align: right;
}

.search_wrap {
    margin-right: 35px;
}

.search-bar {
    position: relative;
}

.search-bar.active {}

.search-bar input {
    color: var(--white);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-size: 14px;
    padding: 11px 15px;
    background-color: rgba(255, 255, 255, .1);
    border: none;
    color: #fff;
    border-radius: 100px;
    height: auto;

}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

.search-bar button {
    height: 20px;
    width: 20px;
    background: transparent;
    padding: 0;
    font-size: 0;
    border: none;
    display: block;
}

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

.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;
}

.user-profile .change-profile-btn .login-icon {
    display: none;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.user-profile .profile-image {
    width: 54px;
    height: 54px;
    border-radius: 100%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}


.user-profile .profile-image::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.5px;
    border-radius: 100%;
    background: linear-gradient(270deg,
            #8D0140 0.47%,
            #E14F23 51.11%,
            #FAD501 99.84%);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.user-profile .user-name {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}


/* Sidebar */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.account-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    max-width: 392px;
    width: calc(100% - 40px);
    height: 100vh;
    background: var(--secondary);
    padding: 30px 0;
    transition: 0.4s ease all;
    z-index: 1000;
    transform: translateX(100%);
}

/* Active Class */
.account-sidebar.active {
    right: 0;
    transform: translateX(0);
}

.account-sidebar .sidebar-inner {
    padding: 50px 45px;
    height: 100%;
    overflow: auto;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Profile */

.profile-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.account-sidebar .edit-icon img {
    display: block;
    max-width: 25px;
    width: 100%;
    height: auto;
}

.change-profile-wrap {
    padding: 35px 0;
    margin-bottom: 35px;
    border-bottom: 1px solid #3C3C3C;
}

.change-profile-btn {
    font-family: var(--primary-font);
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    letter-spacing: 0%;
    text-align: center;
    padding: 13px;
    background: linear-gradient(115.95deg, rgba(0, 0, 0, 0.6) 10.92%, rgba(0, 0, 0, 0.08) 96.4%);
    backdrop-filter: blur(76.14620971679688px);
    border-radius: 10px;
    overflow: hidden;
}

.change-profile-btn::before {
    content: "";
    position: absolute;
    pointer-events: none;
    inset: 0px;
    padding: 1px;
    background: linear-gradient(110.43deg, rgb(248, 199, 5) 5.85%, rgb(214, 69, 39) 46.12%, rgb(147, 7, 62) 94.01%);
    mask: linear-gradient(rgb(255, 255, 255) 0px, rgb(255, 255, 255) 0px) content-box exclude, linear-gradient(rgb(255, 255, 255) 0px, rgb(255, 255, 255) 0px);
    border-radius: 10px;
}

/* Menu */
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    position: relative;
    margin-bottom: 35px;
}

.sidebar-menu li.has-dropdown>a {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.sidebar-menu li.has-dropdown>a::before {
    content: "";
    width: 15px;
    min-width: 15px;
    height: 15px;
    background-image: url(../images/down-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

.sidebar-menu li.my-account {
    border-top: 1px solid #3C3C3C;
    border-bottom: 1px solid #3C3C3C;
    padding: 35px 0;
}

.sidebar-menu li a {
    font-family: var(--primary-font);
    color: rgba(255, 255, 255, .7);
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
}

.sidebar-menu li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}


.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;
}

.menu-overlay {
    display: none;
}

.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 {
    padding: 40px 0;
    position: relative;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    row-gap: 15px;
}

.footer-row .footer_left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-row .footer_left .footer_logo {
    padding-right: 40px;
}

.footer_logo>a {
    max-width: 52px;
    width: 100%;
    vertical-align: top;
}

.footer_logo>a img {
    display: block;
}

.footer-menu ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-menu ul li+* {
    margin-left: 8px;
    padding-left: 8px;
}

.footer-menu ul li {
    position: relative;
}

.footer-menu ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    right: auto;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background-color: var(--white);
}

.footer-menu ul li:first-child::before {
    display: none;
}

.footer-menu ul li a {
    color: var(--white);
    font-family: var(--primary-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.footer-menu ul li a:hover {
    color: var(--primary);
}

.footer-menu ul li.active a {
    color: var(--primary);
}

.footer-row .footer_right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

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

.social_media_links ul li+* {
    margin-left: 10px;
}

.social_media_links ul li a {
    width: 18px;
    vertical-align: top;
}

.social_media_links ul li a svg,
.social_media_links ul li a img {
    display: block;
}

.copyrite-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.copyrite-text p {
    color: var(--white);
    font-family: var(--primary-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.social_media_links ul li a:hover svg path {
    fill: var(--primary);
}

.social_media_links,
.store-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.store-badge-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social_media_links p,
.store-badges p {
    font-weight: 400;
    font-size: 14px;
    color: var(--white);
    margin: 0;
}

.store-badge-container a img {
    display: block;
}

/* END FOOTER CODE */

/* START HERO BANNER CODE */

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

.hero-section {
    background-color: var(--bcolor);
    overflow: visible;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
}

.HeroSlider .item {
    position: relative;
}

.HeroSlider .HeroSlider-img {
    position: relative;
    padding-top: 56.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;
}

/*.HeroSlider .HeroSlider-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: url(../images/hero_overlay.png) no-repeat;
    background-size: 100% 100%;
    background-position: center;
    z-index: 2;
}*/

/*.HeroSlider .HeroSlider-img::before,*/
.HeroSlider .HeroSlider-img::before,
.HeroSlider .hide-caption .HeroSlider-img::before,
#InnerHeroSlider.HeroSlider .HeroSlider-img::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/hero-overlay.png);
    z-index: 4;
    top: 0;
    pointer-events: none;
    background-size: cover;
}

.HeroSlider .hide-caption .HeroSlider-img::before,
#InnerHeroSlider.HeroSlider .HeroSlider-img::before {
    z-index: 4;
}

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

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

.HeroSlider .HeroSlider-info {
    position: absolute;
    bottom: 24%;
    left: 0;
    max-width: 100%;
    padding: 0 3.5%;
    z-index: 4;
    margin: auto;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    pointer-events: none;
}

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

.HeroSlider-info .inner_wrap {
    width: 100%;
}

.HeroSlider-info .inner_wrap .desc {
    max-width: 405px;
    width: 100%;
}

.HeroSlider-info .inner_wrap img {
    max-width: 120px;
    width: 100%;
}

.HeroSlider-info .inner_wrap h1 {
    font-family: var(--primary-font);
    color: var(--white);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.HeroSlider-info .inner_wrap h5 {
    color: var(--white);
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.HeroSlider-info .inner_wrap .movie_category {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.HeroSlider-info .inner_wrap .movie_category span {
    color: var(--white);
    font-family: var(--primary-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    /* padding: 8px 12px;
    border: 1px solid #FFF; */
    text-transform: capitalize;
    margin-right: 14px;
    display: block;
    text-align: center;
    line-height: 100%;
    /* border-radius: 100px; */
}

.HeroSlider-info .inner_wrap .movie_category span:last-child {
    margin-right: 0;
}

.HeroSlider-info .inner_wrap .epi_no {
    color: var(--white);
    text-align: center;
    font-family: Gotham;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 28px;
}

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

.HeroSlider-info .inner_wrap .desc p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    white-space: normal;
}

.HeroSlider-info p,
.HeroSlider-info .desc p {
    font-family: var(--primary-font);
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    /* 20.8px */
}

.HeroSlider-info .hero-slider-bottom p b {
    font-weight: 500;
    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;
}

.HeroSlider-info .inner_wrap .banner-action-div.action-button {
    align-items: stretch;
    row-gap: 8px;
}
.HeroSlider-info .inner_wrap .banner-action-div.action-button .common_icon_box {
    margin-bottom: 0;
}

.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;
}

.single-program-player .owl-stage.single,
.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;
}

.HeroSliderNav {
    padding-left: 50px;
    padding-right: 120px;
    margin-top: -80px;
}

.HeroSliderNav.owl-carousel .owl-stage-outer {
    overflow: visible;
    padding-bottom: 8px;
}

/*.HeroSliderNav .active .item {
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}*/

/*.HeroSliderNav .active.current .item {
    transition: all 0.3s ease;
    transform: scale(1.3);
    border-color: var(--primary);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    -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 .HeroSlider-img {
    position: relative;
    width: 100%;
    padding-top: 55.6%;
    border: 2px solid transparent;
    transition: 0.3s all;
    border-radius: 5px;
    overflow: hidden;
}

.HeroSliderNav .active.current .HeroSlider-img {
    transform: scale(1.06);
    border: 2px solid rgba(255, 255, 255, 0.50);
}

.HeroSliderNav .HeroSlider-img:before {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.48) 100%);
    height: 100%;
    width: 100%;
    top: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all;
}

.HeroSliderNav .featur-slide:hover .HeroSlider-img:before,
.HeroSliderNav .active.current .HeroSlider-img:before {
    opacity: 1;
    visibility: visible;
}

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

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

.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: 100%;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 100%;
    -webkit-transform: translateY(-50%);
}

.HeroSlider.owl-carousel .owl-nav button.owl-prev,
.HeroSlider.owl-carousel .owl-nav button.owl-next {
    width: 50px;
    height: 117px;
    pointer-events: all;
    border-radius: 10px 0px 0px 10px;
    background-color: rgba(0, 0, 0, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
}

.HeroSlider.owl-carousel .owl-nav button.owl-prev {
    background-image: url(../images/chevron_left.svg);
    border-radius: 0px 10px 10px 0px;
}

.HeroSlider.owl-carousel .owl-nav button.owl-next {
    background-image: url(../images/chevron_right.svg);
}

.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);
}

.HeroSlider .owl-dots {
    position: absolute;
    bottom: 160px;
    width: 100%;
    /*    justify-content: center; */
    display: flex;
    padding: 0 4.5%;
}

.full-video .btn-skip {
    position: absolute;
    right: 50px;
    bottom: 150px;
}

.full-video .btn-skip .btn {
    border-color: var(--white);
    background-color: transparent;
    display: flex;
    align-items: center;
    padding: 9px 15px;
    font-size: 12px;
    font-weight: 500;
    min-height: auto;
}

.full-video .btn-skip .btn:hover {
    background: #737373;
}

.hero-section .banner-action-div .close-icon {
    display: none;
}

.hero-section .banner-action-div .volume_icon {
    display: none;
}

.hide-caption .banner-action-div .close-icon {
    display: flex;
}

.hide-caption .banner-action-div .volume_icon {
    display: flex;
}

.banner-action-div .common_icon_box {
    width: 100%;
    max-width: 130px;
    margin-right: 8px;
    position: relative;
    margin-left: 0;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transition: 0.5s all;
}

.banner-action-div .common_icon_box .widget_link {
    font-size: 16px;
    color: var(--white);
    text-align: center;
}

.HeroSlider-info .banner-action-div .common_icon_box .widget_link img {
    max-width: 28px;
    height: 100%;
    display: block;
    margin: 0 auto 10px;
}

.HeroSlider-info .banner-action-div .common_icon_box.close-icon.close .widget_link img {
    width: 28px;
    position: relative;
    top: 0;
    margin: 0;
}

.banner-action-div .common_icon_box:hover {
    background-color: rgba(255, 255, 255, 0.30);
}

.banner-action-div .common_icon_box.active {
    background-color: var(--white);
}

.banner-action-div .common_icon_box.active .widget_link>img {
    filter: brightness(0) invert(0)
}

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

.common_icon_box img {
    transition: 0.3s all;
    display: block;
}

.common_icon_box:hover img {
    opacity: 1;
}

.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 .common_icon_box:last-child {
    margin-right: 0;
}

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

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

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

.HeroSlider-info .banner-action-div .common_icon_box .widget_link ul.social-share li a img {
    margin: 0;
    max-width: 22px;
    width: 100%;
}

.HeroSlider-info .banner-action-div .common_icon_box .widget_link ul.social-share li a img {
    margin: 0;
}

.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: -90px;
    opacity: 0;
    visibility: hidden;
    padding: 3px 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    width: max-content;
}

.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;
    max-width: 16px;
}

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

.comm_slider_sec .owl-dots {
    position: absolute;
    top: -17px;
    right: 75px;
    display: flex;
    align-items: center;
}


div .owl-dots .owl-dot {
    width: 18px;
    height: 3px;
    border-radius: 10px;
    background-color: var(--gray);
    min-width: unset;
    margin-right: 9px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

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

div.HeroSlider .owl-dots .owl-dot {
    width: 82px;
    height: 7px;
    position: relative;
}

div.HeroSlider .owl-dots .owl-dot.active {
    width: 82px;
}

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

div.HeroSlider .owl-dots .owl-dot span {
    display: block;
    position: absolute;
    background-color: transparent;
    height: 100%;
    top: 0;
    border-radius: inherit;
}

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

div.HeroSlider .owl-dots .owl-dot.active span {
    animation-name: animate-width;
    -webkit-animation-name: animate-width;
    animation-duration: 13s;
    animation-timing-function: linear;
}

.hide-nav-slider div.HeroSlider .owl-dots .owl-dot.active span {
    animation-play-state: paused;
}


div .owl-dots .owl-dot span {
    display: block;
}



@keyframes animate-width {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}


.volume .icon {
    position: relative;
}

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

.HeroSlider-info .banner-action-div .common_icon_box .widget_link.volume img {
    margin-bottom: 0;
}

.common_icon_box.volume_icon .volume img {
    width: 100%;
    max-width: 18px;
}

.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);
}

.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;
    pointer-events: auto;
}

.action-button>* {
    margin-right: 12px;
    margin-bottom: 10px;
}

/*.btn {*/
/*    padding: 16px 23px;*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    border: 1px solid var(--channel_color);*/
/*    border-radius: 10px;*/
/*    transition: all 0.3s ease;*/
/*    color: var(--white);*/
/*    text-decoration: none;*/
/*    font-size: 18px;*/
/*    font-weight: bold;*/
/*    background-color: var(--channel_color);*/
/*    -webkit-transition: all 0.3s ease;*/
/*    -moz-transition: all 0.3s ease;*/
/*    -ms-transition: all 0.3s ease;*/
/*    -o-transition: all 0.3s ease;*/
/*    -webkit-border-radius: 10px;*/
/*    -moz-border-radius: 10px;*/
/*    -ms-border-radius: 10px;*/
/*    -o-border-radius: 10px;*/
/*}*/

/*.btn:hover {*/
/*    background-color: transparent;*/
/*}*/
/*.btn:active {*/
/*    border-color: var(--channel_color);*/
/*    background-color: transparent;*/
/*    color: var(--channel_color);*/
/*}*/

/*.btn .icon {*/
/*    height: 20px;*/
/*    width: 20px;*/
/*}*/

/*.btn .icon img {*/
/*    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;*/
/*}*/

/*.btn:active .icon img {*/
/*    filter: invert(48%) sepia(100%) saturate(357%) hue-rotate(80deg) brightness(96%) contrast(87%);*/
/*    -webkit-filter: invert(48%) sepia(100%) saturate(357%) hue-rotate(80deg) brightness(96%) contrast(87%);*/
/*}*/

.btn_fill.btn {
    background: linear-gradient(132.02deg, rgba(255, 255, 255, 0.2) -2.16%, rgba(0, 0, 0, 0.052) 151.47%);
}

.btn_fill.btn:hover {
    background: linear-gradient(132.02deg, rgba(117, 170, 231, 0.2) -2.16%, rgba(86, 184, 57, 0.2) 151.47%);
}

.btn_fill.btn:active {
    color: var(--primary);
}

.btn_fill.btn .icon img {
    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;
}

.btn_fill.btn:active .icon img {
    filter: invert(48%) sepia(100%) saturate(357%) hue-rotate(80deg) brightness(96%) contrast(87%);
    -webkit-filter: invert(48%) sepia(100%) saturate(357%) hue-rotate(80deg) brightness(96%) contrast(87%);
}

.btn_fill.btn .icon {
    margin-left: 10px;
}

.close .btn .icon img {
    object-fit: contain;
    padding: 2px;
}

.add_to_fav .btn_fill.btn {
    background: transparent;
}

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

.add_to_fav .btn_fill.btn:active {
    border-color: var(--primary);
    color: var(--primary);
    background-color: transparent;
}



/*.btn_rounded {*/
/*    border: 1px solid rgba(255, 255, 255, 0.20);*/
/*    border-radius: 50px;*/
/*    padding: 13px 36px;*/
/*    font-size: 12px;*/
/*    font-weight: 300;*/
/*    text-decoration: none;*/
/*    color: var(--white);*/
/*    transition: all 0.3s ease;*/
/*    display: block;*/
/*    -webkit-transition: all 0.3s ease;*/
/*    -moz-transition: all 0.3s ease;*/
/*    -ms-transition: all 0.3s ease;*/
/*    -o-transition: all 0.3s ease;*/
/*    -webkit-border-radius: 50px;*/
/*    -moz-border-radius: 50px;*/
/*    -ms-border-radius: 50px;*/
/*    -o-border-radius: 50px;*/
/*}*/

/*.active .btn_rounded,*/
/*.btn_rounded:hover {*/
/*    background-color: rgba(255, 255, 255, 0.10);*/
/*}*/

/*.btn_rounded:active {*/
/*    border-color: var(--primary);*/
/*    color: var(--primary);*/
/*    font-weight: 300;*/
/*}*/

/*.active .btn_rounded {*/
/*    font-weight: 500;*/
/*}*/




/*.btn.btn_more {*/
/*    padding: 15px 30px;*/
/*    font-size: 16px;*/
/*}*/

/* END HERO BANNER CODE */



/* START COMMON SLIDER CODE */
.hero-section+.common-slider-sec {
    margin-top: -4%;
    z-index: 1;
}

.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;
}

.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: -50px;
    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: 25px;
    height: 25px;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px auto;
}

.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;
}

.channel-radio-carousel.owl-carousel .owl-nav {
    position: unset;
    max-width: 100%;
}

.channel-radio-carousel.owl-carousel .owl-nav button.owl-next,
.channel-radio-carousel.owl-carousel .owl-nav button.owl-prev {
    width: 74px;
    height: calc(100% - 66px);
    pointer-events: all;
    background-color: #000000C9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    background-size: 55px;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 0;
}

.channel-radio-carousel.owl-carousel .owl-nav button.owl-next {
    margin: 0;
    background-image: url(../images/chevron_right.svg);
    right: -30px;
    left: auto;
}

.channel-radio-carousel.owl-carousel .owl-nav button.owl-prev {
    background-image: url(../images/chevron_left.svg);
    margin: 0;
    left: -30px;
    right: auto;
}

/* 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: 12px;
    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: 500;
    /* 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: unset;
}

.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 */
section.first-section {
    padding-top: 160px;
}

.privacy-statement.first-section {
    padding-top: 180px;
}

.privacy-statement .container {
    width: 100%;
    max-width: 1040px;
    padding: 0 15px;
}

.toc-title {
    margin-bottom: 60px;
}

.toc-title h1 {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 12px;
}

.toc-title p {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
}

.article {
    margin-bottom: 30px;
}

.article h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 20px;
}

.article p {
    color: var(--white);
    font-family: var(--primary-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 30px;
}

.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 {
    color: var(--redhover);
}

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

/* 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: 25px;
}

.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: 250px;
    position: relative;
}

.filter_link {
    background-color: #545356;
    width: 100%;
    display: block;
    border-radius: 5px;
    position: relative;
    font-size: 16px;
    font-weight: 800;
    padding-right: 40px;
    color: #fff;
    cursor: pointer;
}

.filter_link::before {
    content: '';
    position: absolute;
    top: 53%;
    right: 14px;
    left: auto;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: url(../images/white-arrow-down.png) no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
}

.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 {
    background-color: #545356;
    border-radius: 0 0 10px 10px;
    top: 100%;
    position: absolute;
    transform: translateY(-3px);
    overflow: hidden;
    max-height: 0;
    transition: all 0.5s ease;
    opacity: 0;
    visibility: hidden;
    width: 100%;
}

.filter_wrap.active .dropdown_list {
    max-height: 460px;
    height: auto;
    opacity: 1;
    visibility: visible;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 2;
}

.dropdown_list ul {
    width: 100%;
    padding: 15px;
    overflow-y: auto;
}

.dropdown_list ul li {
    border-bottom: 1px solid #fff;
    margin-bottom: 5px;
    padding-bottom: 5px;
}

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

.dropdown_list ul a {
    font-size: 14px;
    font-weight: bold;
    display: block;
    width: 100%;
    color: var(--white);
    text-align: center;
}

.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 -7px;
}

.most-watch>ul>li {
    width: 14.28%;
    padding: 0 7px;
    margin-bottom: 15px;
}

.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-left: 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: 20px;
    opacity: 1;
    visibility: visible;
}

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

.item .show-details .category span {
    font-size: 14px;
    /* color: var(--bcolor); */
    font-weight: 500;
    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: 500;
    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: 12px;
    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: 500;
}

.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-wrap {
    text-align: center;
    margin: 50px auto 0;
}

.gradient-btn,
.load-more-btn-wrap .load-more-btn {
    background: linear-gradient(115.95deg, rgba(0, 0, 0, 0.6) 10.92%, rgba(0, 0, 0, 0.08) 96.4%);
    backdrop-filter: blur(76.14620971679688px);
    color: #FFFFFF;
    padding: 19px 20px;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    border-radius: 10px;
    width: 100%;
    max-width: 276px;
    margin: 0 auto;
    position: relative;
}

.gradient-btn::before,
.load-more-btn-wrap .load-more-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(110.43deg, #F8C705 5.85%, #D64527 46.12%, #93073E 94.01%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    border-radius: 10px;
}

.gradient-btn:hover,
.load-more-btn-wrap .load-more-btn:hover {
    background: linear-gradient(115.95deg, #BA9607 10.92%, #D44429 54.07%, #990C3C 96.4%);
}

/* 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: 500;
    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;
    padding: 0;
}

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

.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;
}

/*
.more-episode-wrap {
	position: fixed;
	top: 100%;
	right: 0;
	left: 140px;
	opacity: 0;
	z-index: -1;
	visibility: hidden;
	pointer-events: none;
	transition: all 0.5s ease;
	padding-right: 7.7%;
}
.show-more-ep .more-episode-wrap {
	top: 18%;
	opacity: 1;
	z-index: 2;
	visibility: visible;
	pointer-events: auto;
	transition: all 0.5s ease;
}
.more-episode-new {
	background: var(--bcolor);
	border-radius: 8px;
	padding: 30px;
	position: relative;
	z-index: 1;
	border: 1px solid var(--light_gray);
}
.more-episode-new .decline-heading-row {
	border-bottom: 1px solid var(--white);
	padding-bottom: 25px;
	margin-bottom: 40px;
}*/
.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::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -10px;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-right: 10px solid var(--redhover);
	transform: translateY(-50%);
    display: none;
} */
.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);
}

/* .video-widget .widget_item.active .hover-detail::before {
	content: '';
	position: absolute;
	bottom: 19px;
	left: -10px;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-right: 10px solid var(--redhover);
    display: none;
} */
.hover-detail .ser-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hover-detail .ser-title h2 {
    margin-bottom: 0;
    font-weight: 500;
    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: 700;
    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;
}

.vertical_thumbnails .img-wrap::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: auto;
    z-index: 1;
    background-image: url("../images/btn_overlay_bp.png");
    pointer-events: none;
    background-repeat: no-repeat;
    background-position: center 3px;
    background-size: cover;
    bottom: 0;
}

.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;
}

/*.related_item_list.comm_item_card ul li{
	max-width: 100%;
}
.related_item_list .item{
	display: flex;
	flex-wrap: wrap;
}
.related_item_list.comm_item_card .img_wrap{
	max-width: 23.25%;
	padding-top: 11.5%;
}
.related_item_list .item .show-details{
	width: 100%;
	max-width: calc(100% - 23.5%);
}*/

.hero-section+.common-slider-channel-sec {
    margin-top: -110px;
    position: relative;
    z-index: 2;
}

.hero-section.catchup_video+.latest-programs-sec,
.hero-section.live-tv+.common-slider-channel-sec {
    margin-top: 40px;
}

.hero-section+.featured-slider-sec {
    padding-top: 0;
    margin-top: -110px;
}

.featured-slider-sec {
    position: relative;
    /* padding-left: calc((100% - 1340px)/2); */
    padding-top: 8px;
    z-index: 2;
}

.sec_title {
    display: inline-flex;
    align-items: center;
    margin-bottom: 26px;
    gap: 22px;
    position: relative;
    /* justify-content: space-between; */
    /* padding-right: calc((100% - 1300px)/2); */
}

.sec_title .cta_btn>a::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    right: auto;
    top: 0;
}

.common-slider-channel-sec .sec_title {
    margin-bottom: 16px;
}

/* .sec_title .cta_btn {
    padding-right: 75px;
} */
.sec_title .cta_btn>a {
    vertical-align: middle;
}

.no_nav .sec_title .cta_btn {
    padding-right: 0;
}

.sec_title h2 {
    color: var(--white);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.featured-carousel.owl-carousel {
    padding-right: 16%;
}

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

.featured_slider_wrap .slider.latest-series-carousel {
    padding-right: 18.5%;
}

.ttl-slider-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.ttl-slider-wrap .left-ttl-box {
    max-width: 30%;
    width: 100%;
}

.ttl-slider-wrap .left-ttl-box .show-logo {
    margin-bottom: 16px;
}

.ttl-slider-wrap .left-ttl-box .show-logo img {
    max-width: 325px;
    width: 100%;
    display: block;
}

.ttl-slider-wrap .left-ttl-box h2 {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}

.ttl-slider-wrap .left-ttl-box p {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 16px;
}

.ttl-slider-wrap .featured_slider_wrap,
.ttl-slider-wrap .advanced_movie_slider {
    max-width: 64%;
    width: 100%;
}

.ttl-slider-wrap .five-slider .owl-stage-outer {
    overflow: hidden;
}

.ttl-slider-wrap .five-slider.owl-carousel {
    width: 65vw;
}

.vertical .advanced_movie_slider .show-item .items,
.ttl-slider-wrap .advanced_movie_slider .show-item .items {
    width: 10.5vw;
    transition: all 0.5s cubic-bezier(.77, 0, .18, 1);
}

.vertical .show-item .img-wrappper,
.ttl-slider-wrap .show-item .img-wrappper {
    max-height: 15.782vw;
    min-height: 15.782vw;
}

.ttl-slider-wrap .featured_slider_wrap .featured-carousel-new.owl-carousel {
    padding-right: 2%;
    width: 70vw;
}

.prodcast-carousel.owl-carousel {
    padding-right: 7.5%;
}

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

.ttl-slider-wrap .prodcast-carousel.owl-carousel {
    padding-right: 8%;
    width: 100vw;
}

.ttl-slider-wrap .prodcast-carousel.owl-carousel .owl-stage-outer {
    overflow: hidden;
}

.prodcast-carousel .f_show_img {
    padding-bottom: 100%;
}

.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;
}

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

.f_show_img {
    position: relative;
    padding-bottom: 53.74%;
    border-radius: 0px;
    overflow: hidden;
    transition: 0.3s all;
    background-color: var(--white-10);
    /* border: 2px solid transparent; */
}

.sports-channel-sec .f_show_img {
    padding-bottom: 56.25%;
    border-radius: 20px;
}

.sports-channel-sec .featur-slide:hover .f_show_img::after {
    border-radius: 20px;
}

/* .f_show_img:after{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    border: 3px solid var(--primary);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
} */
.featur-slide:hover .f_show_img:after {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.f_show_img:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: auto;
    z-index: 1;
    background-image: url("../images/btn_overlay_bp.png");
    pointer-events: none;
    background-repeat: no-repeat;
    background-position: center 3px;
    background-size: cover;
    bottom: 0;
    transition: unset;
    opacity: 0;
    visibility: hidden;
}

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

.featur-slide:hover .f_show_img {
    transform: scale(1.05);
    /* border: 2px solid var(--primary); */
}

.featur-slide:hover .f_show_img::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(249.26deg, #E6D002 -16.78%, #E35523 49.23%, #86013D 115.24%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    /* border-radius: 4px; */
}

.f_show_img>a>img,
.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 {
    width: calc(100% - 12px);
    max-width: 245px;
    height: 8px;
    border-radius: 4px;
    background: #FFFFFF33;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.play-progress .progress {
    position: absolute;
    top: 0;
    border-radius: 4px;
    background: var(--primary);
}

.play-progress .progress {
    position: absolute;
    top: 0;
    border-radius: 4px;
    background: linear-gradient(90deg, #8A013F 0%, #DB501F 100%);
    height: 8px;
}

.resume-watching-sec .play-progress {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
}
.featur-slide .play-progress{
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
}
.play-progress+h3 {
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 20.8px */
    margin-top: 15px;
}

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

.featur-slide .details {
    position: absolute;
    bottom: 45px;
    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: 500;
    line-height: normal;
}

.action-div {
    position: absolute;
    left: auto;
    right: 15px;
    top: auto;
    bottom: 15px;
    transition: 0.3s all;
}

.action-div.action-button {
    display: flex;
    align-items: center;
    margin: 0;
    z-index: 2;
}

.action-div .common_icon_box {
    display: flex;
    margin-bottom: 0;
    position: relative;
    height: 30px;
    width: 30px;
    border-radius: 100px;
    padding: 0px;
    margin-right: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFF;
    max-width: unset;
}

.owl-carousel .action-div .common_icon_box img {
    max-width: 22px;
}

.common_icon_box>span {
    display: block;
}

.featur-slide .banner-action-div .common_icon_box .widget_link img {
    max-width: 22px;
    margin-bottom: 0;
}

/* .prodcast-carousel .action-div .common_icon_box,
.horizontal-x2 .action-div .common_icon_box {
    width: 58px;
    height: 58px;
} */
.action-div.action-button>* {
    /*    margin-left: 12px;*/
}

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

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

.action-div .mute-icon-handler {
    margin-bottom: 0;
    cursor: pointer;
}

.action-div .mute-icon-handler.active .common_icon_box {
    background-color: var(--primary);
    border-color: var(--primary);
}

.action-div .mute-icon-handler.active .common_icon_box img {
    filter: brightness(1) invert(1);
}

.action-div .mute-icon-handler img {
    position: absolute;
    max-width: 18px;
}

.vertical_thumbnails .mute-icon-handler>.common_icon_box img {
    opacity: 1;
}

.vertical_thumbnails .mute-icon-handler>.common_icon_box .v-off {
    opacity: 0;
}

.vertical_thumbnails .mute-icon-handler.muted>.common_icon_box {
    opacity: 1;
}

.vertical_thumbnails .mute-icon-handler.muted>.common_icon_box .v-on {
    opacity: 0;
}

.vertical_thumbnails .mute-icon-handler.muted>.common_icon_box .v-off {
    opacity: 1;
}

.action-div.action-button .mute-icon-handler>.common_icon_box img {
    opacity: 1;
}

.action-div.action-button .mute-icon-handler>.common_icon_box .v-off {
    opacity: 0;
}

.action-div.action-button .mute-icon-handler.muted>.common_icon_box {
    opacity: 1;
}

.action-div.action-button .mute-icon-handler.muted>.common_icon_box .v-on {
    opacity: 0;
}

.action-div.action-button .mute-icon-handler.muted>.common_icon_box .v-off {
    opacity: 1;
}

.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-top: 8px;
}

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

.channel-list-main .owl-stage {
    display: flex;
}

.channel-list-main {
    display: flex;
    flex-wrap: wrap;
}

.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: stretch;
    border-radius: 4px;
    background-color: #454545;
    overflow: hidden;
    transition: 0.5s all;
    height: 100%;
}

.common-slider-channel-sec .channel_img img {
    object-fit: cover;
    height: 100%;
}

.channel-list-main .owl-item .channel_card,
.channel-list-main .owl-item li {
    height: 100%;
}

.channel-list-main .owl-item li {
    position: relative;
}

.channel-list-main .owl-item li.active::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(249.26deg, #E6D002 -16.78%, #E35523 49.23%, #86013D 115.24%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    border-radius: 4px;
}

/*.channel_img{
    position: relative;
}
.channel_img img{
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}*/
.channel_img {
    width: 100%;
    height: 100%;
    max-width: calc(100% - 194px);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    overflow: hidden;
}

.channel_img img {
    display: block;
    /*    height: 82px;*/
    object-fit: cover;
}

.channel_info {
    padding: 15px 8px;
    flex-direction: column;
    display: flex;
    max-width: 194px;
    justify-content: space-between;
}

.channel_info h4 {
    color: var(--white);
    font-family: var(--primary-font);
    font-size: 15px;
    font-style: normal;
    font-weight: bold;
    line-height: normal;
    letter-spacing: 0;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

.channel_info span {
    color: var(--white);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    padding-bottom: 15px;
}

.kids-wrapper {
    padding: 42px 32px 30px 32px;
    background-image: url(../images/kids_bg_img.png);
    min-height: 430px;
    border-radius: 12px;
    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: 500;
    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;
    padding-top: 8px;
}

.five-slider.owl-carousel {
    padding-right: 0;
}

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

.show-item .top-img {
    position: absolute;
    left: auto;
    right: 5px;
    top: 5px;
    z-index: 1;
    width: 82px;
}

.show-item .top-img img {
    display: block;
}

.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;
    background-color: var(--white-10);
}

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

.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: 23.368vw;
    min-height: 23.368vw;
    transition: all 0.5s cubic-bezier(.77, 0, .18, 1);
    display: flex;
    border-radius: 0px;
    overflow: hidden;
}

.top_ten_slider .show-item .img-wrappper {
    max-height: 22.708vw;
    min-height: 22.708vw;
}

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

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

.advanced_movie_slider.slider.movies li>.items {

    border-radius: 0px;
}

.advanced_movie_slider.slider.movies li>.items:hover {}

.top_ten_slider .advanced_movie_slider .show-item .items {
    width: 16.771vw;
}

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

.vertical-x2 .advanced_movie_slider .show-item .items:hover {
    width: 41.5vw;
}

.top_ten_slider .advanced_movie_slider .show-item .items:hover {
    width: 40.37vw;
}


.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);
}

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

.vertical_thumbnails .show_name {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: auto;
    z-index: 2;
    width: calc(100% - 190px);
}

.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;
    border-radius: 0;
    overflow: hidden;
}

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

.show-listing-wrapper .advanced_movie_slider .show-item .items {
    width: 100%;
}

.show-listing-wrapper .advanced_movie_slider .show-item .img-wrappper {
    max-height: unset;
    min-height: unset;
    padding-top: 140%;
    position: relative;
}

.show-listing-wrapper .advanced_movie_slider .show-item .img-wrappper::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: auto;
    z-index: 1;
    background-image: url("../images/btn_overlay_bp.png");
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0px;
    opacity: 0;
    visibility: hidden;
    background-position: center 3px;
    transition: unset;
}

.show-listing-wrapper .advanced_movie_slider .show-item:hover .img-wrappper::before {
    opacity: 1;
    visibility: visible;
}

.show-listing-wrapper .advanced_movie_slider .show-item .img-wrappper img {
    position: absolute;
    height: 100%;
    width: 100%;
}

.advanced_movie_slider .show-item .banner-action-div .common_icon_box .widget_link img {
    max-width: 22px;
    width: 100%;
}

/* .movies .vertical_thumbnails:after{
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    width: 100%;
    border: 2px solid var(--primary);
    border-radius: 5px;
    z-index: 1;
    pointer-events: none;
} */

.vertical_thumbnails .details {
    position: absolute;
    padding: 15px;
    bottom: 46px;
    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: 500;
    line-height: normal;
}

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


.back_btn_wrap {
    margin-bottom: 40px;
}

.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/slider-arrow-left.svg);
    background-position: center;
    display: block;
    margin-right: 15px;
    background-color: var(--white-10);
    background-repeat: no-repeat;
    border-radius: 100px;
    background-size: 20px;
}

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

.item: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: 500;
}

.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: 240px;
}

.single-program-player .HeroSlider .HeroSlider-info h2 {
    font-size: 32px;
}

.live-tv .single-program-player .HeroSlider-info h2 {
    font-size: 76px;
    font-weight: 800;
    display: inline-block;
    vertical-align: top;
}

.live-tv .single-program-player .HeroSlider-info h2 span {
    display: block;
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
    text-align: right;
    margin-top: -30px;
}

.live-tv .single-program-player .HeroSlider-info .inner_wrap {
    max-width: 100%;
}

.live-tv .single-program-player .HeroSlider-info .logo img {
    max-width: 273px;
    width: 100%;
}

.live-tv .single-program-player .vid-play-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    z-index: 5;
    text-align: center;
    max-width: 107px;
    margin: 0 auto;
}

.live-tv .single-program-player .vid-play-btn img {
    width: 107px;
    margin: 0 auto;
}

.single-program-player .HeroSlider-info .inner_wrap .desc p {
    display: block;
    margin-bottom: 20px;
}

.single-program-player .HeroSlider-info .inner_wrap .desc p:last-child {
    margin-bottom: 0;
}

.single-program-player .HeroSlider-info .banner-action-div {
    margin-top: 30px;
}

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

.video_listing {
    margin-top: 30px;
}

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

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

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

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

.tv_show_listing.owl-carousel {
    margin: 0;
}

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

.tv_show_listing .tv_show_item>a {
    display: block;
}

.tv_show_listing .tv_show_item>a:hover .tv_show_img {
    border-radius: 0;
}

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

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

.tv_show_img {
    position: relative;
}

.tv_show_img>a {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    background-color: var(--white-10);
    width: 100%;
    display: block;
}

.tv_show_img:before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/hero-overlay.png);
    z-index: 2;
    top: 0;
    pointer-events: none;
    background-size: cover;
}

.tv_show_img>a>img {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition-delay: unset;
}

.tv_show_item:hover .tv_show_img>a>img {
    transform: scale(1.1);
}

.tv_show_img .common_icon_box.wishlist,
.tv_show_img .play-btn {
    position: absolute;
    bottom: 20px;
    left: 25px;
    right: auto;
    z-index: 9;
    display: block;
}

.tv_show_img .common_icon_box.wishlist {
    right: 25px;
    left: auto;
    z-index: 2;
    bottom: 20px;
    opacity: 0;
    visibility: hidden;
    border: 1px solid var(--white);
    border-radius: 100px;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.tv_show_img .common_icon_box.wishlist img {
    max-width: 22px;
    width: 100%;
}

.tv_show_item:hover .common_icon_box.wishlist {
    opacity: 1;
    visibility: visible;
}

.tv_show_img .play-btn img {
    width: 28px;
}

.tv_show_img h3.epi_ttl {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: capitalize;
    position: absolute;
    right: 25px;
    left: auto;
    z-index: 2;
    bottom: 20px;
}

.tv_show_item:hover .tv_show_img h3.epi_ttl {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.tv_show_content {
    /*    background-color: rgba(255,255,255,.1);*/
    padding: 24px 9px 0;
    transition: 0.5s all;
    position: relative;
    z-index: 9;
}

.tv_show_content .share-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.tv_show_content .share-wrap .epi_ttl {
    margin-bottom: 0;
}

.tv_show_content .share-wrap .btn_share {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all;
    background: unset;
    border: unset;
}

.tv_show_content .share-wrap .widget_item.active ul.social-share {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.tv_show_item:hover .tv_show_content .share-wrap .widget_item.active ul.social-share,
.tv_show_item:hover .tv_show_content .share-wrap .btn_share {
    opacity: 1;
    visibility: visible;
}

.tv_show_content .share-wrap .widget_item.active>.widget_link>img {
    filter: unset;
}

.tv_show_content .share-wrap .plus.share.widget_link {
    position: relative;
    cursor: pointer;
    z-index: 4;
}

.tv_show_content .share-wrap .btn_share ul.social-share {
    right: -42px;
    left: auto;
    z-index: 9;
}

.latest-tv_show_listing {
    padding-top: 35px;
}

.latest-tv_show_listing .tv_show_img:before {
    display: none;
}

.latest-tv_show_listing.live-radio>.tv_show_item {
    width: 20%;
}

.latest-tv_show_listing .tv_show_img {
    position: relative;
    padding-bottom: 56.25%;
}

.latest-tv_show_listing.live-radio .tv_show_img {
    padding-bottom: 100%;
    position: relative;
}

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

.latest-tv_show_listing .tv_show_content {
    padding: 30px 0 0;
}

.latest-tv_show_listing .show_duration,
.latest-tv_show_listing .tv_show_content h3,
.latest-tv_show_listing .tv_show_content .play-btn {
    padding-bottom: 10px;
}

.latest-tv_show_listing .tv_show_content p,
.latest-tv_show_listing .show_duration p {
    font-size: 16px;
    font-weight: 400;
}

.latest-tv_show_listing .tv_show_content h3 {
    font-size: 20px;
    font-weight: 700;
}

.tv_show_content .play-progress {
    margin: 20px 0;
}

.tv_show_content .play-progress .progress {
    background-color: #FFB81D;
}

.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: 500;
}

.tv_show_content .title_wrap .duration {
    font-size: 12px;
    font-weight: 500;
    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: 500;
    line-height: normal;
}

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

.tv_show_content h3 {
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 10px;
}

.tv_show_content p {
    color: var(--white);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    white-space: normal;
}

.tv_show_resume_wrap time {
    color: var(--white);
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;

}

.tv_show_img .tv_show_resume_wrap .play-progress {
    position: relative;
    bottom: unset;
    margin: 0;
    max-width: 100%;
    width: calc(100% - 65px);
}

.tv_show_img .tv_show_resume_wrap {
    position: absolute;
    left: 0;
    right: auto;
    bottom: 22px;
    z-index: 5;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 16px;
}

.schedule-wrapper {
    margin-bottom: 60px;
}

.schedule-wrapper .top-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.schedule-wrapper .top-bar h3 {
    font-size: 20px;
    font-weight: 700;
}

.schedule-btn {
    background: #2C2C2C;
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 16px;
}

.channel-days-row {
    display: flex;
    gap: 30px;
    row-gap: 15px;
    flex-wrap: wrap;
}

.epg_slider .owl-stage {
    display: flex;
}

.epg_slider .owl-item {
    flex: 1 0 0;
}

.tab-menu ul.epg_slider li a {
    position: relative;
    background: #2C2C2C;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
    padding: 16px 15px;
}

.tab-menu ul.epg_slider li a.active {
    font-weight: 400;
}

.tab-menu ul.epg_slider li a.active::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(249.26deg, #E6D002 -16.78%, #E35523 49.23%, #86013D 115.24%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    border-radius: 8px;
}

.live-show-carousel {
    padding-right: 4%;
}

.live-show-carousel .owl-stage-outer {
    overflow: visible;
}

.live-show-carousel.owl-carousel {
    margin-top: 80px;
}

.latest-programs-sec .live-show-carousel.owl-carousel {
    margin-top: 0;
}

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

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

.ch-item>a {
    display: block;
    width: 100%;
}

.ch-item .show_duration {
    padding-bottom: 10px;
}

.ch-item .show_duration p {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
}

.ch-item.current .show_duration p {
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
}

.ch-item .show_title p {
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    text-transform: capitalize;
    color: var(--white);
    word-wrap: break-word;
}

.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;
    max-width: 405px;
    width: 100%;
    padding: 20px 28px;
    text-align: left;
    color: var(--primary);
    cursor: pointer;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    border-radius: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 10;
    background: linear-gradient(115.95deg, rgba(0, 0, 0, 0.6) 10.92%, rgba(0, 0, 0, 0.08) 96.4%);
    backdrop-filter: blur(76.14620971679688px)
}

.wrapper-dropdown::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(110.43deg, #F8C705 5.85%, #D64527 46.12%, #93073E 94.01%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    border-radius: 10px;
}

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

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


.wrapper-dropdown .dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    margin: 0;
    padding: 10px 7px;
    list-style: none;
    margin-top: 10px;

    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;
    overflow: auto;
    border-radius: 12px;
    background-color: #8c8c8c;
}

/* ===== 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 {
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 7px 20px;
    overflow: hidden;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -ms-transition: .5s ease;
    transition: .5s ease;
    border-radius: 100px;
}

.wrapper-dropdown.tab-menu-dropdown ul {
    display: block;
}

.wrapper-dropdown.tab-menu-dropdown ul li {
    padding: 0;
    border-radius: 0;
    margin-bottom: 4px;
}

.wrapper-dropdown .dropdown li>a {
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    padding: 7px 20px;
    display: block;
    transition: .5s ease;
    border-radius: 100px;
    color: inherit;
}

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

.wrapper-dropdown .dropdown li>a:hover,
.wrapper-dropdown .dropdown li:hover {
    background: var(--primary);
    color: var(--white);
    border-radius: 100px;
}

.wrapper-dropdown .dropdown li>a.active,
.wrapper-dropdown .dropdown li.active {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 500;
}

.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-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 216px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.latest-programs-sec .wrapper-dropdown {
    max-width: 276px;
}

.tab-main-box .tab-content {
    display: none;
}

.icon_ttl_wrap {
    display: flex;
    align-items: center;
    padding-right: 48px;
}

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

.icon_ttl_wrap img {
    display: block;
}

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




/* 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: 11px 13px;
    font-size: 12px;
    color: var(--white);
    font-weight: 500;
    right: auto;
    width: 84px;
    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: 45px;
    overflow: hidden;
    padding: 0;
}

.epg_top_sec {
    padding-bottom: 2px;
    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: 100%;
}

.epg_live_show a {
    width: 100%;
    height: 100%;
    background-color: #2E2E2E;
    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: 150px;
    display: flex;
    width: 100%;
    max-width: 150px;
    height: auto;
}

.epg_tl_item {
    margin: 3px 0;
    padding: 0 2px;
    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: #2E2E2E;
    padding: 11px 20px;
    border-radius: 8px;
    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: 20px 20px;
}

.epg_top_sec .epg_time.epg_item_box p {
    color: #8E8E8E;
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.active_show .epg_item_box {
    background-color: #181818;
    border: 2px solid #FF8B00;
}

.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: 100%;
}

.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: 435px;
    max-width: 435px;
}

.epg_item_box>* {
    width: 100%;
}

.epg_item_box .title {
    margin-bottom: 0;
}

.epg_item_box .title span,
.epg_item_box .title h2 {
    color: var(--white);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
}

.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 {
    color: var(--white);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    margin-bottom: 6px;
}

.tl_season_wrap p {
    font-size: 12px;
    font-weight: 500;
    color: #8E8E8E;
}

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

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

.epg_img_box {
    height: 100%;
}

.epg_img_box a {
    height: 100%;
}

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

.epg_nav_btns {
    position: absolute;
    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 .img_wrap {
    position: relative;
    padding-top: 56.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(0, 0, 0, 0.00) 0%, #000 100%);
    z-index: 1;
    pointer-events: none;
}

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

.live_radio_wrap {
    z-index: 1;
    position: relative;
}

.now_playing_box {
    border-radius: 6px;
    background: #17242A;
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 6px;
    max-width: 567px;
    width: 100%;
}

.live_radio_action_btn {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    top: -50px;
}

.live_radio_action_btn>div a {
    display: block;
}

.live_radio_action_btn img {
    display: block;
}

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

.live_radio_box>*+* {
    margin-left: 11px;
}

.live_radio_img {
    width: 150px;
    border-radius: 6px;
    overflow: hidden;
}

.live_radio_content {
    width: calc(100% - 150px);
    padding-left: 35px;
    position: relative;
}

.live_radio_content .player_btn_wrap {
    display: flex;
    margin: 0;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.live_radio_img img {
    display: block;
}

.live_radio_content .live_wrap {
    margin-bottom: 6px;
}

.live_radio_content .live_tag {
    color: var(--white);
    font-family: var(--primary-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
    margin-bottom: 7px;
}

.live_radio_content .now.live_tag {
    padding-left: 18px;
    margin-left: -18px;
}

.live_radio_content .now.live_tag:before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    left: 0;
    right: auto;
    background-color: #F00;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}

.live_wrap .duration {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
    padding-left: 15px;
}

.live_radio_content h3 {
    color: var(--white);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.14px;
    margin-bottom: 10px;
}

.live_radio_content .duration {
    color: #757272;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 12px */
}

.next_live_show,
.later_show {
    border-radius: 6px;
    background-color: rgba(255, 255, 255, .1);
    padding: 20px 18px;
    max-width: 200px;
    width: 100%;
}

.next_live_show .live_radio_content,
.later_show .live_radio_content {
    width: 100%;
    padding: 0;
}

.radio-show .radioPlayer {
    bottom: 50px;
}

.radio-show .radioPlayer .radio_player_wrap {
    gap: 35px;
}

.player-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 350px;
}

.player-thumb {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.player-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-info small {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 6px;
}

.player-info h3 {
    font-size: 20px;
    font-weight: 700;
}

.player-center {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 18px;
}

.radioPlayer .player-center .slider {
    width: 100%;
}

.radioPlayer .player-center .play-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
}

.radioPlayer .player-center .play-btn i {
    font-size: 14px;
}

.player-center .progress-area {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.player-center .time {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    white-space: nowrap;
}

.player-right {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13px;
}

.player-right i {
    cursor: pointer;
    color: #fff;
}

.volume-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.player-right svg {
    height: 30px;
    width: 30px;
    display: block;
}

.speed-btn,
.info-btn {
    border: 1px solid var(--white);
    width: 35px;
    min-width: 35px;
    height: 24px;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}



.radio-show .single-program-player .HeroSlider .HeroSlider-info {
    bottom: 6%;
    align-items: flex-end;
}

.radio-show .single-program-player.has-player .HeroSlider .HeroSlider-info {
    bottom: 26%;
}

.HeroSlider-info .radio-show-logo img {
    width: 100%;
    max-width: 200px;
}

.radio-show-sec .wrapper-dropdown {
    margin-bottom: 35px;
}

.radio-show-list {
    padding: 0 5%;
}


.radio-item {
    display: flex;
    align-items: flex-start;
    column-gap: 100px;
    row-gap: 20px;
    margin-bottom: 30px;
}


.radio-thumb {
    width: 208px;
    min-width: 208px;
    overflow: hidden;
    border-radius: 2px;
    position: relative;
}

.radio-thumb .radio-thumb-url {
    position: relative;
    padding-top: 208px;
    height: 100%;
    width: 100%;
    display: block;
}

.radio-thumb::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/hero-overlay.png);
    z-index: 1;
    top: 0;
    pointer-events: none;
    background-size: cover;
    opacity: 0.6;
}

.radio-thumb .radio-thumb-url>img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.radio-thumb .resume_wrap {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: auto;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    transition: 0.3s ease all;
}

.radio-thumb .resume_wrap span {
    vertical-align: top;
}

.radio-thumb .resume_wrap .btn_share ul.social-share {
    left: 0;
    right: auto;
}

.radio-thumb .resume_wrap .btn_share .social-share:after {
    left: 5px;
    right: auto;
}

.radio-item:hover .radio-thumb .resume_wrap,
.radio-item.active .radio-thumb .resume_wrap {
    opacity: 1;
    visibility: visible;
}


.radio-content {
    /*flex: 1;*/
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.radio-content .radio-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
}

.radio-content .radio-duration {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 18px;
    color: var(--white);
}

.radio-content .radio-description {
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.4;
}

.play_push_btn {
    display: flex;
    width: 38px;
    min-width: 38px;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
    display: none;
}

.play_push_btn.active {
    display: block;
}

.radio-player-item h3 {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 6px;
}

.radio-player-item p {
    color: rgba(255, 255, 255, 0.30);
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

.radio-player-right .duration {
    color: rgba(255, 255, 255, 0.30);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    display: block;
    padding-right: 35px;
}

.radio-player-right {
    display: flex;
    align-items: center;
    width: 152px;
}

.widget_item.active .widget_link img {
    opacity: 1;
}

.radio-player-right .widget_item {
    position: relative;
}

.radio-player-right .btn_share {
    margin-right: 25px;
}


.radio-player-right .btn_share .widget_link {
    height: 30px;
    width: 44px;
    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>img {
    opacity: 0.3;
}

.radio-player-right .btn_share:hover .widget_link>img {
    opacity: 1;
}

/*.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: -140px;
}

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

.radio-player-right .btn_share ul.social-share li a:hover {
    background-color: #000;
}

.add-new-playlist>a {
    display: block;
}

.add-new-playlist>a img {
    display: block;
    opacity: 0.3;
}

.add-new-playlist>a:hover img {
    opacity: 1;
}

.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;
}

.video-info-panel .more-episode-outer-wrap {
    overflow: auto;
    height: calc(100vh - 110px);
    padding: 0 40px 40px;
}

.more-episode-wrap {
    position: relative;
    display: block;
}

.more-episode-wrap .owl-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    right: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    max-width: 100%;
    width: 100%;
}

.more-episode-carousel {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -6px;
}

.more-episode-carousel.owl-carousel {
    margin: 0;
    padding: 0 4.5%;
}

.video-info-inner .btn_share ul.social-share {
    left: -22px;
    right: auto;
    top: -92px;
}

.more-episode-wrap .owl-carousel .owl-nav button.owl-next,
.more-episode-wrap .owl-carousel .owl-nav button.owl-prev {
    width: 50px;
    height: 117px;
    pointer-events: all;
    border-radius: 10px 0px 0px 10px;
    background-color: rgba(0, 0, 0, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-episode-wrap .owl-carousel .owl-nav button.owl-next {
    margin: 0;
    background-image: url(../images/chevron_right.svg);
}

.more-episode-wrap .owl-carousel .owl-nav button.owl-prev {
    background-image: url(../images/chevron_left.svg);
    border-radius: 0px 10px 10px 0px;
    margin: 0;
}


.more-episode-carousel>.item {
    width: 17.983%;
    padding: 0 6px;
}

.more-episode-wrap .item {
    margin-bottom: 40px;
}

.more-episode-wrap .episode_item>a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 18px;
}
.full_video_box_wrap .video_info_box .episode_img {
    position: relative;
    padding-bottom: 145px;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    max-width: 255px;
}

.full_video_box_wrap .video_info_box .episode-content {
    max-width: calc(100% - 275px);
}

.active_show .episode_img {
    border-color: var(--primary);
}

.full_video_box_wrap .video_info_box .episode_img img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    top: 0;
    display: block;
}

.episode_item .epi_no {
    color: var(--white);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 12px;
}

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

.episode_item .episode-content .tv_show_resume_wrap {
    display: flex;
    margin-bottom: 12px;
}

.episode_item .episode-content .tv_show_resume_wrap .play-progress {
    min-width: 150px;
    margin-left: 5px;
}

.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 {
    margin: 0 auto;
    width: 100%;
    transition: 0.5s all;
    display: none;
    height: 100vh;
}

.full_video_box_wrap .video_info_box .episode-close-btn {
    cursor: pointer;
    position: relative;
    left: 40px;
    right: auto;
    top: -55px;
    display: flex;
    z-index: 9;
    width: 26px;
    height: 16px;
    align-items: center;
    justify-content: center;
}

.episode-close-btn img {
    width: 100%;
    max-width: 26px;
}

.show-more-ep .more-episode-sec:before {
    content: "";
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    right: auto;
    background: #000;
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
}

.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.svg);
    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-wrapper h1 {
    color: var(--primary);
    text-align: center;
    font-size: 45px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    margin-bottom: 30px;
}

.accrodion-item {
    border-bottom: 1px solid #D9DBE9;
    padding: 35px 40px;
    position: relative;
}

.accrodion-item:last-child {
    border: none;
    border-bottom: unset;
}

.accrodion-content {
    margin-top: 40px;
    display: none;
}

.accrodion-item .accrodion-title {
    background-image: url(../images/icon-plus.svg);
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 40px;
    cursor: pointer;
}

.accrodion-item.active .accrodion-title {
    background-image: url(../images/icon_minus.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%;
}

.get-in-touch-sec h1 {
    color: var(--primary);
    text-align: center;
    font-size: 45px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 55px;
}

.get-in-touch-wrapper {
    max-width: 578px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.get-in-touch-wrapper .contact_info_wrap {
    margin-right: 16px;
    max-width: 366px;
    width: 100%;
}

.social_icons_wrapper {
    max-width: 197px;
    width: 100%;
}

.contact_info {
    border-radius: 5px;
    background: #FFF;
    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(--black);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 4px;
}

.contact_info p {
    color: rgba(0, 0, 0, 0.25);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.contact_info .details {
    padding-left: 20px;
    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: 500;
    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_inner .social-login-btn>ul {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 35px auto 0;
}

.comm_auth_inner .social-login-btn>ul li {
    background: linear-gradient(115.95deg, rgba(0, 0, 0, 0.6) 10.92%, rgba(0, 0, 0, 0.08) 96.4%);
    border: 1px solid #FFFFFF4D;
    backdrop-filter: blur(76.14620971679688px);
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    ;
}

.comm_auth_inner .social-login-btn>ul li>a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.comm_auth_inner .social-login-btn>ul li img {
    max-width: 20px;
    width: 100%;
    display: block;
}

.account.comm_auth_sec .comm_auth_inner {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.comm_auth_inner .auth-card {
    padding: 46px 72px 36px;
    max-width: 585px;
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    background: linear-gradient(115.95deg, rgba(0, 0, 0, 0.6) 10.92%, rgba(0, 0, 0, 0.08) 96.4%);
    backdrop-filter: blur(76.14620971679688px);
    position: relative;
}

.comm_auth_inner .auth-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(110.43deg, #F8C705 5.85%, #D64527 46.12%, #93073E 94.01%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    border-radius: 10px;
    z-index: 1;
}

.recaptcha-wrapper {
    margin-top: 50px;
}

.recaptcha-wrapper img {
    max-width: 345px;
    width: 100%;
    margin: 0 auto;
    display: block;
}

.comm_auth_inner .edit-wrap input {
    padding-right: 90px;
}

input:disabled,
a[disabled] {
    background-color: #888585;
    pointer-events: none;
    opacity: 0.5;
}

.comm_auth_inner .edit-wrap .edit-txt {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--white);
    border: 1px solid #8AC0FF;
    background-color: var(--black);
    position: absolute;
    top: 5px;
    right: 8px;
    left: auto;
    padding: 21px 14px;
    border-radius: 10px;
}

.comm_auth_title {
    margin-bottom: 30px;
}

.comm_auth_title h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.form-group-wrapper {
    max-width: 440px;
    width: 100%;
}

.pop-up-content-wrap .form-group-wrapper {
    margin: 0 auto;
}

.change-password-wrapper .steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
}

.change-password-wrapper .step {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid #FFFFFF33;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: 700;
    color: #FFFFFF4D;
    position: relative;
}

.change-password-wrapper .step.active,
.change-password-wrapper .step.completed {
    border-color: var(--white);
    color: var(--white);
}

.change-password-wrapper .step-line {
    width: 107px;
    height: 1px;
    background: #FFFFFF33
}


.change-password-wrapper .form-step {
    display: none;
}

.change-password-wrapper .form-step.active {
    display: block;
}

.comm_auth_inner .form-text {
    margin-bottom: 20px;
}

.comm_auth_inner .form-text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: var(--white);
    margin: 0;
}

.form-group {
    position: relative;
}

.account_form_wrap .form-group .change-txt {
    color: var(--white);
    margin-bottom: 10px;
}

.account_form_wrap .form-group .change-txt.edit_email {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0%;
    position: absolute;
    right: 10px;
    left: auto;
    z-index: 1;
    /* height: calc(100% - 28px); */
    padding: 12px 10px;
    border-radius: 4px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.form-group.edit-email input {
    padding-right: 90px;
}

.form-group+label {
    color: var(--white);
    display: block;
    margin-bottom: 10px;
}

.form-group:not(:last-child) {
    margin-bottom: 18px;
}

i.toggle-password {
    height: 56px;
    width: 24px;
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background-image: url(../images/hide_pwd.svg);
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    background-size: 100% auto;
    z-index: 2;
}

i.toggle-password.show_pwd {
    background-image: url(../images/show_pwd_icon.svg);
}

input,
.iti input,
.iti input[type=text],
.iti input[type=tel] {
    color: var(--black);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 10px;
    background-color: var(--white);
    padding: 11px 18px;
    width: 100%;
    height: 69px;
    border: 1px solid #8AC0FF;
}

input::placeholder {
    color: rgba(0, 0, 0, 0.92);
    font-weight: 400;
}

.form-group .pwd_input {
    padding-right: 38px;
}

.iti__flag {
    display: none;
}

.iti--separate-dial-code .iti__selected-dial-code {
    color: var(--primary);
}

.iti--separate-dial-code .iti__selected-flag:before {
    position: absolute;
    content: "";
    background: rgba(255, 255, 255, 0.5);
    height: 18px;
    width: 1px;
    right: 0;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
}

.custom_link {
    color: var(--white);
    text-align: center;
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.custom_link.change-email {
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    text-decoration: underline;
}

.custom_link:hover {
    color: var(--primary);
}

.custom_link.reset {
    text-decoration: underline;
}

.custom_link.reset.disabled {
    color: gray;
    cursor: not-allowed;
    pointer-events: none;
}

.comm_auth_inner .links_wrap {
    padding-top: 30px;
    text-align: center;
}

.links_wrap>div {
    text-align: center;
}

.comm_auth_inner .btn_wrap {
    padding-top: 40px;
    max-width: 440px;
    width: 100%;
    text-align: center;
}

.comm_auth_inner .btn_wrap .gradient-btn {
    max-width: 100%;
}

.custom-model-main .btn_wrap .gradient-btn {
    max-width: 65%;
}

.comm_auth_inner .btn_wrap .delete_acc_btn {
    margin-top: 40px;
}

.comm_auth_inner .btn_wrap .success-msg {
    margin-top: 28px;
    background: #1f691f;
    color: var(--white);
}

.comm_auth_inner .btn_wrap .error-msg,
.custom-model-main .btn_wrap .error-msg {
    background: #A5225D;
    color: var(--white);
}

.comm_auth_inner .btn_wrap .error-msg {
    margin-top: 28px;
}

.btn_wrap.two_col {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comm_auth_inner .btn_wrap .btn_one+* {
    margin-top: 20px;
}

.default_btn {
    color: var(--black);
    text-align: center;
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    border-radius: 4px;
    background: #FFF;
    padding: 22px 35px;
    vertical-align: top;
    min-height: 65px;
}

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

.default_btn.dlt_acc {
    color: #F00;
}

.show-feature-wrapper .HeroSlider-info .inner_wrap .default_btn,
.left-ttl-box .default_btn {
    max-width: 405px;
    width: 100%;
}

.tab-menu {
    margin-bottom: 40px;
}

.tab-menu ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
}

.tab-menu ul li a {
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.7);
}

.tab-menu ul li a.active {
    font-weight: 700;
    color: var(--white);
}

.registration_form_wrap .description {
    max-width: 507px;
    width: 100%;
    margin: 30px auto 0;
}

.g-recaptcha>div {
    margin: 30px auto;
}

.registration_form_wrap .otp-bottom-txt {
    margin-top: 18px;
}

.comm_auth_inner p {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.otp-input-fields {
    max-width: 430px;
    margin: 30px auto 0;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.otp-input-fields input {
    height: 69px;
    width: 58px;
    text-align: center;
    padding: 0;
    background: linear-gradient(115.95deg, rgba(0, 0, 0, 0.6) 10.92%, rgba(0, 0, 0, 0.08) 96.4%);
    border: 1px solid #FFFFFF4D;
    backdrop-filter: blur(105.08177185058594px);
    border-radius: 14px;
    margin: 0;
    color: var(--white);
}

.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: 375px;
    margin: 25px auto 0;
}

.otp_info_box p {
    margin-bottom: 15px;
}

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

.otp_msg_box {
    padding: 30px 0 0;
}

.comm_auth_inner .otp_info_box p,
.comm_auth_inner .otp_msg_box p {
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 10px;
    color: var(--white);
    position: relative;
}

.otp_msg_box .success {
    color: #23E44D;
}

.otp_msg_box .success:before {
    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: text-bottom;
    margin-right: 5px;
}

.otp_msg_box .otp_failure {
    color: #D42929;
}

.otp_msg_box .otp_failure:before {
    content: "";
    height: 15px;
    width: 15px;
    background-image: url(../images/otp-wrong-icon.svg);
    background-repeat: no-repeat;
    background-position: left center;
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 5px;
}

.otp_msg_box .otp_time {
    background: linear-gradient(90deg, #FFE000 0%, #D64527 50%, #93073E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

select,
.form-group select {
    color: #4F4F4F;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: none;
    border-radius: 10px;
    padding: 11px 18px;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/down-arrow.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 40px) 50%;
    height: 69px;
}

select option,
.form-group select option {
    color: var(--black);
}

/* input.hasDatepicker {
    background-image: url(../images/calendar-icon.svg);
    background-position: calc(100% - 12px) 50%;
    background-repeat: no-repeat;
} */
.form-group img.ui-datepicker-trigger {
    cursor: pointer;
    position: absolute;
    right: auto;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    object-position: calc(100% - 40px) center;
    object-fit: none;
}

.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: 1070px;
    margin: 80px auto 0;
    width: 100%;
}

.user_profile_main .comm_auth_title {
    text-align: center;
    margin-bottom: 50px;
}

.user_profile_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.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;
    overflow: hidden;
    transition: 0.5s all;
    border-radius: 100px;
}

.avatar_list .avatar_img.active::before,
.profile_item.active .profile_img::before,
.profile_item:hover .profile_img::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    background: linear-gradient(153.14deg, #F8C705 16.81%, #DB501F 52.15%, #93073E 85.5%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    border-radius: 100px;
}

.profile_img img {
    object-fit: cover;
    display: block;
}

.edit_profile {
    width: 51px;
    height: 34px;
    background-color: transparent;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 30px auto 0;
}

.edit_profile::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(180deg, #F8C705 0%, #D64527 47.6%, #93073E 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    border-radius: 6px;
}

.edit_profile img {
    max-width: 20px;
    display: block;
    width: 100%;
}

.profile_item:hover .edit_profile {
    opacity: 1;
    visibility: visible;
}

.profile_name {
    margin-top: 20px;
    text-align: center;
}

.profile_name h4 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: var(--white);
}

.edit_profiler_form .profile_item {
    padding: 0;
    margin: 0 auto;
    max-width: 176px;
    width: 100%;
}

.edit_profiler_form .form-group-wrapper {
    margin: 30px auto 0;
}

.edit_profiler_form .edit_profile {
    margin: 0 auto;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(4px);
    background: #5D5B5B80;
}

.edit_profiler_form .edit_profile a.avatar_popup_btn {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose_avatar_wrapper {
    overflow: auto;
}

.choose_avatar_wrapper .avatar_list {
    max-width: 100%;
    margin: 0px auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 15px 20px;
    gap: 30px;
}

.avatar_list .avatar_img {
    max-width: 16.66%;
    width: 100%;
    /* padding: 0 10px; */
    /* margin-bottom: 30px; */
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.avatar_list .avatar_img img {
    transition: 0.3s all;
    width: 100%;
    display: block;
}

.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% - 15px);
    margin: 30px auto;
    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;
    opacity: 0;
    visibility: hidden;
}

.model-open .custom-model-inner {
    opacity: 1;
    visibility: visible;
}

.custom-model-wrap {
    display: block;
    width: 100%;
    position: relative;

    outline: 0;
    text-align: left;
    padding: 20px;
    -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;
}

.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;
    transition: 0.3s all;
}

.close-btn:hover {
    opacity: 1;
}

.avatar_popup .custom-model-inner {
    max-width: 890px;
    padding: 40px 0;
}

.avatar_popup .custom-model-wrap {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    max-height: calc(100vh - 245px);
}

.choose_avatar_wrapper .btn_wrap {
    text-align: center;
    margin: 20px 0 30px;
}

.delete_acc_btn,
.dlt_profile_btn {
    border-radius: 8px;
    background-color: #2C2C2C;
    padding: 10px 12px;
    color: #FF0000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.delete_account_popup h2,
.confirm_delete_popup h2,
.edit_email_popup h2,
.check_otp_section h2 {
    color: var(--white);
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 32px;
}

.confirm_delete_popup h2 {
    margin-bottom: 0;
}

.confirm_delete_popup .custom-model-wrap {
    padding: 60px 20px;
}

.pop-up-content-wrap .btn_wrap {
    padding-top: 30px;
    text-align: center;
}

.account_form_wrap {
    position: relative;
}


.tab-box {
    display: none;
}


.user_profile {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.user_profile:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 100%;
    left: 0;
    right: 0;
    bottom: -16px;
}

.user_profile .user_name {
    background-image: url(../images/user_down_arrow.svg);
    background-position: right center;
    background-repeat: no-repeat;
    padding-right: 23px;
    margin-right: 20px;
}

.user_profile:hover .user_name p {
    font-weight: 500;
    opacity: 1;
}

.user_name p {
    color: var(--primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.5;
}

.user_img img {
    display: block;
    height: 38px;
    width: 38px;
    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);
    right: -20px;
    width: 135px;
    opacity: 0;
    border-radius: 4px;
    background: linear-gradient(110deg, rgba(217, 217, 217, 0.31) -0.15%, rgba(217, 217, 217, 0.18) -0.14%, rgba(217, 217, 217, 0.09) 73.53%);
    box-shadow: 0px 4px 24px -1px rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(15px);
    transform: translateY(-10px);
    visibility: hidden;
    transition: 300ms;
    padding: 12px 6px;
    text-align: left;
    pointer-events: none;
}

.user_profile_wrapper:hover .profile_dropdown_menu,
.profile_dropdown_menu.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.profile_dropdown_menu ul li a {
    color: var(--primary);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 10px 8px;
    display: block;
    border-radius: 2px;
}

.profile_dropdown_menu ul li a:hover {
    background-color: var(--black);
}

.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;
}

.avatar_popup_list .avatar_img {
    opacity: 0.5
}

.avatar_popup_list .avatar_img.active,
.avatar_popup_list .avatar_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 {
    overflow: hidden;
}


/* .tab-content:not(.current) {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
} */

.playlist_wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    margin-bottom: 15px;
    position: relative;
}

.tab-content .playlist_wrapper {
    max-height: calc(100vh - 265px);
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    scrollbar-width: none;
}

.tab-content .playlist_wrapper::-webkit-scrollbar {
    width: 0;
}

.playlist_item {
    width: 25%;
    position: relative;
    padding: 0 10px;
    margin-bottom: 20px;
}

.playlist_item>a {
    display: block;
}

.playlist_item .playlist_img {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.playlist_item.edit-mode .playlist_img img {
    opacity: 0.5;
}

.playlist_item .checkbox-wrap {
    position: absolute;
    top: 20px;
    right: 20px;
    left: auto;
    opacity: 0;
    visibility: hidden;
}

.playlist_item.edit-mode .checkbox-wrap {
    opacity: 1;
    visibility: visible;
}

/* checkbox input */
.playlist_item input[type="checkbox"] {
    width: 39px;
    height: 39px;
    appearance: none;
    -webkit-appearance: none;
    background: #D9D9D9;
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    /* display:none; */
}

/* show checkbox in edit mode
.cards.edit-mode .card input[type="checkbox"]{
    display:block;
} */

.playlist_item input[type="checkbox"]:checked::after {
    content: "";
    height: 30px;
    width: 30px;
    display: block;
    background-image: url(../images/tick-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 28px;
}

/* .playlist_item:has(input:checked){
    border:2px solid #00a2ff;
} */

.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_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;
    transition-delay: unset;
}

.playlist_item .action-div {
    top: 50%;
    transform: translateY(-50%) scale(0);
    transition: 0.5s ease all;
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
    z-index: 1;
    bottom: auto;
    transform-origin: center center;
}

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

.playlist_item .action-div .common_icon_box {
    height: 40px;
    width: 40px;
    border-radius: 100px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.playlist_item .action-div .common_icon_box svg {
    max-width: 24px;
}

.playlist_item .action-div .common_icon_box svg path {
    color: var(--black);
}

.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: rgba(255, 255, 255, .1);
    padding: 12px 12px 12px 20px;
    border-radius: 0px 0px 6px 6px;
}

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

.playlist_content_wrap h5 {
    color: var(--primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.playlist_action_btn {
    display: flex;
}

.playlist_action_btn .play_list_icon {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2px;
}

.play_list_icon.active {
    background-color: var(--white);
}

.play_list_icon.active img {
    filter: brightness(0) invert(0);
}

.playlist_action_btn .play_list_icon:hover {
    background-color: var(--white);
}

.playlist_action_btn .play_list_icon: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;
}

.playlist_content_wrap h5 {
    margin-bottom: 5px;
}

.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: 315px;
    margin: 0 auto 40px;
}

.reset_password_msg p {
    margin-bottom: 15px;
}

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

.opt_sent_txt {
    padding-top: 16px;
    max-width: 312px;
    margin: 0 auto;
    border-top: 1px solid #00FF47;
    margin-top: 40px;
}

.opt_sent_txt p {
    color: var(--primary);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    /* 28px */
}


.search_popup {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    height: 100%;
    background: var(--bcolor);
    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;
    flex-wrap: wrap;
}

.search_popup_right .search-bar button {
    position: absolute;
    right: 30px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
}

.search_popup_inner .header-logo-block {
    width: 20%;
}

.search_popup_inner .search_popup_right {
    width: 100%;
    margin: 0 auto;
}

.search_popup_header {
    padding: 15px 0 0;
}

.search_popup .search_popup_inner {
    margin-bottom: 20px;
}

.search_popup_right .search-form {
    display: flex;
}

.search_popup_right .search-bar {
    width: 100%;
    position: relative;
}

.search_popup_right .search-bar::before {
    content: "";
    position: absolute;
    pointer-events: none;
    inset: 0px;
    padding: 1px;
    background: linear-gradient(110.43deg, #F8C705 5.85%, #D64527 46.12%, #93073E 94.01%);
    mask: linear-gradient(rgb(255, 255, 255) 0px, rgb(255, 255, 255) 0px) content-box exclude, linear-gradient(rgb(255, 255, 255) 0px, rgb(255, 255, 255) 0px);
    border-radius: 10px;
    z-index: 1;
}

.search_popup_right .search-bar input {
    width: 100%;
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    padding: 36px 35px;
    padding-right: 110px;
    border-radius: 10px;
    background: linear-gradient(115.95deg, rgba(0, 0, 0, 0.6) 10.92%, rgba(0, 0, 0, 0.08) 96.4%);
    backdrop-filter: blur(76.14620971679688px);
}

.search_popup_right .search-bar input::placeholder {
    color: #FFFFFFB2;
}

.close-search {
    color: rgba(255, 255, 255, 0.3);
    font-style: normal;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: flex-end;
    margin-bottom: 20px;
    height: 36px;
    width: 36px;
    margin-left: auto;
}

.close-search img {
    display: block;
    max-width: 28px;
    width: 100%;
}

.voice-search {
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    left: auto;
    right: 70px;
}

.search-no-results {
    text-align: center;
    width: 100%;
}

.search-no-results h3 {
    color: var(--white);
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
    margin-top: 20px;
}

.my-list-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 30px;
}

.my-list-wrap .tab-menu {
    margin-bottom: 0;
}

.my-list-wrap .edit-btn-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.my-list-wrap .gradient-btn,
.my-list-wrap .default_btn {
    min-width: 164px;
    font-size: 16px;
    padding: 18px 20px;
    min-height: 58px;
}

.my-list-wrap .delete-btn {
    display: none;
}

.tab-menu.tab-btn ul,
.search_result .tab-menu ul {
    gap: 22px;
    justify-content: center;
}

.tab-menu.tab-btn ul {
    justify-content: flex-start;
}

.tab-menu.tab-btn ul>li>a,
.search_result .tab-menu ul>li>a {
    font-size: 16px;
    font-weight: 400;
    color: #F5F5F5;
    background: #2C2C2C;
    padding: 19px 16px;
    border-radius: 8px;
    position: relative;
}

.tab-menu.tab-btn ul>li>a.active::before,
.search_result .tab-menu ul>li>a.active::before {
    content: "";
    position: absolute;
    pointer-events: none;
    inset: 0px;
    padding: 1px;
    background: linear-gradient(249.26deg, #E6D002 -16.78%, #E35523 49.23%, #86013D 115.24%);
    mask: linear-gradient(rgb(255, 255, 255) 0px, rgb(255, 255, 255) 0px) content-box exclude, linear-gradient(rgb(255, 255, 255) 0px, rgb(255, 255, 255) 0px);
    border-radius: 8px;
    z-index: 1;
}

.search_result h2 {
    color: var(--white);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}

.search_result {
    padding-top: 60px;
    max-height: calc(100dvh - 120px);
    overflow: auto;
    padding-bottom: 70px;
}

.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;
}

.search_popup .loading i {
    color: var(--primary);
}

.search_list .sec_title h2 {
    margin: 0;
}


.search_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.search_list .search-carousel-wrap {
    width: 100%;
}

.search_list .search-carousel-wrap {
    padding: 0 10px;
    padding-bottom: 60px;
}

.search_list.owl-carousel {
    margin: 0;
}

.search_list>.search-item {
    width: 25%;
    padding: 0 10px;
    margin-bottom: 20px;
}

#radio-shows .search_list>.search-item.square-thumb,
#audios .search_list>.search-item.square-thumb {
    width: 20%;
}

.search-item>a {
    display: block;
}

.search-item .img-wrap {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}
.search-item .img-wrap::before{
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(249.26deg, #E6D002 -16.78%, #E35523 49.23%, #86013D 115.24%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease all;
}
.search-item:hover .img-wrap::before{
    opacity: 1;
    visibility: visible;
}
.search-item:hover .img-wrap img{
    transition: 0.3s ease all;
}
.search-item:hover .img-wrap img{
    transform: scale(1.05);
}
.search-item.square-thumb .img-wrap {
    padding-bottom: 100%;
}

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

.radioPlayer {
    position: absolute;
    bottom: 15px;
    width: 100%;
    z-index: 4;
    left: 0;
    right: auto;
}

.radio_player_wrap {
    padding: 18px 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    background: linear-gradient(115.95deg, rgba(0, 0, 0, 0.6) 10.92%, rgba(0, 0, 0, 0.08) 96.4%);
}

.radio_player_wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(110.43deg, #F8C705 5.85%, #D64527 46.12%, #93073E 94.01%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    border-radius: 10px;
}

.radio_player_wrap .close {
    position: absolute;
    right: 0;
    left: auto;
    top: 0;
    border-radius: 0px 5px;
    border: 2px solid #17242A;
    background: #FF8B00;
    width: 31px;
    height: 31px;
}

.radio_player_wrap .close>a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.radio_player_wrap .close>a svg {
    max-width: 16px;
}

.radio_player_wrap .close img {
    display: block;
}

.left_part {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 35px;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
}

.live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #FF0000;
}

.play-btn i {
    font-size: 28px;
    color: var(--white);
}

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

.right_part {
    width: calc(100% - 50%);
}


.track_img {
    width: 80px;
    min-width: 80px;
    margin-right: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.track_img img {
    display: block;
}

.radio_channel h5 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 4px;
}

.radio_channel span {
    color: rgba(255, 255, 255, 0.30);
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

.radioPlayer .slider {
    background: #FFFFFF80;
    border-radius: 100px;
    height: 4px;
    width: 79px;
    position: relative;
}

.radioPlayer .slider .progress {
    background-color: var(--white);
    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: flex-end;
}

.player_btn_wrap svg {
    display: block;
    width: 22px;
    height: 22px;
}

.player_btn_wrap *+* {
    margin-left: 16px;
}

.player_play_btn,
.player_mute,
.player_speed {
    width: 42px;
    height: 30px;
    padding: 7px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: 1px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.player_play_btn {
    filter: brightness(0) invert(1);
}

.player_play_btn.active,
.player_mute.active {
    filter: unset;
    background-color: var(--white);
}

.player_mute.active img {
    filter: brightness(1) invert(1);
}

.player_mute img {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.player_mute .vol-off {
    opacity: 0;
    visibility: hidden;
}

.player_mute.active>img {
    opacity: 0;
    visibility: hidden;
}

.player_mute.active .vol-off {
    opacity: 1;
    visibility: visible;
}

.player_speed {
    color: var(--white);
    font-family: var(--primary-font);
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
}

.player_control {
    width: 100%;
}

.current-time,
.duration-time {
    color: rgba(255, 255, 255, 0.30);
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.volume-controls {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.player_devices {
    margin-right: 15px;
}

.volume-controls .mute_unmute img,
.player_devices img {
    display: block;
    width: 15px;
    min-width: 15px;
}

.volume-controls .slider {
    max-width: 80px;
    margin-left: 10px;
}

.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__country-list .iti__country {
    color: var(--black);
}

.iti__flag-container .iti__arrow {
    border-top: 4px solid #FFF;
}

.iti__flag-container .iti__arrow--up {
    border-bottom: 4px solid #FFF;
    border-top: none;
}

.body-hidden {
    overflow: hidden;
}

.show_in_mobile {
    display: none;
}

img.lozad {
    font-size: 0;
}


.lozad {
    opacity: 0;
    filter: blur(30px);
    transition: all 0.5s ease;
}

[data-loaded="true"] {
    opacity: 1;
    filter: unset;
    transition-delay: 0.3s;
}

.body-hidden {
    overflow: hidden;
}

.d-none {
    display: none;
}

.owl-nav.disabled {
    display: none;
}


.nav .sub-menu {
    position: absolute;
    top: calc(100% + 150px);
    left: 0;
    right: auto;
    margin: 0 auto;
    background: rgba(255, 255, 255, .9);
    /*    display: none;*/
    z-index: 2;
    width: 100%;
    min-width: 267px;
    padding: 0;
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transition: 0.3s all ease;
}

.nav .sub-menu:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -12px;
    left: 56px;
    right: auto;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 12px solid rgba(255, 255, 255, .9);
}

.nav li.has-dropdown.open .sub-menu {
    top: 100%;
    /*    display: block;*/
    pointer-events: auto;
    opacity: 1;
    visibility: visible;

}

.nav .sub-menu li {
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
}

.nav .sub-menu li a {
    color: #1B1B1B;
    font-family: var(--primary-font);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    padding: 15px 12px;
    display: block;
}

.nav .sub-menu li a:hover,
.nav .sub-menu li.active a {
    background-color: #FF8B00;
    color: var(--black);
}

.nav .sub-menu li.active>a {
    font-weight: 700;
}

.signup_page .footer,
.login_page .footer {
    display: none;
}

.video_page header,
.video_page footer {
    display: none;
}

.terms-box {
    margin-top: 30px;
}

.terms-box input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.terms-box label {
    position: relative;
    cursor: pointer;
    color: var(--white);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.terms-box label:before {
    content: '';
    -webkit-appearance: none;
    background-color: var(--white);
    height: 15px;
    width: 15px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 2px;
}

.terms-box input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../images/tick_icon.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    width: 15px;
    height: 15px;
}

.terms-box input:checked+label:before {
    background-color: var(--primary);
}

.profile_dropdown {
    position: relative;
}

.profile_dropdown .prfile_label {
    color: var(--black);
    text-align: center;
    font-family: var(--primary-font);
    border-radius: 28px;
    background-color: var(--primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: block;
    padding: 8px 16px;
    cursor: pointer;
}

.profile_menu_list {
    position: absolute;
    background-color: rgba(255, 255, 255, .9);
    right: 0;
    width: 267px;
    text-align: left;
    top: calc(100% + 20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(60px);
    transition: 0.5s all;
}

.profile_dropdown:hover .profile_menu_list {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: unset;
}

.profile_menu_list:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -12px;
    left: auto;
    right: 40px;
    margin: 0 auto;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 12px solid rgba(255, 255, 255, .9);
}

.profile_menu_list:after {
    position: absolute;
    content: "";
    height: 25px;
    width: 100%;
    top: -22px;
    left: 0;
    right: 0;
}

.profile_menu_list li a {
    color: var(--secondary);
    font-family: var(--primary-font);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    display: block;
    padding: 15px 15px;
}

.profile_menu_list li a:hover {
    background-color: var(--primary);
}

.inner_menu {
    margin-top: 104px;
    background-color: #17242A;
    /*position: sticky;*/
    top: 104px;
    z-index: 9;
    transition: 0.5s all;
}

.header.fixed+.inner_menu {
    top: 90px;
}

.inner_menu_link {
    display: flex;
    align-items: center;
}

.inner_menu_link .logo_box {
    width: 100%;
    max-width: 106px;
    margin-right: 20px;
}

.inner_menu_link .logo_box>a {
    vertical-align: top;
}

.inner_menu_link .logo_box>a img {
    display: block;
}

.inner_menu+section {
    padding-top: 45px;
}

.inner_menu+section.live-page-banner,
.inner_menu+.hero-section.inner-single-banner {
    padding-top: 0;
}

.inner_menu+.comm_auth_sec {
    padding-top: 100px;
}

.inner_menu_link ul {
    display: flex;
    align-items: center;
}

.inner_menu_link ul li {
    padding: 40px 0;
}

.inner_menu_link ul li+* {
    margin-left: 40px;
}

.inner_menu_link ul li a {
    color: var(--white);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    /* 131.25% */
    position: relative;
}

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

.inner_menu_link ul li a:before {
    position: absolute;
    content: "";
    width: 11px;
    height: 2px;
    background-color: var(--primary);
    left: 0;
    right: auto;
    bottom: -5px;
    border-radius: 100px;
    opacity: 0;
}

.inner_menu_link ul li.active a:before {
    opacity: 1;
}

.main-wrapper section.fullpage-video {
    padding: 0;
    overflow: hidden;
}

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

/* .hide-header .vid_back_btn,
.hide-header .banner-action-div,
.hide-header .video_info_box {
    opacity: 0;
    pointer-events: none;
} */

.fullpage-video iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.full_video_box_wrap {
    position: relative;
}
.full_video_box_wrap > .container{
    max-width: 100%;
}

.full_video_box_wrap .video_info_box {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    z-index: 999;
    padding: 65px 3.2% 0;
}
.video_info_box *{
    transition: 0.3s ease all;
}
.hide-header .video_info_box .vid_back_btn,
.hide-header .video_info_box .video-show,
.hide-header .video_info_box .video-info-btn{
    opacity: 0;
    visibility: hidden;
}
.video_info_box .vid_back_btn,
.video_info_box .video-show,
.video_info_box .video-info-btn{
    opacity: 1;
    visibility: visible;
}
.video_info_box.active .vid_back_btn, .video_info_box.active .video-show {
    opacity: 1;
    visibility: visible;
}
.video_info_box.active .video-info-btn{
    opacity: 1;
    visibility: visible;
}
.hide-header .full_video_box_wrap .video_info_box:before{
    opacity: 0;
}
.hide-header .full_video_box_wrap .video_info_box.active:before{
    opacity: 1;
} 

.full_video_box_wrap .video_info_box:before {
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    top: 0;
    height: 245px;
    width: 100%;
    left: 0;
    right: auto;
    pointer-events: none;
}

.full_video_box_wrap .video_info_box * {
    position: relative;
    z-index: 2;
}

.full_video_box_wrap .video_info_box h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
}

.full_video_box_wrap .video_info_box p {
    font-size: 16px;
    font-weight: 300;
    line-height: 120%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vid_back_btn>a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

/* .full_video_box_wrap:before {
    position: absolute;
    content: "";
    background-image: url(../images/hero-overlay.png);
    height: 100%;
    width: 100%;
    top: 0;
    z-index: 1;
    pointer-events: none;
    background-size: cover;
    background-repeat: no-repeat;
} */

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

.full_video_box_wrap .banner-action-div {
    padding-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.full_video_box_wrap .banner-action-div .common_icon_box {
    max-width: unset;
    width: auto;
    margin: 0;
}

.full_video_box_wrap .common_icon_box .widget_link img {
    max-width: 28px;
    width: 100%;
    margin: 0 auto 10px;
}

.fullpage-video .btn-skip {
    position: absolute;
    right: 0;
    left: auto;
    z-index: 99;
    bottom: 160px;
    right: 85px;
    left: auto;
}

.fullpage-video .btn-skip>a {
    color: var(--white);
    font-family: var(--primary-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: 1px solid var(--white);
    padding: 11px 24px;
    border-radius: 8px;
}

.fullpage-video .banner-action-div ul.social-share li a img {
    max-width: 18px;
}

.video-info-btn {
    background: linear-gradient(115.95deg, rgba(0, 0, 0, 0.6) 10.92%, rgba(0, 0, 0, 0.08) 96.4%);
    backdrop-filter: blur(76.14620971679688px);
    border-radius: 10px;
    width: 116px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: auto;
    cursor: pointer;
    margin-top: -60px;
}

.video-info-btn .episode_icon {
    display: none;
}

.video-info-btn.more-ep>img {
    display: none;
}

.video-info-btn.more-ep img.episode_icon {
    display: block;
    max-width: 24px;
    width: 100%;
}

.video-info-btn.active {
    background: linear-gradient(115.95deg, #BA9607 10.92%, #D44429 54.07%, #990C3C 96.4%);
}

.video-info-btn::before {
    content: "";
    position: absolute;
    pointer-events: none;
    inset: 0px;
    padding: 1px;
    background: linear-gradient(110.43deg, #F8C705 5.85%, #D64527 46.12%, #93073E 94.01%);
    mask: linear-gradient(rgb(255, 255, 255) 0px, rgb(255, 255, 255) 0px) content-box exclude, linear-gradient(rgb(255, 255, 255) 0px, rgb(255, 255, 255) 0px);
    border-radius: 10px;
}


/* =========================
   SLIDE PANEL
========================= */

.full_video_box_wrap .video_info_box .video-info-panel {
    position: fixed;
    top: 0;
    right: -100%;
    max-width: 678px;
    width: calc(100% - 30px);
    height: 100%;
    background: #00040C;
    padding: 120px 0 0;
    z-index: 1;
    transition: .4s ease;
    transform: translateX(100%);
}

.video-info-panel .video-info-inner {
    height: 100%;
    overflow-y: auto;
    padding: 0 85px 20px;
}

.full_video_box_wrap .video_info_box .video-info-panel.active {
    right: 0;
    transform: translateX(0);
}

.tags-icon-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 5px;
}

.video-info-panel .tags-icon-wrapper {
    padding-bottom: 30px;
}

.tag-icon-box {
    /* width: 53px; */
    /* height: 53px; */
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s ease;
    overflow: hidden;
    padding: 5px 10px;
}

.tag-icon-box img {
    display: block;
    width: 24px;
    height: 24px;
}

.tags-icon-wrapper div img {
    border-radius: 4px;
    max-width: 53px;
    width: 100%;
}


.orange {
    background: #E14F22;
}

.yellow {
    background: #C09900;
}

.green {
    background: #3FA16F;
}

.pink {
    background: #D10566;
}

/* Title */
.full_video_box_wrap .video-title {
    padding: 0 0 20px;
}

.full_video_box_wrap .video-title h2 {
    font-weight: 800;
    font-size: 32px;
    line-height: 130%;
    text-transform: uppercase;
    color: var(--white);
}

.full_video_box_wrap .video-season {
    font-weight: 300;
    font-size: 20px;
    line-height: 120%;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.full_video_box_wrap .video-date {
    font-weight: 300;
    font-size: 14px;
    line-height: 120%;
    text-transform: capitalize;
    color: var(--white);
}

.full_video_box_wrap .video-desc {
    padding-top: 40px;
}

.full_video_box_wrap .video-desc p {
    font-weight: 300;
    font-size: 16px;
    line-height: 120%;
    color: var(--white);
    margin-bottom: 16px;
}

.full_video_box_wrap .video-desc p:last-child {
    margin-bottom: 0;
}

.radio_show_sec .filter_list {
    margin-bottom: 45px;
}

.live-radio_show_wrap,
.radio_show_wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.live-radio_show_wrap:has(.owl-carousel) {
    margin: 0;
}

.live-radio_show_wrap>.ch-item,
.radio_show_item {
    position: relative;
    width: 20%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.live-radio_show_wrap .ch-item>a,
.radio_show_item>a {
    display: block;
    width: 100%;
    position: relative;
}

.radio_show_img {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    background-color: var(--white-10);
}

.live-radio_show_wrap .ch-item .radio_show_img {
    padding-bottom: 100%;
}

.ch-item.current .radio_show_img img {
    outline: 6px solid var(--primary) !important;
    outline-offset: -6px;
}

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

.radio_show_content {
    padding-top: 16px;
}

.radio_show_content h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

.radio_show_content .radio_ep {
    color: #8E8E8E;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    display: block;
    margin-top: 7px;
}

.radio_show_content .tune_in_btn {
    margin-top: 30px;
}

.tune_in_btn {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    color: #011589;
    background-color: var(--white);
    text-align: center;
    font-family: var(--primary-font);
    line-height: normal;
    text-transform: capitalize;
    background-image: url(../images/tune_icon.svg);
    background-position: calc(100% - 12px) 50%;
    background-repeat: no-repeat;
    padding: 6px 40px 6px 12px;
    border-radius: 100px;
    display: inline-block;
    vertical-align: top;
}

.single_radio_details .banner-action-div .common_icon_box .widget_link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.single_radio_details ul.social-share li a img {
    max-width: 16px;
}

.single_radio_wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.single_radio_left {
    width: 416px;
}

.single_radio_right {
    width: calc(100% - 416px);
    padding-left: 54px;
}

.single_radio_details {
    max-width: 400px;
    width: 100%;
}

.single_radio_details h3 {
    color: rgba(255, 255, 255, 0.92);
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 25px */
    margin-bottom: 10px;
}

.single_radio_details P {
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 18.2px */
}

.single_radio_details .banner-action-div.action-button {
    position: static;
    margin-top: 50px;
}

.single_radio_details .banner-action-div.action-button * {
    margin-bottom: 0;
}

.featured_listing .filter_list,
.slider-list-sec .filter_list {
    margin-bottom: 60px;
}

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

.movies.slider .movie_listing .items {
    width: 16.66%;
    padding: 0 8px;
    margin-bottom: 30px;
    background: transparent;
}

.movies.slider .movie_listing .featur-slide .item.info.vertical_thumbnails {
    border: 2px solid var(--primary);
    background: #000000;
}

.movies.slider .movie_listing .items .f_show_img {
    padding-bottom: 127.92%;
}

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

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

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

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

.categorie-wrapper .f_show_listing_wrapper {
    margin: 0 -15px;
}

.categorie-wrapper .f_show_listing_wrapper .items {
    width: 20%;
    padding: 0 15px;
}

.categorie-wrapper .f_show_listing_wrapper .items .featur-slide {
    border-radius: 20px;
    overflow: hidden;
}

.f_show_listing_wrapper .items .featur-slide .f_show_img {
    padding-bottom: 56.25%;
}

.widget_item.active {
    background-color: var(--white);
    border-color: var(--white);
}

.banner-action-div .common_icon_box.widget_item.active .widget_link {
    color: var(--black);
}

.widget_item.active>.widget_link>img {
    filter: brightness(1) invert(1);
}

.show-hero-banner {
    position: relative;
    padding-bottom: 554px;
}

.show-hero-banner:before {
    position: absolute;
    content: "";
    bottom: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/hero-overlay.png);
    z-index: 1;
    pointer-events: none;
    background-size: cover;
}

.show-hero-banner img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    display: block;
    object-fit: cover;
}

.show-feature-wrapper {
    position: relative;
}

.show-feature-wrapper .description {
    max-width: 480px;
    width: 100%;
}

.show-feature-wrapper .HeroSlider-info {
    position: absolute;
    bottom: 120px;
    z-index: 2;
    padding: 0 1.9%;
    width: 100%;
}

.show-feature-wrapper .HeroSlider-info .inner_wrap h2 {
    font-size: 32px;
}

.feature-episode-wrapper {
    margin-top: -90px;
}

/* .feature-episode-wrapper .owl-carousel .owl-nav {
    left: 0;
    right: auto;
} */

.show-feature-wrapper .show-logo img {
    max-width: 158px;
    width: 100%;
}

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

.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-wrapper.vertical-x2 .advanced_movie_slider .show-item .items {
    width: 100%;
}

.show-listing-sec .advanced_movie_slider .show-item .items:hover {
    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%;
}

.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;
    border: 0;
}

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

.HeroSlider-radio .HeroSlider-info {
    position: absolute;
    bottom: 240px;
    left: 0;
    max-width: 100%;
    padding: 0 3.5%;
    z-index: 4;
    margin: auto;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    pointer-events: none;
}

.radio-player-iframe {
    position: relative;
    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;
}

.radio-player-iframe::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/hero-overlay.png);
    z-index: 4;
    top: 0;
    pointer-events: none;
    background-size: cover;
}

.radio-player-iframe>img {
    position: absolute;
    top: 0;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    height: 100%;
    width: 100%;
}

.radio-player-iframe .radio_player_wrap {
    padding-top: 6px;
}

.catchup_video .radio-player-iframe .radio_player_wrap {
    padding-top: 18px;
}

.radio-player-iframe .right_part {
    width: 100%;
}

.radio-player-iframe iframe {
    border: 0;
    height: 70px;
}

.square_thumb .radio_show_img,
.square_thumb.latest-tv_show_listing .tv_show_img {
    padding-bottom: 100%;
}

/* .radio-player-iframe iframe{
    position: absolute;
    bottom: 30px;
    width: 100%;
    z-index: 3;
    left: 0;
    right: auto;
    border: 0;
} */

.header+section.featured-slider-sec {
    padding-top: 160px;
}

.f_show_listing_wrapper.square_thumb .items .featur-slide .f_show_img {
    padding-bottom: 100%;
}


.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;
    gap: 16px;
}

.go_back_modal .back_btn:before {
    display: none;
}

.go_back_modal .back_btn {
    margin-right: 20px;
}

.comm_auth_inner .user_profile_main .btn_wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Common toggle base */
.manage_profile .otp-input-fields {
    display: none;
}

.manage_profile .otp-input-fields.active {
    display: flex;
}

.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;
}

a.open_back_popup svg,
a.back_arrow svg {
    height: 44px;
    width: 44px;
    display: block;
}

.otp_msg_box span.resend_otp {
    cursor: pointer;
}

.hero-section.show_sec+.video_listing.tv_show_sec {
    margin-top: -150px;
    position: relative;
    z-index: 2;
}

.comm_auth_inner .social-login-btn>ul li.btn-width-auto {
    width: auto;
    height: auto;
    border: unset;
}

.comm_auth_inner .social-login {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.social-login .facebook-btn,
.social-login .apple-btn {
    border: 1px solid #FFFFFF4D;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 16px;
}

.social-login .apple-btn>div {
    height: auto;
    min-height: unset !important;
    max-height: unset !important;
}

.social-login .apple-btn>div>div {
    position: unset !important;
    padding: 0 !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.social-login .apple-btn>div>div+div {
    display: none;
}

.movie-wrapper>a {
    display: block;
    width: 100%;
}

.movies-sec .movie-bg-img {
    position: relative;
    width: 100%;
    padding-top: 520px;
    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;
    object-position: top;
}

.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: 12px;
}

.movie-content .name h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 126%;
    margin: 0px;
}

.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: var(--primary);
    color: var(--white);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    display: inline-block;
    vertical-align: top;
    padding: 8px 12px;
    border-radius: 6px;
}

.featur-slide .show_name {
    position: absolute;
    left: 15px;
    right: auto;
    bottom: 15px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all;
    z-index: 2;
    padding-right: 50px;
    pointer-events: none;
}

.prodcast-carousel .featur-slide .show_name {
    padding-right: 0;
    width: 100%;
    max-width: calc(100% - 110px);
}

.featur-slide .show_name h3 {
    font-weight: 400;
    font-size: 18px;
    line-height: 126%;
    margin: 0;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    white-space: normal;
}

.featur-slide:hover .show_name {
    opacity: 1;
    visibility: visible;
}
.featur-slide:hover .play-progress {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.otp_msg_box .resend_otp:hover {
    color: #D44429;
}

.header.header_landing+section.first-section {
    padding-top: 0;
}

.header.header_landing {
    position: relative;
}

.header.header_landing .header-logo-block {
    padding: 0;
}

.header.header_landing {
    padding: 60px 0;
}

.header_landing .header-row {
    justify-content: center;
    padding: 0;
    background: transparent;
    backdrop-filter: unset;
}

.header_landing .header-row::before {
    display: none;
}

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

.ch-item .show_title .show_time {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
}

.show_duration+.show_title .show_time {
    /*display: none;*/
}

/* .featured-carousel .owl-stage.single {
    -webkit-transform: translate3d(0px, 0px, 0px) !important;
    transform: translate3d(0px, 0px, 0px) !important;
} */



.custom-select-wrap {
    width: 100%;
}

/* Main Select2 Box */
.custom-select-wrap .select2-container {
    width: 100% !important;
}

.custom-select-wrap .select2-container span.selection {
    display: block;
}

.select2-search--dropdown .select2-search__field {
    height: 48px;
    padding: 11px 18px;
}

.custom-select-wrap .select2-container span.dropdown-wrapper {
    display: block;
    width: 100%;
}

.custom-select-wrap .select2-container--default .select2-results>.select2-results__options {
    max-height: 265px;
    overflow-y: auto;
}

.custom-select-wrap .select2-container--default .select2-selection--single {
    height: 69px;
    background: #fff;
    border: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

/* Text */
.custom-select-wrap .select2-selection__rendered {
    color: #4F4F4F;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    padding: 11px 18px !important;

}

/* Arrow */
.custom-select-wrap .select2-selection__arrow {
    height: 100% !important;
    right: 35px !important;
    top: 0 !important;
    background-image: url(../images/down-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.custom-select-wrap .select2-selection__arrow>b {
    display: none;
}

/* Dropdown */
.select2-container--default .select2-results__option {
    padding: 14px 20px;
    font-size: 16px;
    color: var(--black);
}

.custom-select-wrap .select2-container--default .select2-selection--single .select2-selection__rendered {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary);
}

.custom-select-wrap .select2-container--default .select2-selection--multiple {
    border: unset;
    border-radius: 10px;
    cursor: text;
    padding-bottom: 5px;
    padding-right: 5px;
    position: relative;
    min-height: 69px;
    padding: 11px 18px;
    background-image: url(../images/down-arrow.svg);
    background-position: calc(100% - 40px) 50%;
    background-repeat: no-repeat;
}

.custom-select-wrap .select2-container--default .select2-selection--multiple.select2-selection--clearable {
    background-image: unset;
}

.custom-select-wrap .select2-container--default .select2-selection--multiple .select2-search--inline {
    display: block;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.custom-select-wrap .select2-container .select2-selection--multiple .select2-selection__rendered {
    display: block;
    padding: 0 !important;
    width: 100%;
}

.custom-select-wrap .select2-container .select2-selection--multiple .select2-search--inline .select2-search__field {
    color: #4F4F4F;
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    height: 24px;
}

.custom-select-wrap .select2-container .select2-selection--multiple .select2-search--inline .select2-search__field::placeholder {
    font-weight: 400;
    color: #4F4F4F;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    margin-right: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #FFF;
    border: unset;
    top: 50%;
    transform: translateY(-50%);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--primary);
    color: #FFF;
    border-color: #FFF;
    padding-block: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice:first-child {
    display: none;
}



/* ==========================
   jQuery UI Datepicker - White Theme
========================== */


.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
    display: none;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    top: 50%;
    transform: translateY(-50%);
    background-size: 22px;
    cursor: pointer;
    filter: brightness(0) invert(0);
}

.ui-datepicker .ui-datepicker-prev {
    background: url("../images/slider-arrow-left.svg") center no-repeat;
}

.ui-datepicker .ui-datepicker-next {
    background: url("../images/slider-arrow-right.svg") center no-repeat;
}

.ui-datepicker-title select option {
    color: var(--color-text);
}

.ui-datepicker.ui-widget.ui-widget-content {
    width: auto;
    max-width: 420px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    font-family: inherit;
    z-index: 9999 !important;
}

.ui-datepicker table.ui-datepicker-calendar {
    margin: 0;
}

/* Header */
.ui-widget.ui-widget-content .ui-datepicker-header {
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0 0 8px;
    border-bottom: 1px solid #ececec;
    position: relative;
}

.ui-widget.ui-widget-content .ui-datepicker-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
}

.ui-widget.ui-widget-content .ui-datepicker-month,
.ui-widget.ui-widget-content .ui-datepicker-year {
    color: var(--color-text);
    height: auto;
    border: 1px solid;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 4px;
    background: transparent url(../images/down-arrow.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 8px) 50%;
    padding-right: 22px;
    background-size: 12px;
}

.ui-widget.ui-widget-content .ui-datepicker-prev span,
.ui-widget.ui-widget-content .ui-datepicker-next span {
    background-image: none !important;
    text-indent: 0;
    overflow: visible;
    position: relative;
    display: block;
}



/* Week Days */
.ui-widget.ui-widget-content .ui-datepicker-calendar thead th {
    color: #666;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 0;
}

/* Days */
.ui-widget.ui-widget-content .ui-datepicker-calendar td {
    padding: 3px;
}

.ui-widget.ui-widget-content .ui-datepicker-calendar td a,
.ui-widget.ui-widget-content .ui-datepicker-calendar td span {
    width: 34px;
    height: 34px;
    line-height: 32px;
    display: block;
    text-align: center;
    border-radius: 50%;
    text-decoration: none;
    color: var(--black);
    border: none !important;
    background: transparent !important;
    transition: .25s;
}

/* Hover */
.ui-datepicker-calendar td a:hover {
    background: var(--primary) !important;
}

/* Selected , Today*/
.ui-widget.ui-widget-content .ui-datepicker-calendar td.ui-datepicker-today a,
.ui-widget.ui-widget-content .ui-datepicker-calendar .ui-datepicker-current-day a {
    background: var(--primary) !important;
    color: #fff !important;
    font-weight: 600;
}

.ui-widget.ui-widget-content .ui-datepicker-calendar .ui-datepicker-current-day a {
    background: var(--primary) !important;
}

/* Other Month */
.ui-widget.ui-widget-content .ui-datepicker-other-month a {
    color: #c5c5c5 !important;
}

/* Active State */
.ui-widget.ui-widget-content .ui-state-active {
    background: var(--primary) !important;
    color: #fff !important;
}

/* Default State */
.ui-widget.ui-widget-content .ui-state-default {
    border: none !important;
}

/* Remove Borders */
.ui-widget.ui-widget-content {
    border: 1px solid #e5e5e5;
}

.ui-widget.ui-widget-content .ui-widget-header {
    border: none;
    background: transparent;
}

.load-more-search {
    cursor: pointer;
}

.visually-hidden {
    position: absolute;
    left: -9999px;
}

.f_show_listing_wrapper .featur-slide .item.info.vertical_thumbnails {
    display: none;
}

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

.show-listing-wrapper .advanced_movie_slider.square_thumb .show-item .img-wrappper {
    padding-top: 100%;
}

.show-listing-wrapper.vertical-x2 .advanced_movie_slider.square_thumb .show-item .img-wrappper {
    padding-top: 100%;
}

.show-listing-wrapper .square_thumb .vertical_thumbnails .show_name {
    width: calc(100% - 110px);
}

.tv_show_item_inner{
    background-color: rgba(255, 255, 255, .1);
    height: 100%;
    transition: 0.5s all;
    position: relative;
}

.tv_show_item .tv_show_item_inner > a {
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    left: 0px;
    right: 0px;
    z-index: 10;
}

.tv_show_item:hover .tv_show_item_inner::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(249.26deg, #E6D002 -16.78%, #E35523 49.23%, #86013D 115.24%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
    pointer-events: none;
    /* border-radius: 4px; */
}
.tv_show_img .action-div {
    position: absolute;
    right: 15px;
    top: auto;
    bottom: 15px;
    transform: scale(0);
    transition: 0.3s all;
    z-index: 10;
}
.tv_show_img .action-div .common_icon_box{
    padding: 5px;
    margin: 0;
}
.tv_show_img .action-div .play-btn{
    position: unset;
    margin-top: 10px;
}
.tv_show_item:hover .tv_show_img .action-div {
    transform: scale(1);
}
.tv_show_item_inner .tv_show_content{
    padding: 24px 16px;
}
 .tv_show_item:hover .tv_show_item_inner {
    background-color: var(--primary);
}
.tv_show_img .action-div .btn_share ul.social-share{
    left: -40px;
    right: auto;
}
.tv_show_item_inner .tv_show_img > a::before{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
}