:root {
    --primary-color: #336AEA;
    --primary-hover-color: #255ad6;
    --secondry-color: #080808;
    --secondry-hover-color: #020202;

    --light-bg-color: #191B21;

    --pera-color: #B5B5B5;
    --grey-color-text: #FFFFFF99;
    --black-color: #000000;
    --white-color: #ffffff;

    --border-color: #CEE0E0;
    --border-color-focus: #000000;
}


body {
    margin: 0 auto;
    font-size: 16px;
    padding: 0;
    font-family: "Manrope", sans-serif;
    color: var(--white-color);
    text-rendering: geometricPrecision;
    background-color: var(--secondry-color);
}

body:has(.modal.show) {
    overflow: hidden;
}

::selection {
    background-color: var(--primary-color);
    color: var(--white-color);

}

* {
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.1);
    /* Custom scrollbar color */
}

/* Custom Scrollbar (For WebKit Browsers like Chrome, Safari) */
*::-webkit-scrollbar {
    width: 4px;
}

*::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 7px;
}

*::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 7px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: var(--white-color);
}

a {
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    outline: 0;
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    outline: none;
    color: var(--primary-hover-color);
    text-decoration: none;
}

/* input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 9999s ease-in-out 0s;
    -webkit-text-fill-color: #000;
} */


/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    /* border: transparent; */
    -webkit-text-fill-color: var(--white-color);
    -webkit-box-shadow: 0 0 0px 0px var(--light-bg-color) inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* Inputs */
select {
    color: #9e9e9e;
}

option:not(:first-of-type) {
    color: black;
}

.wow {
    visibility: hidden;
}

.clear {
    clear: both;
}

img:not(table img) {
    max-width: 100%;
}

iframe {
    border: 0;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

p {
    font-size: 16px;
    color: #757576;
}

figure {
    margin: 0 auto;
    display: block;
    text-align: center;
}

body.scroll-off {
    overflow: hidden;
}

.section-padding {
    padding-top: 22px;
    padding-bottom: 22px;
}

.section-heading {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 16px;
}

.font-400 {
    font-weight: 400;
}

.font-500 {
    font-weight: 500;
}

.form-control::-webkit-input-placeholder {
    color: var(--grey-color-text);
}

.form-control::-moz-placeholder {
    color: var(--grey-color-text);
}

.form-control:-ms-input-placeholder {
    color: var(--grey-color-text);
}

.form-control:-moz-placeholder {
    color: var(--grey-color-text);
}

/*==================== User Dropdown Start ===================*/

.user_dropdown {
    display: inline-block;
}

.user_dropdown>a {
    color: #494949;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.user_dropdown img {
    height: 35px;
    width: 35px;
    min-height: 35px;
    min-width: 35px;
    border-radius: 50%;
}

.user_dropdown .dropdown-menu.show {
    display: block;
    left: auto;
    width: 160px;
    overflow-x: hidden;
    padding-bottom: 0;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    background-color: #fff;
    color: rgba(255, 255, 255, 0.6);
    right: 1px;
    box-shadow: 0 5px 12px rgba(60, 64, 67, 0.15);
    font-size: 12px;
    border-radius: 9px;
    border: 0;
}

.user_name>div {
    white-space: nowrap;
    max-width: calc(160px - 10px);
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
    color: #494949;
    text-transform: capitalize;
    font-size: 15px;
}

.user_name {
    padding: 0 10px;
    border-bottom: 1px solid #e9ecef;
}

.user_name small {
    color: #a2a2a2;
    text-transform: lowercase;
}

.user_name .user_email {
    margin-top: -10px;
}

.user_dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.user_dropdown ul li {
    display: block;
}

.user_dropdown ul li a {
    color: #494949;
    text-transform: capitalize;
    font-size: 14px;
    padding: 5px 10px;
    /* padding-left: 20px; */
    display: block;
    border-bottom: 1px solid #e9ecef;
}

.user_dropdown ul li a i {
    margin-right: 5px;
}

.user_dropdown ul li a:hover {
    color: #c72026;
}


/*==================== User Dropdown End ===================*/


/* *** loader css start ****  */

.loader-wrapper {
    background: rgba(0, 0, 0, 0.90);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
}

.loader:before {
    content: "";
    width: 100px;
    height: 100px;
    border: 5px solid rgba(0, 0, 0, 0.05);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1.5s infinite linear;
    display: block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader img {
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


/* *** loader css end  ****  */


/*==================== Header Start ===================*/
.menuCustomMenu {
    display: flex;
}

body.lightMode #header .navbar-brand img.lightThemeLogo,
body:not(.lightMode) #header .navbar-brand img.darkThemeLogo {
    display: block !important;
}

#header {
    height: 90px;
    display: flex;
    align-items: center;
    z-index: 10;
    position: relative;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    background-color: var(--light-bg-color) !important;
    -webkit-transition: 0.5s all ease-out;
    -o-transition: 0.5s all ease-out;
    transition: 0.5s all ease-out;
}

#header.is-sticky {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.2);
    height: 75px;
    -webkit-transition: 0.5s all ease-out;
    -o-transition: 0.5s all ease-out;
    transition: 0.5s all ease-out;
}

#header.is-sticky.awake {
    transform: translateY(0%);
    -webkit-transition: 0.5s all ease-out;
    -o-transition: 0.5s all ease-out;
    transition: 0.5s all ease-out;
}

#header.is-sticky.inner_pages_head,
#header.inner_pages_head {
    height: 65px;
}

#header>.container-fluid>.navbar {
    padding-left: 0;
    padding-right: 0;
}

#header .navbar-brand img {
    max-height: 45px;
    width: auto;
}

/* #header .navbar-expand-lg .navbar-nav {
    gap: 30px;
} */

#header .navbar-expand-lg .navbar-nav .nav-item {
    margin-right: 30px;
}

#header .navbar-expand-lg .navbar-nav .nav-item:last-child {
    margin-right: 0px;
}

#header .navbar-nav .nav-link,
.vodContentBtnGroup .navbar-nav .nav-link {
    position: relative;
    padding: 12px 20px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 0;
}

#header .navbar-nav .nav-link svg,
.vodContentBtnGroup .navbar-nav .nav-link svg {
    margin-right: 10px;
}

/* #header .navbar-expand-lg .navbar-nav .nav-item:not(.active) .nav-link:hover {
    color: var(--primary-color);
} */

#header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link,
.vodContentBtnGroup .navbar-nav .nav-item.active .nav-link {
    color: var(--white-color);
    background-color: var(--primary-color);
}

/* #header .navbar-expand-lg .navbar-nav .nav-link:hover:before,
#header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link:before {
    color: #c72026;
    transform: scaleX(1);
} */

/* #header .navbar-expand-lg .navbar-nav .nav-link:before {
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: #c72026;
    transform: scaleX(0);
    content: "";
    position: absolute;
    transition: transform 0.5s ease;
} */

#header .dropdown-toggle::after {
    border: none;
    /* height: 8px;
  width: 11px; */
    /* background-image: url(../img/drop_arrow.png); */
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-top: 3px;
}

#header .extra_nav {
    margin-left: 30px;
    display: flex;
}

#header .navbar-expand-lg .extra_nav .navbar-nav .nav-item {
    margin-right: 12px;
}


#header .extra_nav .nav-item:list-child {
    margin-right: 0px;
}


#header .extra_btn:hover {
    background-color: rgba(255, 255, 255, 0.24);
}

#header .header_filled_btn {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 15px;
    padding-left: 15px !important;
    padding-right: 15px !important;
    background-color: #c72026;
    color: #fff;
    border: 1px solid #c72026;
}

#header .header_filled_btn:hover {
    background-color: #fff;
    color: #c72026;
}

#header .header_border_btn {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 15px;
    padding-left: 15px !important;
    padding-right: 15px !important;
    background-color: #fff;
    color: #c72026;
    border: 1px solid #c72026;
}

#header .header_border_btn:hover {
    background-color: #c72026;
    color: #fff !important;
}

.header_border_btn:before,
.header_filled_btn:before {
    display: none;
}

#header .flag_ico {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop {
    padding-left: 32px;
    padding-right: 5px;
    width: auto;
    font-weight: 400;
    color: #000;
}


#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop img {
    width: 21px;
    height: auto;
    vertical-align: text-bottom;
}

#header .for_mobile {
    display: none;
}

#header .for_desktop {
    display: block;
}

#header .dropdown-item {
    font-weight: 300;
}


/*#header .dropdown-item:hover {
    background-color: #30383d;
    color: rgba(255,255,255,0.60);
}*/

.langugae_filter {
    position: relative;
}

.lang_dropdown {
    display: none;
    position: absolute;
    top: 100%;
    min-width: 100px;
    background-color: var(--light-bg-color);
    color: var(--white-color);
    right: 1px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.05);
    font-size: 14px;
    border-radius: 9px;
    border: 0;
    margin: 0;
    padding: 6px 12px;
}

.lang_country {
    position: relative;
    cursor: pointer;
}

.dropdown-toggle.lang_drop {
    width: 36px;
    height: 36px;
    overflow: hidden;
    border-radius: 50px;
    border: 0;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.langaugeUlList .dropdown-toggle.lang_drop {
    width: 110px !important;
    color: #fff;
}

.dropdown-toggle.lang_drop .flag_ico {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 50px;
    margin-right: 0;
}

.dropdown-toggle.lang_drop .flag_ico img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.languageContainer .dropdown-toggle::after {
    margin-left: 8px;
}

#header .navbar-expand-lg .navbar-nav .currency-filter .nav-link.lang_drop {
    padding: 8px 0 8px 36px;
}

#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop {
    padding: 8px 0 8px 36px;
    color: #8B96A5;
}

.lang_country {
    position: relative;
    padding: 5px 0px 5px 34px;
    color: var(--white-color);
    border-bottom: 1px solid #e9e9e9;
}

.lang_country .flag_ico img {
    max-width: 19px;
}

.lang_country:last-child {
    border-bottom: 0;
}

.lang_country:hover,
.lang_country:focus {
    color: var(--primary-color);
    background-color: transparent;
}


.navbar-brand {
    padding: 0;
    font-size: 0;
    margin: 0 auto 0 0;
}

/* 
.langugae_filter:hover .lang_dropdown {
    display: block;
} */
/*==================== Header End ===================*/



/*==================== Footer login Signup Section ===================*/

/* .footer-logsign-link {
    position: relative;
}

.footer-logsign-link:after,
.footer-logsign-link:before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: -1;
}

.footer-logsign-link:before {
    background-color: #df1f26;
    left: 0;
}

.footer-logsign-link:after {
    background-color: #ec2027;
    right: 0;
}

.footer-signin-link a,
.footer-signup-link a {
    height: 150px;
    align-items: center;
    padding-left: 50px;
    display: flex;
    flex-wrap: wrap;
    padding-right: 10px;
}

.footer-signup-link a {
    background-color: #df1f26;
    padding-left: 0px;
}

.footer-signin-link a {
    background-color: #ec2027;
}

.footer-signin-link a span,
.footer-signup-link a span {
    color: #fff;
    font-size: 36px;
    width: 100%;
}

.footer-signin-link a p,
.footer-signup-link a p {
    color: #fff;
    font-size: 15px;
    width: 100%;
    margin-bottom: 0;
}

.footer-signup-link a span.footer-link-arrow,
.footer-signin-link a span.footer-link-arrow {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    border-radius: 50%;
    background-color: #d42027;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 23px;
    transition: 0.5s all;
}

.footer-signup-link a:hover span.footer-link-arrow,
.footer-signin-link a:hover span.footer-link-arrow {
    background-color: #fff;
    color: #d42027;
} */


/*==================== Footer login Signup Section ===================*/


/*==================== Footer ===================*/

/* .footer-block figure {
    margin: 0 0 30px;
    display: inline-block;
    max-width: 219px;
} */

.cts_no {
    font-size: 15px;
    padding: 0 80px 0 0;
}

.cts_no p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

/* .copyright {
    padding: 15px 0;
    border-top: 1px solid #eeeeee;
    color: #737777;
    font-size: 14px;
    margin-top: 30px;
} */

/* .newsletter-form .form-control {
    height: 45px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.3);
    font-weight: 400;
    background: transparent;
    border: 0;
    border-radius: 3px;
    padding-right: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
} */

/* .relative-box {
    position: relative;
    top: 7px;
}

.relative-box .subscribe-btn {
    position: absolute;
    top: 0;
    right: 0;
    color: #827e7e;
    height: 45px;
    font-size: 20px;
    background: no-repeat;
}

.relative-box .subscribe-btn:hover {
    color: #d42027;
} */

/* footer h6 {
    font-size: 17px;
    color: #000;
    margin: 0 0 27px;
    position: relative;
} */

/* ul.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.footer-links li {
    margin: 3px 0;
    padding: 0;
    list-style: none;
    margin-bottom: 10px;
}

ul.footer-links li a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.35);
}

ul.footer-links li a:hover {
    color: #d42027;
}

ul.footer-links.socialize li a {
    position: relative;
    padding-left: 25px;
}

ul.footer-links.socialize li a i {
    position: absolute;
    left: -9px;
    width: 30px;
    text-align: center;
    top: -4px;
    color: #959595;
    font-size: 17px;
} */

/* .footer_wrapper {
    background: #fafbfc;
    padding: 55px 0 0;
    border-top: 1px solid #eeeeee;
} */

/* footer h6 {
    font-size: 18px;
    margin: 0 0 27px;
    font-weight: 500;
} */

/* .subscribe_text {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
} */


.navbar {
    padding: 0;
    justify-content: right;
}


#top-button {
    display: inline-block;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#top-button.show {
    opacity: 1;
    visibility: visible;
}

.back_top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-color: #2196f3;
    display: none;
    border: #2196f3 1px solid;
    z-index: 1;
    border-radius: 4px
}

.back_top span {
    position: relative;
    display: block;
    color: #fff;
    width: 100%;
    height: 100%;
}

.back_top span svg {
    width: 22px;
    height: 21px;
    position: absolute;
    left: 0;
    margin: 0 auto;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.back_top:hover {
    border-color: #2196f3;
    color: #2196f3;
    background-color: #fff;
}

.back_top:hover span {
    color: #2196f3;
}


/*==================== Footer ===================*/

#header .navbar-expand-lg .navbar-nav .nav-item.dropdown .nav-link {
    padding-right: 25px;
}

.mobiledrop {
    position: absolute;
    right: 0px;
    top: 0;
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background-color: transparent;
}

/* Custom Select */

.custom_checkbox input[type="checkbox"],
.custom_checkbox input[type="radio"] {
    height: 21px;
    width: 21px;
    min-width: 21px;
    margin: 0;
    padding: 0;
    opacity: 1;
    appearance: none;
    border: 2px solid #d0d0d0;
    border-radius: 5px;
    background: transparent;
    position: relative;
    margin-right: 10px;
    cursor: pointer;
}

.custom_checkbox input[type="checkbox"]:checked,
.custom_checkbox input[type="radio"]:checked {
    border: 2px solid #1295d6;
    background: #1295d6;
}

.custom_checkbox input[type="checkbox"]:checked::before,
.custom_checkbox input[type="radio"]:checked::before {
    content: "\f00c";
    height: 100%;
    color: #fff;
    font-family: "Font-awesome-5-pro";
    position: absolute;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.custom_checkbox label {
    color: var(--white-color) !important;
}

.account-verify-text {
    margin-bottom: 8px;
}

/* Custom Radio */
.custom_radio [type="radio"]:checked,
.custom_radio [type="radio"]:not(:checked) {
    position: absolute;
    /* left: -9999px; */
    appearance: none;
}

.custom_radio [type="radio"]:checked+label,
.custom_radio [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

.custom_radio [type="radio"]:checked+label:before,
.custom_radio [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid var(--pera-color);
    border-radius: 100%;
    background: #fff;
}

.custom_radio [type="radio"]:checked+label::after,
.custom_radio [type="radio"]:not(:checked)+label::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #F87DA9;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.custom_radio [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.custom_radio [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.btn-primary {
    display: inline-block;
    text-align: center;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    padding: 15px 30px;
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
}

.smallBtn {
    font-size: 16px;
    padding: 10px 30px;
}

.btn-primary:hover {
    color: var(--white-color);
    border-color: var(--primary-hover-color);
    background-color: var(--primary-hover-color);
}

.custom_select_block .ms-dd .ms-dd-header {
    height: 45px;
    font-size: 16px;
    color: rgb(66 66 66 / 60%);
    font-weight: 400;
    background: transparent;
    border-radius: 6px;
    border: 1px solid #B1B1B1;
    overflow: hidden;
    width: 100%;
}

.custom_select_block .ms-dd .ms-dd-header .option-selected {
    height: 45px;
    padding: 10px 25px;
    width: 100%;
}

.custom_select_block .ms-dd .ms-list-option.option-selected,
.ms-dd .ms-optgroup ul .ms-list-option.option-selected {
    background: #ffffff;
}

.custom_select_block .ms-dd {
    width: 100%;
}

.custom_select_block .ms-dd .ms-dd-arrow {
    margin-top: -5px;
    right: 25px;
}


/* Select2 */



.floating-label {
    font-size: 16px;
    font-weight: 400;
    color: #475F7B;
    opacity: 1;
    top: 16px;
    left: 20px;
    pointer-events: none;
    position: absolute;
    transition: 240ms;
    margin-bottom: 0;
    z-index: 1;
}

.floating-diff .floating-label {
    opacity: 0;
}

.floating-diff.focused .floating-label {
    opacity: 1;
}

.form-group.focused .floating-label {
    opacity: 1;
    color: #7b7f82;
    top: 4px;
    left: 19px;
    font-size: 12px;
}

.form-group.focused select.form-control {
    padding-top: 21px;
}

.float-checkradio {
    background-color: #FFF;
    border: 1px solid #DFE3E7;
    border-radius: .267rem;
    padding: 8px 19px;
    transition: 0.3s;
    min-height: 55px;
}

.float-checkradio.focused {
    padding-top: 21px;
}

/*--------select2-css----*/
.select2Part .floating-label {
    opacity: 0;
}

.select2Part.focused .floating-label {
    opacity: 1;
}

.select2multiple .floating-label {
    opacity: 1;
}

.floating-group.focused .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding-bottom: 7px;
    margin: 0;
    padding-top: 17px;
    padding-left: 0px;
}


.select2-container--default .select2-selection--multiple .select2-selection__rendered:before {
    border: none;
    content: '';
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii00NzMgMjc3IDEyIDgiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTQ3MyAyNzcgMTIgODsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6IzhBOTNBNjt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTS00NzEuNiwyNzcuM2w0LjYsNC42bDQuNi00LjZsMS40LDEuNGwtNiw2bC02LTZMLTQ3MS42LDI3Ny4zeiIvPg0KPC9zdmc+DQo=') no-repeat 0 0;
    width: 12px;
    height: 8px;
    background-size: 100% 100%;
    transform: translateY(-50%);
    position: absolute;
    right: 18px;
    top: 26px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    left: auto;
    top: 0;
    right: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    padding-right: 30px;
    padding-left: 0px;
    background-color: #ebf0fe;
    margin-right: 5px;
    border: 0px solid #aaa;
    margin-top: 9px;
    padding-top: 3px;
    padding-bottom: 3px;

}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    background-color: #dc3545;
    color: #e4e4e4;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: #EE343A;
    color: #fff;
    padding: 1px;
    top: 7px;
    right: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    border-right: 0;
    justify-content: center;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    padding-right: 10px;
    font-size: 13px;
    font-weight: 300;
    padding-left: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove span {
    line-height: 11px;
    height: 17px;
    /* width: 1px; */
    padding-right: 1px;
    border-radius: 50%;
    display: flex;
    font-weight: 300;
    justify-content: center;

}

.floating-group .select2-container--focus .select2-selection__rendered {
    padding-top: 20px !important;
}

.floating-group .select2-container--focus .select2-selection__rendered {
    padding-top: 20px !important;
}

.floating-group .select2-container--below .select2-selection__rendered {
    padding-top: 20px !important;
}

.floating-group .select2-container--below .select2-selection--multiple {
    padding-top: 20px !important;
}

.floating-group .select2-container--above .select2-selection__rendered {
    padding-top: 20px !important;
}

.floating-group .select2-container--above .select2-selection--multiple {
    padding-top: 20px !important;
}

.floating-group .select2-selection--multiple .select2-selection__rendered {
    padding-top: 20px !important;
}

.select2-dropdown {
    border: 0px solid #aaa;
    box-shadow: 0 9px 9px rgba(0, 0, 0, 0.1);
    margin-top: 3px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #DFE3E7
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid #DFE3E7;
    padding-left: 19px;
    padding-bottom: 9px;
}

.select2-container .select2-selection--multiple {
    min-height: 55px;

}

.select2-container .select2-selection--single {
    min-height: 55px;
    border: 1px solid #DFE3E7;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 16px;
    line-height: 1;
    margin-left: 0;
    padding-left: 0px;
    font-size: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    border: none;
    content: '';
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii00NzMgMjc3IDEyIDgiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTQ3MyAyNzcgMTIgODsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6IzhBOTNBNjt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTS00NzEuNiwyNzcuM2w0LjYsNC42bDQuNi00LjZsMS40LDEuNGwtNiw2bC02LTZMLTQ3MS42LDI3Ny4zeiIvPg0KPC9zdmc+DQo=) no-repeat 0 0;
    width: 12px;
    height: 8px;
    background-size: 100% 100%;
    transform: translateY(-50%);
    position: absolute;
    right: 18px;
    top: 26px;
}

.select2-selection__rendered li:first-child {
    margin-left: 0;

}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 19px;
    padding-right: 20px;
    font-size: 15px;
    color: #000;
    padding-top: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-weight: 300;
}

.select2-results__option {
    font-size: 15px;
    font-weight: 300;

}

/*select2*/
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-label {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}

.form-control {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--white-color);
    border-radius: 12px;
    background-color: var(--light-bg-color);
    border: 1px solid var(--light-bg-color);
    box-shadow: none;
    display: block;
    width: 100%;
    height: auto;
    padding: 13px 16px;
}

select.form-control {
    padding-top: 10px;
    transition: 0.15s;
}

.form-control:focus {
    color: var(--white-color);
    border-color: #313644;
    background-color: var(--light-bg-color);
    outline: 0;
    box-shadow: none;
}


/* .form-control {
    height: 45px;
    font-size: 16px;
    color: rgb(66 66 66 / 60%);
    font-weight: 400;
    background: transparent;
    border-radius: 6px;
    border: 1px solid #B1B1B1;
    padding: 15px 25px;
}

.form-control:focus {
    box-shadow: none;
} */


/* ======= Go to Top Button style ======= */
.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
    background-color: #fff;
    box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.07);
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.arrowTop {
    position: absolute;
    top: 16px;
    left: 17px;
}

.arrowTop path {
    fill: #1295d6;
}

/* .progress-wrap::after {
    position: absolute;
    font-family: 'themify';
    content: '\e648';
    text-align: center;
    line-height: 50px;
    font-size: 15px;
    font-weight: normal;
    color: transparent;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
} */
.progress-wrap svg.progress-circle path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: transparent;
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

/* .progress-wrap::after {
    color: #1e90ff;
} */
.progress-wrap svg.progress-circle path {
    stroke: #1e90ff;
}

/* End */

.dash_header {
    background-color: lightblue;
    padding: 10px;
}

.main_content {
    background-color: lightgrey;
    overflow-y: auto;
    /* Scroll if content overflows */
}


/* Login & Sign Up CSS Start */
body:has(>.loginMainWrapper) {
    overflow: hidden;
}

.loginMainWrapper {
    background-color: var(--secondry-color);
    height: 100vh;
    padding: 46px 0;
}

.loginFormWrap {
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 0 16px;
}

.loginFormWrap:has(>.loginForm) {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.loginFormWrap .loginForm {
    width: 100%;
    max-width: 580px;
    max-height: 100%;
    margin: 0 auto;
}

.loginFormWrap .loginLogo {
    margin: auto;
    text-align: center;
    margin-bottom: 36px;
}

.loginFormWrap .loginLogo img {
    max-height: 77px;
}

.form-control:has(+.toggle-password) {
    padding-right: 50px;
}

.toggle-password {
    position: absolute;
    right: 16px;
    top: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    transition: ease-in-out .3s;
}

.toggle-password:hover {
    color: var(--white-color);
}

.toggle-password:not(.password_show) .password_showIcon {
    display: none;
}

.toggle-password.password_show .password_hideIcon {
    display: none;
}

.loginFormWrap .btnGroup {
    margin-top: 36px;
}

.btn-flex {
    display: flex;
    align-items: center;
    /* gap: 16px; */
}

.btn-flex a {
    flex: 1;
    margin-right: 16px;
}

.btn-flex a:last-child {
    margin-right: 0 !important;
}

.signUpInner {
    max-width: 850px;
    margin: auto;
    border-radius: 20px;
    background: var(--light-bg-color);
    padding: 16px;
}

.signUpInnerHead {
    position: relative;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.signUpInnerHead h3 {
    color: var(--white-color);
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
    text-transform: uppercase;
    max-width: calc(100% - 72px);
    margin: 0 auto;
}

.backBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    border-radius: 50px;
    padding: 8px;
    color: var(--white-color);
    background: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
}

.backBtn:hover {
    color: var(--white-color);
    background: var(--primary-hover-color);
}

.signUpForm .form-group {
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 16px;
}

.signUpForm .form-group .form-control {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.08);
}

.signUpForm .form-group .form-control:focus {
    border-color: rgba(255, 255, 255, 0.2);
}

.signUpForm .form-group p.note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.2px;
    margin: 12px 0 0;
}

.top-n16px {
    position: relative;
    top: -16px;
}

.signUpForm .form-group .toggle-password {
    color: var(--white-color);
}

.captchaImgOuter {
    padding: 17px 22px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-block;
    position: relative;
    flex: 0 0 auto;
    text-align: center;
    margin-right: 24px;
}

.captchaImgOuter img {
    width: 100%;
    height: 100%;
    max-width: 122px;
    max-height: 36px;
}

.captchaReload {
    width: 12px;
    height: 12px;
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white-color);
}

.flex-gap {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.flex-gap:has(> .captchaImgOuter) {
    gap: 0;
}

/* Login & Sign Up CSS End */

.container-fluid {
    max-width: calc(100% - 72px);
    margin: 0 auto;
}

.countryTime {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

.channelListOuter {
    display: flex;
    flex-wrap: wrap;
    /* gap: 26px 16px; */
}

.channelItem {
    /* width: calc(100% / 10 - 14.4px); */
    flex: 0 0 auto;
    display: inline-block;
    text-decoration: none !important;

    width: calc((100% - (26px * 9)) / 10);
    margin-right: 26px;
    margin-bottom: 16px;
    box-sizing: border-box;
}

.channelItem:nth-child(10n) {
    margin-right: 0;
}

.channelImg {
    width: 100%;
    height: 100%;
    max-height: 154px;
    /* aspect-ratio: 1 / 1; */
    block-size: auto;
    border-radius: 22px;
    background-color: #D9D9D9;
    border: 2px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.channelImg::before {
    content: '';
    width: 100%;
    display: block;
    padding-top: 100%;
}

.channelImg>* {
    position: absolute;
}

.channelImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

.channelImg::after {
    content: '';
    display: block;
    width: calc(100% + 14px);
    height: calc(100% + 14px);
    background-color: var(--secondry-color);
    border-radius: 26px;
    border: 2px solid var(--white-color);
    position: absolute;
    margin: auto;
    z-index: -1;
    opacity: 0;
    transition: ease-in-out .3s;
}

.channelItem:hover .channelImg::after,
.channelItem.active .channelImg::after {
    opacity: 1;
}

.channelItemBody {
    padding-top: 10px;
    text-align: center;
}

.channelItemBody .channelTitle {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.36;
    margin-bottom: 4px;
    color: var(--white-color);
}

.channelItemBody .channelTime {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.36;
    color: var(--pera-color);
}

.flex-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.outlineBtn {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    line-height: normal;
    padding: 6px 14px;
    background-color: transparent;
    border: 1px solid var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.outlineBtn:hover {
    color: var(--secondry-color);
    background-color: var(--white-color);
}

.channelView {
    text-align: center;
}

.channelView .channelImg {
    max-width: 100px;
    margin: auto;
}

.channelView .channelName {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    margin-top: 16px;
}

.showesDateList {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.recordingShowDateList {
    /* max-height: calc(100vh - 298px);
    overflow-y: auto; */
}

.showesDateList a:not(:last-child),
.showesDateList button:not(:last-child) {
    margin-bottom: 12px;
}

.lightBtn {
    color: var(--white-color);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    border-radius: 12px;
    background: var(--light-bg-color);
    padding: 15px 30px;
    border: none;
    transition: ease-in-out .3s;
}

.lightBtn:not(.active):hover {
    background: #1f2129;
    color: var(--primary-color);
}

.lightBtn.active {
    background: var(--primary-color);
    color: #fff;
}

.showesDateList .lightBtn {
    min-width: 350px;
}

.recordingListItem {
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 16px;
    background: var(--light-bg-color);
    border: 1px solid transparent;
    transition: ease-in-out .3s;
}

.recordingListItem:hover {
    border-color: rgba(255, 255, 255, 0.08);
}

.recordingListItem.active {
    padding: 6px 0 6px 6px;
    border-color: var(--white-color);
    border-radius: 20px;
}

.recordingListItem:not(:last-child) {
    margin-bottom: 10px;
}

.recordedShowThumbnail {
    max-width: 269px;
    width: 100%;
    aspect-ratio: 16/9.5;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, .08);
    position: relative;
    overflow: hidden;
}

.recordedShowThumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.playBtn {
    width: 36px;
    height: 36px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: gray;
    border: none;
    transition: ease-in-out .3s;
}

.playBtn:hover {
    background-color: var(--primary-hover-color);
}

.recordedShowThumbnail .playBtn {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.playVideoOn {
    background-color: var(--primary-hover-color) !important;
}

.recordingListItemDetail {
    padding: 15px;
    flex: 1 1 auto;
}

.recordingListItemDetail .showTiming {
    display: flex;
    align-items: center;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 8px;
}

.recordingListItemDetail .showTiming svg {
    margin-right: 6px;
}

.episodeTitle {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 6px;
}

.recordingListItemDetail p {
    color: var(--pera-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.otherDetail {
    color: var(--pera-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: capitalize;
}

.otherDetail span {
    color: var(--white-color);
    font-weight: 500;
}

.ratingtar {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ratingtar>svg[aria-labelledby="starYellowSvg"],
.starRating>svg[aria-labelledby="starYellowSvg"] {
    color: #FBC418 !important;
    fill: #FBC418 !important;
}

.ratingtar>svg[aria-labelledby="starGraySvg"],
.starRating>svg[aria-labelledby="starGraySvg"] {
    color: rgba(187, 187, 191, 0.5) !important;
    fill: rgba(187, 187, 191, 0.5) !important;
}

.leftPart {
    position: sticky;
    top: 97px;
}

/* VOD CSS Start */
.vodListOuter {
    display: flex;
    flex-wrap: wrap;
    /* gap: 16px; */
}

.vodItem {
    width: calc((100% - (16px * 4)) / 5);
    flex: 0 0 auto;
    /* display: inline-block; */
    text-decoration: none !important;
    border-radius: 16px;
    background: var(--light-bg-color);
    position: relative;
    margin-right: 16px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.vodItem:nth-child(5n) {
    margin-right: 0;
}

.vodItem::after {
    content: '';
    display: block;
    width: calc(100% + 14px);
    height: calc(100% + 14px);
    background-color: var(--secondry-color);
    border-radius: 22px;
    border: 2px solid var(--white-color);
    position: absolute;
    left: -7px;
    top: -7px;
    margin: auto;
    z-index: -1;
    opacity: 0;
    transition: ease-in-out .3s;
}

.vodItem:hover::after,
.vodItem.active::after {
    opacity: 1;
}

.vodItem .vodImg {
    width: 100%;
    height: 100%;
    max-height: 160px;
    aspect-ratio: 118/76;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    position: relative;
}

.vodItem.newMoviesCard .vodImg {
    aspect-ratio: 118/126;
}

.vodItem .vodImg .playBtn {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    margin: auto;
    display: flex;
}

.vodItem .vodImg img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    aspect-ratio: 118/126;
}

.seriseMaxHeight .vodImg img {
    height: 160px;
}

.vodItem .vodItemBody {
    text-align: center;
    padding: 12px;
    /* flex: 1 1 auto; */
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: center; */
}

.vodItem .vodItemBody .title {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    /* line-height: 1.36; */
    /* flex: 1 1 auto; */
}

.vodItem.newMoviesCard .vodItemBody .starRating {
    margin: 6px 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.releaseYear {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    padding: 3px 12px;
    border-radius: 8px 8px 0 0;
    background: var(--primary-color);
    display: inline-flex;
}

/* .releaseYear{
    display: none !important;
} */
.filterDropdown .dropdownbtn {
    padding: 6px 16px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    background: var(--light-bg-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: ease-in-out .3s;
}

.filterDropdown .dropdownbtn:hover {
    border-color: #E2E8F0;
}

.episodeDetail {
    display: flex;
    /* gap: 26px; */
}

.episodeDetail .imgOuter {
    max-width: 281px;
    height: max-content;
    flex: 0 0 auto;
    aspect-ratio: 281/167;
    border-radius: 16px;
    position: relative;
    background-color: var(--light-bg-color);
}

.episodeDetail .imgOuter img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.episodeDetail .imgOuter::after {
    content: '';
    display: block;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    background-color: var(--secondry-color);
    border-radius: 22px;
    border: 2px solid var(--white-color);
    position: absolute;
    top: -4px;
    left: -4px;
    margin: auto;
    z-index: -1;
}

.episodeDetail .imgOuter .playBtn {
    position: absolute;
    inset: 0;
    margin: auto;
}

.episodeDetailbody {
    flex: 1 1 auto;
    margin-right: 36px;
}

.btnCheckbox .checkbox-label {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    padding: 9px 18px;
    border-radius: 12px;
    background: var(--light-bg-color);
    border: 1px solid var(--light-bg-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out .3s;
    cursor: pointer;
}

.btnCheckbox .checkbox-label svg {
    margin-right: 8px;
}

.btnCheckbox .checkbox-label:hover,
.btnCheckbox input[type="checkbox"]:checked~.checkbox-label {
    color: var(--white-color);
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.episodeDetailTitle {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
}

.episodeDetailbody p {
    color: var(--pera-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.showesDateList.yearslist {
    position: sticky;
    top: 97px;
}

.showesDateList.yearslist .showesDateListInner {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 117px);
    overflow-y: auto;
    overflow-x: hidden;
}

.showesDateList.yearslist .lightBtn {
    min-width: 228px;
}

.episodeDetailSection .vodItem {
    width: calc((100% - (22px * 3)) / 4);
}

.episodeDetailSection .vodItem:nth-child(4n) {
    margin-right: 0;
}

.episodeDetailSection .vodItem:nth-child(5n) {
    margin-right: 16px;
}

.filterDropdown .dropdown-menu {
    border-radius: 10px;
    background-color: var(--light-bg-color);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.05);
}

.filterDropdown .dropdown-menu .dropdown-item {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--white-color);
}

.filterDropdown .dropdown-menu .dropdown-item:hover,
.filterDropdown .dropdown-menu .dropdown-item:focus {
    color: var(--primary-color);
    background-color: transparent;
}

/* VOD CSS End */


/* Player CSS Start */
.playerScreenOuter {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.playerScreenOuter .playerScreen {
    width: 100%;
    /* height: calc(100vh - 93px); */
    height: 100%;
    display: flex;
    flex-direction: column;
}

.playerScreenOuter .playerScreen video {
    width: 100%;
    height: 100%;
}

#video-container:not(.mini-player),
.hls-player-dimensions.vjs-fluid:not(.vjs-audio-only-mode) {
    height: 100% !important;
}

.playerDetail {
    padding: 12px 36px;
    max-height: 198px;
    height: 100%;
}

.swiper-vertical {
    height: 100%;
    width: 100%;
}

.channelDetail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    min-height: 50px;
    margin-left: 122px;
}

.channelNextPrevBox {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 104px;
    width: 100%;
}

.btnArrow {
    border: none;
    background-color: transparent;
    padding: 0;
    color: var(--white-color);
    transition: ease-in-out .3s;
}

.btnArrow:hover {
    color: var(--primary-color);
}

.channelName {
    color: var(--white-color);
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
}

.channelDetail .otherDetail,
.playerDetail .videoDetail,
.playerDetail .playerEpisodeDetail {
    display: flex;
    align-items: center;
    /* gap: 12px; */
}

.playerDetail .videoDetail .channelImg {
    margin-right: 18px;
}

.playerDetail .playerEpisodeDetail {
    flex: 1 1 auto;
    gap: 22px;
    max-width: calc(100% - 122px);
}

.videoDetail .channelImg {
    width: 104px;
    flex: 0 0 auto;
    aspect-ratio: 1/1;
    border-radius: 22px;
    background-color: #D9D9D9;
    box-shadow: 0 0 2.667px 0 #FFF inset;
    overflow: hidden;
}

.videoDetail .channelImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.playerEpisodeInner {
    flex: 1 1 auto;
}

.playerEpisodeInner h2 {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.playerEpisodeInner p {
    color: var(--pera-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.modalDesign .modal-content {
    padding: 18px;
    border-radius: 26px;
    background-color: #2D2F35;
}

.modalDesign .modal-body {
    padding: 14px 0 16px;
}

.modalDesign .modal-header {
    padding: 0 0 14px;
    border-color: rgba(255, 255, 255, 0.20);
}

.modalDesign .modalTitle {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.36;
}

.btn-close {
    color: var(--pera-color);
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 1;
    box-shadow: none !important;
}

.btn-close:hover {
    color: var(--white-color);
}

.modalDesign h3 {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.33;
    margin-bottom: 8px;
}

.modalDesign p {
    color: var(--pera-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Player CSS End */

/* Live Tv Guide Page CSS Start */
.liveTvGuideOuter {
    height: calc(100vh - 90px);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.liveTvGuideInner {
    padding: 16px 0 18px;
    height: calc(100% - 198px);
    min-height: 450px;
    flex: 1 1 auto;
    background-color: #2B2D33;
}

.dateDay {
    color: var(--pera-color);
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}

.guidChannelListOuter {
    width: 290px;
}

.guidChannelListOuter,
.guidChannelShowListOuter {
    height: 100%;
    max-height: calc(100vh - 362px);
    min-height: 376px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

.guidChannelShowListOuter .swiper-button-prev {
    margin-bottom: 16px !important;
}

.guidChannelShowListOuter .swiper-button-next {
    margin-top: 16px !important;
}

.guidListItem {
    padding: 5px;
    border-radius: 12px;
    color: var(--primary-color);
    background: var(--light-bg-color);
    position: relative;
    cursor: pointer;
    transition: ease-in-out .3s;
    display: flex;
    align-items: center;
}

.guidListItem svg {
    margin-right: 12px;
}

.guidChannelShowListOuter .guidListItem {
    padding: 15px;
}

/* .guidListItem::after {
    content: '';
    display: block;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border: 1px solid var(--white-color);
    border-radius: 12px;
    position: absolute;
    top: -3px;
    left: -3px;
    opacity: 0;
    transition: ease-in-out .3s;
}
.guidListItem:hover::after, .guidListItem.active::after {
    opacity: 1;
} */
.guidListItem:hover {
    background: var(--secondry-color);
}

.guidListItem.active {
    color: var(--white-color);
    background: var(--primary-color);
}

.guidListItem .guidListTitle {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}

.guidListItem .channelImg {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    aspect-ratio: 1/1;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 12px;
}

.guidListItem .channelImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Live Tv Guide Page CSS End */

.channelNextPrevBox {
    height: 58px;
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
}

.channelNextPrevBox .btnArrow,
.playerEpisodeDetail .btnArrow,
.guidChannelListOuter .btnArrow,
.guidChannelShowListOuter .btnArrow {
    position: unset;
    background-image: none !important;
}

.channelNextPrevBox .btnArrow,
.guidChannelListOuter .btnArrow,
.guidChannelShowListOuter .btnArrow {
    width: 58px;
    height: auto;
    margin: 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.playerEpisodeDetail .btnArrow {
    height: 58px;
    width: 20px;
    flex: 0 0 auto;
    margin: auto;
}

.swiper-button-lock {
    display: block;
}

/* Profile Page CSS Start */
.profileSection .proInfo {
    padding: 36px 0;
    text-align: center;
}

.profileSection .proInfo .proImg {
    width: 80px;
    height: 80px;
    aspect-ratio: 1/1;
    margin: auto;
    border-radius: 50px;
    overflow: hidden;
    background-color: #ffffff12;
    margin-bottom: 16px;
}

.profileSection .proInfo .proImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profileSection .proInfo .proName {
    color: var(--white-color);
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
}

.profileSection .userDetails {
    padding: 36px 0;
    background-color: var(--light-bg-color);
    min-height: calc(100vh - 442px);
}

.grayBox {
    padding: 30px 26px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.grayBox p {
    color: var(--pera-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: capitalize;
    margin: 0;
}

.grayBox:not(:last-child) {
    margin-bottom: 22px;
}

.detailItem {
    display: flex;
    margin-bottom: 36px;
}

.detailItem+p {
    margin-top: 36px;
}

.detailItem:last-child {
    margin-bottom: 0 !important;
}

.detailItem .detailBody {
    margin-top: 6px;
}

.detailIcon {
    width: 66px;
    height: 100%;
    aspect-ratio: 1/1;
    flex: 0 0 auto;
    background-color: var(--primary-color);
    border-radius: 50px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.detailTitle {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 8px;
}

.detailVal {
    color: #9D9D9D;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.pageFooter {
    padding: 22px 0;
}

.pageFooterLinkOuter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.socialFooter .pageFooterLink {
    width: calc(100% / 5 - 20px);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.socialFooter .pageFooterLink svg {
    margin-right: 8px
}

.pageFooterLink {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    padding: 19px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
}

.pageFooterLink::after {
    content: '';
    display: block;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    background-color: var(--secondry-color);
    border-radius: 17px;
    border: 2px solid var(--white-color);
    position: absolute;
    top: -5px;
    left: -5px;
    margin: auto;
    z-index: -1;
    opacity: 0;
    transition: ease-in-out .3s;
}

.pageFooterLink.active::after {
    opacity: 1;
}

.pageFooterLink:hover,
.pageFooterLink.active {
    color: var(--white-color);
    background: var(--light-bg-color);
}

/* Profile Page CSS End */

.contactUsSection .signUpInner {
    max-width: unset;
}

.loginDeviceItem {
    padding: 12px;
    border-radius: 16px;
    background: #2B2D33;
}

.loginDeviceHead {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}

.deviceDetail {
    display: flex;
    align-items: center;
}

.deviceDetail .deviceIcon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 12px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.deviceDetail .deviceName {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
}

.loginIpDetail {
    color: var(--white-color);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.66;
    display: flex;
    align-items: center;
}

.loginIpDetail img {
    max-width: 24px;
    width: 100%;
    height: auto;
    margin-left: 10px;
}

.loginActivity {
    color: #9D9D9D;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.66;
    display: flex;
    align-items: center;
}

.loginActivity svg {
    margin-right: 6px;
}

.loginActivity:not(:last-child) {
    margin-bottom: 8px;
}

.speedTestItem {
    border-radius: 12px;
    background: #2b2c32;
    overflow: hidden;
}

#start-btn,
#recheck-btn,
#checking-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.liveSpeedDetail {
    padding: 16px;
    display: flex;
    align-items: center;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
}

.liveSpeedDetail .speed {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 500;
    padding: 12px;
    min-width: 112px;
    text-align: center;
    margin-right: 16px;
}

.liveSpeedProgress {
    padding: 22px 16px;
    background: rgba(255, 255, 255, 0.12);
}

.liveSpeedProgress .progress {
    height: 12px;
    border-radius: 4px;
    overflow: hidden;
}

.liveSpeedProgress .progress-bar {
    background-color: var(--primary-color);
}

.speedTestItem:not(:last-child) {
    margin-bottom: 22px;
}

.serverDetailOuter {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.serverDetailBox {
    border-radius: 12px;
    padding: 16px;
    background: var(--light-bg-color);
    text-align: center;
    min-width: 205px;
}

.serverDetailBox>*:has(+*) {
    margin-bottom: 16px;
}

.serverName {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 700;
    line-height: 1. 36;
}

.speedDetail {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.36;
}

.speedDetail span {
    color: var(--pera-color);
}

.bgHeading {
    padding: 12px 16px;
    border-radius: 12px;
    background: var(--light-bg-color);
}

.emptyState {
    padding: 46px 0;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}

.searchSection:has(>.emptyState) {
    margin-bottom: 0 !important;
}

.searchSection:has(+ .searchSection) {
    margin-bottom: 46px;
}

.searchSection #searchForm {
    display: flex;
    align-items: baseline;
    justify-content: center;
    /* gap: 16px; */
}

.searchSection #searchForm>*:not(:last-child) {
    margin-right: 16px;
}

.searchControl {
    flex: 0 0 auto;
    width: 640px;
    padding-left: 42px;
}

.resetButton,
.searchButton {
    white-space: nowrap;
}

.searchIcon {
    display: flex;
    position: absolute;
    top: 13px;
    left: 12px;
}

.iti__country-list {
    background-color: #191b21 !important;
    border: 1px solid #2b2d32;
}

.iti--allow-dropdown {
    width: 100% !important;
}

/* .vodContent .nav-item.active .nav-link{
    background-color: #1295d6;
    color: #fff;
} */



.p-rating i {
    color: #FBC418;
}

.p-rating i.grey-color {
    color: #DDDDDF;
}

.success-modal .modal-content {
    padding: 18px;
    border-radius: 26px;
    background-color: #2D2F35;
    text-align: center;
}

.favouritesSvg {
    top: 10px;
    right: 10px;
    z-index: 2;
}

.fav_action,
.removeFavourite {
    background: #fff;
    border: 1px solid rgba(102, 102, 102, 0.75);
    color: #716f6f;
    border-radius: 50% !important;
    height: 26px;
    width: 26px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.fav_action .favourite,
.removeFavourite .favourite {
    color: red;
}

/* 07-oct-2025 */

.vod_item_list {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.vod_item_list li {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    padding: 4px 10px;
    width: 35px;
    height: 35px;
    min-width: 35px;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
}

.vod_item_list li:hover,
.vod_item_list li.active {
    color: #fff;
    background: var(--primary-color);
}


.home-loader {
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}


.breadcrumb {
    --bs-breadcrumb-padding-x: 0;
    --bs-breadcrumb-padding-y: 0;
    --bs-breadcrumb-margin-bottom: 0rem;
    --bs-breadcrumb-border-radius: 0;
    --bs-breadcrumb-divider-color: var(--bs-secondary-color);
    --bs-breadcrumb-item-padding-x: 0.5rem;
    --bs-breadcrumb-item-active-color: var(--th-primary-blue-color);
    display: flex;
    flex-wrap: wrap;
    padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
    margin-bottom: var(--bs-breadcrumb-margin-bottom);
    font-size: 14px;
    list-style: none;
    background-color: var(--bs-breadcrumb-bg);
    border-radius: 0;
    font-weight: 600;
}

.breadcrumb-item a {
    color: #fff;
    display: flex !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    padding-right: 7px;
    color: rgba(255, 255, 255, 0.822);
}

/* .breadcrumb-item+.breadcrumb-item::before {
    padding-right: 7px;
} */
.breadcrumb-item.active {
    color: var(--primary-color);
}


/*  */
.movie_vod_flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.movie_vod_flex>div,
.movie_vod_flex_inner {
    margin-right: 36px !important;
}

.v-ul-list {
    padding: 0;
    list-style: none;
}

.v-ul-list li a {
    font-size: 15px;
    color: var(--th-primary-blue-color);
    font-weight: 500;
}

.video-infos {
    flex: auto;
}

.v-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    margin: 0 0 7px 0;
}

.c-desc {
    font-size: 14px;
    font-weight: 400;
    color: #e0e0e0;
    margin: -4px 0 24px;
}

.video-data-img img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #2b2c32;
}

.maxRightWidth.video-data-img {
    width: 390px;
    flex: 0 0 390px;
    position: relative;
    z-index: 1;
    align-self: flex-start
}

.swiper.episodeSlider {
    width: 100%;
}

.noData_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.noData_box h3 {
    font-size: 22px;
    font-weight: 600;
}

/*  */


.tooltip-inner {
    color: #000000;
    text-align: center;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0px 0px 19px 0px rgb(38 45 118 / 13%);
    padding: 5px 13px;
}

.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,
.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #fff;
    border-width: 0 calc(1rem * .5) 0.6rem;
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
    border-width: 0.6rem calc(1rem * .5) 0;
    border-top-color: #fff;
}


.premiumChannelBlock {
    border-radius: 16px;
    border: 1px solid var(--th-input-border-color);
    background: #FFF;
    padding: 15px 30px;
    margin-bottom: 30px;
}

.channelPackageTitle {
    color: #000;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--th-input-border-color);
    margin-bottom: 25px;
}

.channelPackageList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    justify-items: center;
}

.channelPackageImg {
    cursor: pointer;
    width: 50px;
    height: 50px;
}

.channelPackageImg img {
    border: 1px solid var(--th-input-border-color);
    border-radius: 6px;
    max-height: 50px;
    width: 100%;
}

.channelPackageItem:hover {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 10px 0px;
}

.add-video-elements .c-Logo a,
.add-video-elements .c-Logo a img {
    height: 100%;
    width: 100%;
}

.add-video-elements {
    flex: auto;
    position: relative;
}

.video-details .add-video-elements {
    padding-left: 150px !important;
}

.video-details {
    background: #000;
    padding: 10px;
    color: #fff;
    /* display: flex; */
    gap: 15px;
    flex-wrap: nowrap;
    min-height: 93px;
    justify-content: space-between;
    position: relative;
}

.gridIcon {
    /* flex: 0 0 56px; */
    align-self: flex-start;
    cursor: pointer;
    width: 120px;
    height: 100%;
    position: absolute;
}

.gridIcon img {
    width: 100%;
}

.guideEpisodeSlider .swiper-slide {
    margin-bottom: 10px;
}



/*  */

.c-Logo {
    position: absolute;
    right: 0;
    top: 0;
    width: 56px;
    max-width: 56px;
    height: 56px;
}

.c-Logo a,
.c-Logo a img {
    max-width: 100%;
    display: inline-block;
    height: 60px;
    width: 60px;
    object-fit: contain;
}

.add-video-elements .c-Logo a,
.add-video-elements .c-Logo a img {
    height: 100%;
    width: 100%;
}

.c-info-block {
    flex: auto;
    font-size: 15px;
    padding: 0 70px 0 0;
}

.c-other-data {
    display: flex;
    justify-content: space-between;
    gap: 0 2%;
}

.c-prognext,
.c-prognow {
    flex: 0 0 49%;
}

.c-dateTime {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 0 0 5px;
}

.p-progress {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 5px;
}

.p-progress .progress {
    flex: auto;
    border-radius: 0;
}

.p-progress .progress-bar {
    background-color: #b6d4ff;
}

.p-progress .progress,
.p-progress .progress-stacked {
    background-color: #434446;
}

.p-progress .progress-bar {
    background-color: #5a94e8;
}

.c-time {
    color: #cdae79;
}

.c-pnow {
    background: #7ebcf9;
    text-align: right;
    padding: 0 5px;
}

/*  */


/* Tooltip */

.schedule-tooltip .scheduleHeader {
    background: #2c6ef2;
    color: white;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -5px -13px 5px;
    border-radius: 14px 14px 0 0;
    font-size: 18px;
    padding: 14px 18px;
}

.tootipClose {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.schedule-innerBox {
    padding: 0;
    max-height: 280px;
    overflow-y: auto;
}

.schedule-innerBox::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.schedule-innerBox::-webkit-scrollbar-thumb {
    background-color: #336AEA;
    border-radius: 16px;
}

.schedule-innerBox::-webkit-scrollbar-track {
    border-radius: 16px;
    background: rgba(51, 106, 234, 0.06);
}

.schedule-item {
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
    display: flex;
    text-align: left;
    align-items: center;
}

.schedule-item:last-child {
    border-bottom: 0;
}

.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,
.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: #fff;
    border-width: calc(1rem * .5) .6rem calc(1rem * .5) 0;
}

.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,
.bs-tooltip-end .tooltip-arrow::before {
    border-left-color: #fff;
    border-width: calc(1rem * .5) 0 calc(1rem * .5) .6rem;
}

.custome_tooltip.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,
.custome_tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-width: calc(1.8rem * .5) 1rem calc(1.8rem * .5) 0;
}

.custome_tooltip.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,
.custome_tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-width: calc(1.8rem * .5) 0 calc(1.8rem * .5) 1rem;
}

.custome_tooltip.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.custome_tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-width: 1rem calc(1.8rem * .5) 0;
}

.custome_tooltip.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,
.custome_tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-width: 0 calc(1.8rem * .5) 1rem;
}

.schedule_time {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    min-width: 60px;
    text-align: left;
}

.schedule_content {
    border-left: 3px solid #336AEA;
    padding-left: 14px;
}

.schedule_content p {
    color: #3D3D3D;
    font-size: 14px;
    margin: 0;
}

.schedule_content h4 {
    color: #000;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 4px;
}

.schedule_content span {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    display: inline-block;
}

.scheduleTooltipWidth {
    z-index: 9999;
}

.scheduleTooltipWidth .tooltip-inner {
    max-width: 350px;
    width: 100%;
}

.tooltip-next-p .tooltip-inner {
    max-width: 300px;
    width: 100%;
}

.tooltip.show {
    opacity: 1;
}

.tooltip-inner .chn-title {
    text-align: left;
    font-size: 19px;
    font-weight: 500;
}

.p-next {
    text-align: right;
    background-image: url(../frontend/img/arrow-left-icon.png);
    background-repeat: no-repeat;
    background-position: right 7px;
    padding: 0 12px 0 0;
}

/*  */

.contentDescription {
    position: relative;
}

.see-more-toggle {
    display: inline-block;
    margin-top: 5px;
    color: #007bff;
    cursor: pointer;
    font-weight: 500;
}

.grecaptcha-badge {
    bottom: 94px !important;
}


[dir="rtl"] .breadcrumb-item+.breadcrumb-item::before {
    padding-right: 0;
    padding-left: 7px;
}

[dir="rtl"] .breadcrumb-item+.breadcrumb-item {
    padding-left: 0;
    padding-right: 7px;
    display: flex;
}

[dir="rtl"] .backBtn svg {
    transform: rotateY(180deg);
}

[dir="rtl"] .modal-header .btn-close {
    margin-left: 0;
}

[dir="rtl"] .backBtn {
    left: 0;
    right: 0;
}

[dir="rtl"] .channelDetail {
    margin-left: 0;
    margin-right: 122px;
}

[dir="rtl"] .channelNextPrevBox {
    left: auto;
    right: 0;
}

[dir="rtl"] .channelDetail .otherDetail {
    margin-left: 0 !important;
    margin-right: auto;
}

[dir="rtl"] .favouritesSvg {
    left: 10px;
    right: auto;
}

.channelVideoPlay:hover {
    cursor: pointer;
}

[dir="rtl"] .lang_dropdown {
    left: 0;
    right: auto;
}

[dir="rtl"] .navbar-brand {
    margin-right: 0;
    margin-left: auto;
}

[dir="rtl"] #header .navbar-expand-lg .navbar-nav {
    margin-left: 0 !important;
    margin-right: auto;
}

[dir="rtl"] #header .navbar-expand-lg .navbar-nav .nav-item {
    margin-right: 0;
    margin-left: 30px;
}

[dir="rtl"] #header .navbar-expand-lg .navbar-nav .nav-item:last-child {
    margin-left: 0px;
}

[dir="rtl"] #header .navbar-nav .nav-link svg,
[dir="rtl"] .vodContentBtnGroup .navbar-nav .nav-link svg {
    margin-right: 0;
    margin-left: 10px;
}

[dir="rtl"] .vodContentBtnGroup .navbar-nav>*:not(:last-child) {
    margin-right: 0;
    margin-left: 16px;
}

[dir="rtl"] .channelItem {
    margin-right: 0;
    margin-left: 26px;
}

[dir="rtl"] .channelItem:nth-child(10n) {
    margin-left: 0;
}

[dir="rtl"] .vodItem {
    margin-right: 0;
    margin-left: 16px;
}

[dir="rtl"] .vodItem.vodInnerItem:nth-child(5n) {
    margin-right: 0;
    margin-left: 16px;
}

[dir="rtl"] .vodItem:not(.vodInnerItem):nth-child(5n) {
    margin-right: 0;
    margin-left: 0;
}

[dir="rtl"] .episodeDetailSection .vodItem:nth-child(4n) {
    margin-left: 0;
}

[dir="rtl"] .searchSection #searchForm>*:not(:last-child) {
    margin-left: 16px;
    margin-right: 0;
}

[dir="rtl"] .searchControl {
    padding-left: 16px;
    padding-right: 42px;
}

[dir="rtl"] .searchIcon {
    left: auto;
    right: 12px;
    transform: rotateY(180deg);
}

[dir="rtl"] .detailIcon,
[dir="rtl"] .liveSpeedDetail .speed {
    margin-right: 0;
    margin-left: 16px;
}

[dir="rtl"] .loginIpDetail img {
    margin-left: 0;
    margin-right: 10px;
}

[dir="rtl"] .loginActivity svg {
    margin-left: 0;
    margin-right: 6px;
}

[dir="rtl"] .deviceDetail .deviceIcon {
    margin-left: 10px;
    margin-right: 0;
}

[dir="rtl"] .socialFooter .pageFooterLink svg {
    margin-right: 0;
    margin-left: 8px;
}

[dir="rtl"] .guidListTitle {
    margin-right: 10px !important;
}

[dir="rtl"] .playerEpisodeInner {
    margin-right: 10px !important;
}

[dir="rtl"] #header .extra_nav {
    margin-left: 0 !important;
    margin-right: 30px;
}

[dir="rtl"] #header .extra_nav .navbar-nav {
    padding: 0;
}

[dir="rtl"] .movie_vod_flex>div,
[dir="rtl"] .movie_vod_flex_inner {
    margin-right: 0 !important;
    margin-left: 30px !important;
}

[dir="rtl"] .episodeDetailbody {
    margin-right: 0;
    margin-left: 36px;
}

[dir="rtl"] #header .navbar-expand-lg .extra_nav .navbar-nav .nav-item {
    margin-right: 0;
    margin-left: 12px;
}


.themeChangeBtn {
    width: 36px;
    height: 36px;
    background-color: var(--white-color);
    color: var(--secondry-color);
    padding: 6px;
    border-radius: 50px;
    z-index: 4;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out .3s;
}

@media (max-width: 1399.98px) {

    .dropdown-toggle.lang_drop,
    .dropdown-toggle.lang_drop .flag_ico,
    .themeChangeBtn {
        width: 30px;
        height: 30px;
    }

    #header .navbar-expand-lg .navbar-nav .nav-item {
        margin-right: 16px;
    }

    .navbar-brand {
        width: 100px !important;
    }

    [dir="rtl"] #header .navbar-expand-lg .navbar-nav .nav-item {
        margin-right: 0;
        margin-left: 16px;
    }

    [dir="rtl"] #header .navbar-expand-lg .navbar-nav .nav-item:last-child {
        margin-left: 0px;
    }

    [dir="rtl"] #header .extra_nav {
        margin-left: 0 !important;
        margin-right: 16px;
    }

    [dir="rtl"] #header .navbar-nav .nav-link svg,
    .vodContentBtnGroup .navbar-nav .nav-link svg {
        margin-left: 6px;
    }

    #header .extra_nav {
        margin-left: 16px;
    }

    #header .navbar-nav .nav-link,
    .vodContentBtnGroup .navbar-nav .nav-link {
        padding: 8px 12px;
        font-size: 14px;
        border-radius: 8px;
    }

    #header .navbar-nav .nav-link svg,
    .vodContentBtnGroup .navbar-nav .nav-link svg {
        width: 18px;
        height: 18px;
        margin-right: 6px;
    }

    .recordingListItemDetail .showTiming {
        font-size: 13px;
    }

    .episodeTitle,
    .playerEpisodeInner h2 {
        font-size: 14px;
    }

    .recordingListItemDetail p,
    .otherDetail,
    .releaseYear,
    .episodeDetailbody p,
    .playerEpisodeInner p,
    .grayBox p {
        font-size: 12px;
    }

    .grayBox {
        padding: 20px;
    }

    .grayBox:not(:last-child) {
        margin-bottom: 16px;
    }

    .detailItem {
        margin-bottom: 24px;
    }

    .detailItem+p {
        margin-top: 24px;
    }
}


/* Login Language Css */
.languageContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

/* Hide bullets and reset spacing */
.langaugeUlList {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.languageContainer .langugae_filter .dropdown {
    position: relative;
}

/* Dropdown button styling */
.languageContainer .lang_drop {
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.languageContainer .lang_drop:hover {
    color: #4e8aff;
}

/* Flag icon beside language name */
.languageContainer .flag_ico img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.2);
}

/* Dropdown menu design */
.languageContainer .lang_dropdown {
    background-color: #1b1b1b;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 8px 0;
    min-width: 160px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(8px);
}

/* Dropdown items */
.languageContainer .lang_dropdown .dropdown-item {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    color: #ddd;
    font-size: 14px;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.languageContainer .lang_dropdown .dropdown-item .flag_ico {
    margin-right: 10px;
}

.languageContainer .lang_dropdown .dropdown-item:hover {
    background-color: #2e2e2e;
    color: #4e8aff;
}

/* Arrow styling */
.languageContainer .dropdown-toggle::after {
    border-top: 0.4em solid #fff;
}

.vodContentBtnGroup .navbar-nav {
    gap: 0 !important;
}

/* .vodContentBtnGroup1 .navbar-nav {
    gap: 10px 0px !important;
} */
.vodContentBtnGroup1 .navbar-nav>*:not(:last-child) {
    margin-right: 10px;
}

.vodContentBtnGroup .navbar-nav>* {
    margin: 4px 0;
}

.vodContentBtnGroup .navbar-nav>*:not(:last-child) {
    margin-right: 16px;
}

div:has(.backBtn) {
    gap: 0 !important;
}

div:has(.backBtn) {
    gap: 0 !important;
}

.backBtn+nav {
    margin: 8px;
}

.menuShowBtn {
    padding: 0;
    background: transparent;
    border: none;
    color: var(--white-color);
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}



/* Responsive */
@media (max-width: 576px) {
    .languageContainer .lang_drop {
        font-size: 14px;
    }

    .languageContainer .flag_ico img {
        width: 20px;
        height: 20px;
    }

    .languageContainer .lang_dropdown {
        min-width: 130px;
    }
}

/* 30-oct */
.contentTab {
    display: none;
}

.contentTab.active {
    display: block;
}

.category_tab.active a {
    color: #fff;
    background: #007bff;
    border-radius: 6px;
    padding: 5px 10px;
}

/* .themeChangeBtn {
    color: var(--white-color-text);
    background-color: var(--secondry-color);
} */
.channelSlider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

a.navigation_tv:not(.backBtn, .vodItem) {
    display: block;
}

a:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .5) !important;
}









/* ======================================================================= Light Theme CSS Start ======================================================================= */

body.lightMode,
body.lightMode .video-details {
    background-color: var(--white-color);
}

body.lightMode a:focus-visible {
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25) !important;
}

body.lightMode .loginMainWrapper {
    background-color: var(--white-color);
}

body.lightMode #header {
    box-shadow: 0 0px 6px rgb(0 0 0 / 8%);
    background-color: var(--white-color) !important;
}

body.lightMode .countryTime,
body.lightMode #header .navbar-nav .nav-link,
body.lightMode .vodContentBtnGroup .navbar-nav .nav-link,
body.lightMode .menuShowBtn {
    color: #323232;
}

body.lightMode #header .navbar-nav .nav-link,
body.lightMode .vodContentBtnGroup .navbar-nav .nav-link {
    background: rgb(51 106 234 / 8%);
    transition: ease-in-out .3s;
}

body.lightMode #header .navbar-nav .nav-link:hover,
body.lightMode .vodContentBtnGroup .navbar-nav .nav-link:hover {
    color: #323232;
    background: rgb(51 106 234 / 20%);
}

body.lightMode .themeChangeBtn {
    background-color: var(--light-bg-color);
    color: var(--white-color);
}

body.lightMode .themeChangeBtn svg.sunIcon,
body:not(.lightMode) .themeChangeBtn svg.moonIcon {
    display: none !important;
}

body.lightMode .lang_dropdown,
body.lightMode .hls-player-dimensions.vjs-fluid:not(.vjs-audio-only-mode),
body.lightMode .signUpInner {
    background-color: #f7f7f7;
}

body.lightMode .lang_country,
body.lightMode .section-heading,
body.lightMode .channelItemBody .channelTitle,
body.lightMode .emptyState,
body.lightMode .guidListItem .guidListTitle,
body.lightMode .otherDetail span,
body.lightMode .channelView .channelName,
body.lightMode .recordingListItemDetail .showTiming,
body.lightMode .episodeTitle,
body.lightMode .lightBtn:not(.active),
body.lightMode .vodItem .vodItemBody .title,
body.lightMode .breadcrumb-item a,
body.lightMode .v-title,
body.lightMode .breadcrumb-item+.breadcrumb-item::before,
body.lightMode .profileSection .proInfo .proName,
body.lightMode .detailTitle,
body.lightMode .pageFooterLink,
body.lightMode .deviceDetail .deviceName,
body.lightMode .loginIpDetail,
body.lightMode .server-header,
body.lightMode .statusListItems,
body.lightMode .form-label,
body.lightMode .signUpInnerHead h3,
body.lightMode .iti__country-list,
body.lightMode .channelItemBody .channelTime {
    color: var(--secondry-color);
}

body.lightMode #header .navbar-brand img.lightThemeLogo,
body:not(.lightMode) #header .navbar-brand img.darkThemeLogo,
body.lightMode .loginLogo img.lightThemeLogo,
body:not(.lightMode) .loginLogo img.darkThemeLogo {
    display: block !important;
}

body.lightMode .channelImg {
    border: 2px solid #b3becd;
}

body.lightMode .iti__country-list {
    background-color: #f7f7f7 !important;
    border-color: #b3becd !important;
}

body.lightMode .iti--separate-dial-code .iti__selected-flag {
    color: var(--secondry-color);
    border-radius: 12px 0 0 12px;
}

body.lightMode .channelImg::after,
body.lightMode .vodItem::after {
    background-color: var(--white-color);
    border: 2px solid #3a3a3a;
}

body.lightMode .pageFooterLink::after {
    background-color: var(--white-color);
    border: 2px solid var(--primary-color);
}

body.lightMode .signUpForm .form-group p.note {
    color: #373737;
}

body.lightMode .outlineBtn {
    color: var(--secondry-color);
    border: 1px solid var(--secondry-color);
}

body.lightMode .outlineBtn:hover {
    color: var(--white-color);
    background-color: var(--secondry-color);
}

body.lightMode .c-desc,
body.lightMode .recordingListItemDetail p,
body.lightMode .otherDetail,
body.lightMode .detailVal {
    color: #1d1d1d;
}

body.lightMode .liveTvGuideInner,
body.lightMode .recordingListItem,
body.lightMode .lightBtn:not(.active),
/* body.lightMode .vodItem, */
body.lightMode .profileSection .userDetails,
body.lightMode .pageFooterLink,
body.lightMode .server-container,
.statusListItems {
    background-color: #f1f1f1;
}

body.lightMode .vodItem {
    box-shadow: 0px 0px 8px #00000030;
    background: #fff;
}

body.lightMode .guidListItem,
body.lightMode .speedTestItem,
body.lightMode .signUpForm .form-group {
    background-color: var(--white-color);
}

body.lightMode .liveSpeedProgress,
body.lightMode .liveSpeedDetail .speed {
    background: rgba(0, 0, 0, 0.12);
}

body.lightMode .guidListItem:not(.active):hover,
body.lightMode .lightBtn:not(.active):hover,
body.lightMode .pageFooterLink:not(.active):hover {
    background-color: rgb(51 106 234 / 30%);
}

body.lightMode .guidListItem.active .guidListTitle {
    color: var(--white-color);
}

body.lightMode .guidListItem:not(.active):hover .guidListTitle,
body.lightMode .lightBtn:not(.active):hover,
body.lightMode .pageFooterLink:not(.active):hover {
    color: var(--primary-color);
}

body.lightMode .pageFooterLink.active {
    color: var(--white-color);
    background-color: var(--primary-color);
}

body.lightMode .channelNextPrevBox .btnArrow,
body.lightMode .guidChannelListOuter .btnArrow,
body.lightMode .guidChannelShowListOuter .btnArrow {
    color: #626262;
}

body.lightMode h1,
body.lightMode h2,
body.lightMode h3,
body.lightMode h4,
body.lightMode h5,
body.lightMode h6,
body.lightMode .h1,
body.lightMode .h2,
body.lightMode .h3,
body.lightMode .h4,
body.lightMode .h5,
body.lightMode .h6 {
    color: var(--secondry-color);
}

body.lightMode .btnCheckbox .checkbox-label {
    color: var(--secondry-color);
    background: #f1f1f1;
    border: 1px solid #f1f1f1;
}

body.lightMode button:has(+#videoPlayScreen) svg rect {
    fill: var(--secondry-color);
}

body.lightMode button:has(+#videoPlayScreen) svg g {
    stroke: var(--white-color);
}

body.lightMode #videoPlayScreen .c-date.israelTime,
body.lightMode .liveSpeedDetail,
body.lightMode .overall-status,
body.lightMode .custom_checkbox label,
body.lightMode .captchaReload,
body.lightMode .p-next,
body.lightMode .s-time,
body.lightMode .e-time {
    color: var(--secondry-color) !important;
}

body.lightMode .video-details,
body.lightMode .grayBox,
body.lightMode .loginDeviceItem,
body.lightMode .success-modal .modal-content {
    background: var(--white-color);
}

body.lightMode div:has(>.searchControl),
body.lightMode .modal-title,
body.lightMode .account-verify-text,
body.lightMode .langaugeUlList .dropdown-toggle.lang_drop {
    color: var(--secondry-color);
}

body.lightMode .form-control {
    color: var(--secondry-color);
    background-color: var(--white-color);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-clip: content-box;
}

body.lightMode .form-control:focus {
    color: var(--secondry-color);
    border-color: rgba(0, 0, 0, 0.1);
    background-color: var(--white-color);
}

body.lightMode progress::-webkit-progress-bar {
    background-color: #ffffff;
}

body.lightMode .signUpForm .form-group .form-control,
body.lightMode .captchaImgOuter {
    background: var(--white-color);
    border-color: rgb(0 0 0 / 20%);
    color: var(--secondry-color);
}

body.lightMode .signUpForm .form-group .form-control:focus {
    border-color: rgba(0, 0, 0, 30%);
}

/* Change autocomplete styles in WebKit */
body.lightMode input:-webkit-autofill,
body.lightMode input:-webkit-autofill:hover,
body.lightMode input:-webkit-autofill:focus,
body.lightMode textarea:-webkit-autofill,
body.lightMode textarea:-webkit-autofill:hover,
body.lightMode textarea:-webkit-autofill:focus,
body.lightMode select:-webkit-autofill,
body.lightMode select:-webkit-autofill:hover,
body.lightMode select:-webkit-autofill:focus {
    /* border: transparent; */
    -webkit-text-fill-color: var(--secondry-color);
    -webkit-box-shadow: 0 50px 0px #fff inset;
    transition: unset;
}

@media (max-width: 767.98px) {
    body.lightMode .menuCustomMenu .rightMenu {
        background: var(--white-color);
    }
}

/* ======================================================================= Light Theme CSS End ======================================================================= */

.channelVideoPlay:focus {
    outline: 2px solid #336AEA;
    border-radius: 5px;
    box-shadow: none;
    display: block;
}