body{
    background-color: var(--body);
    color: var(--white);
    margin-bottom: 150px;
}
html{
    position: relative;
    min-height: 100%;
}
:root{
    --body: #0a0f1c ;
    --nav-bar: #192231;
    --bg: #192231;
    --gold: #FFD700;
    --teal: #5febcf ;
    --white: #fff;
    --black: #000000;
    --placeholder : #c9c9c9;
    --border : rgba(255, 255, 255, 0.182);
    --check-bg:  #ffffff30;
    --gray: rgb(210, 210, 210);
    --order-location: gray;
    --hover-bg: #1a2026f0;
    --filter : invert(0%);
    --screen : #0fd3ff;
    --screen-bar : rgba(15, 211, 255, 0.336);
    --screen-shadow : rgba(42, 187, 219, 0.582);
    --sold: rgb(73, 73, 73);
    --sec-header: #294051;
}
.light{
    --body: rgb(247, 247, 247);
    --nav-bar: #ffffff;
    --bg: #ececec;
    --white: #000000;
    --black: #fff;
    --gold: #B8860B;
    --teal : #00796B;
    --placeholder: rgb(133, 133, 133);
    --border : rgb(208, 208, 208);
    --check-bg: #e0e0e0ba;
    --gray: rgb(67, 67, 67);
    --hover-bg: #1a1a1aea;
    --filter : invert(100%);
    --screen : #139ceb;
    --screen-bar: rgba(4, 4, 4, 0.637);
    --screen-shadow: rgba(37, 121, 144, 0.716);
    --sold: rgb(184, 184, 184);
    --sec-header: #5f636a;
}
/*.......................................... nav bar start ................................... */
#nav{
    background-color: var(--nav-bar);
}
#logo-img{
    display: block;
    width: 100px;
    height: 45px;
    object-fit: cover;
}
#cinema-label{
    margin-top: 4px;
    color: var(--gold);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    font-weight: bolder;
}
#login-btn,
#logout-btn{
    width: 100%;
    font-size: 11pt;
    background-color: #0a0f1c;
}
#nav .offcanvas{
    width: 210px;
    background-color: #192231;
}
#nav .offcanvas > .offcanvas-body{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-link.active{
    color: var(--gold) !important;
}
#nav-order > li > a{
    color: var(--white);
    padding: 8px 15px;
    margin: 0 10px;
    font-size: 12pt;
    font-family: Arial, Helvetica, sans-serif;
}
#nav-order > li > a:hover,
.nav-item button:hover{
    color: var(--gold);
}
#login-btn:hover{
    color: #FFD700 !important;
}
.navbar-toggler{
    border: none;
    color: var(--white);
    box-shadow: none;
    outline: 0;
}
.navbar-toggler:focus{
    box-shadow: none;
}
#nav-ph{
    display: none;
}
@media screen and (max-width: 991px){
    #nav-icon{
        display: none;
    }
    .navbar-nav li{
        padding: 8px 0;
    }
    #nav-ph{
        display: block;
        border-top: 1px solid rgba(255, 255, 255, 0.356);
        padding-top: 20px;
        margin-top: 20px;
    }
    .my-account{
        display: block;
        margin-left: 12px;
    }
    #nav-order > li > a{
        color: white;
        font-size: 11pt;
        padding: 3px 20px;
    }
    #logo-img{
        width: 100px;
        height: 40px;
    }
    #nav .offcanvas > .offcanvas-body{
        display: block;
        margin-top: -15px;
        padding-top: 0;
    }
    #nav-ph span{
        font-size: 10pt;
        color: white !important;
    }
    .nav-item button:hover,
    .nav-link.active{
        color: #FFD700 !important;
    }
    #nav-order > li > a:hover{
        color: white !important;
    }
    #nav-order > li > a:active{
        opacity: 0.5;
    }
}

.switch{
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 53px;
    height: 25px;
}
.switch input{
    opacity: 0;
    width: 0;
    height: 0;
}
.slider{
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #5fa5db;
    transition: .4s;
    border-radius: 30px;
}
.slider:before{
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    border-radius: 20px;
    left: 5px;
    top: 4px;
    z-index: 2;
    background-color: #e8e8e8;
    transition: .4s;
}
.sun svg{
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 1;
    width: 17px;
    height: 17px;
    cursor: pointer;
}
.moon svg{
    fill: #73C0FC;
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 1;
    width: 17px;
    height: 17px;
    cursor: pointer;
}
.theme-toggle:checked + .slider{
    background-color: #0a0f1c;
}
.theme-toggle:focus + .slider{
    box-shadow: 0 0 1px #183153;
}
.theme-toggle:checked + .slider:before{
    transform: translateX(25px);
}


.ell-vertical{
    color: var(--white);
}
#nav-icon > .dropdown > .dropdown-menu span{
    color: white;
    font-size: 10pt;
}
#nav-icon > .dropdown > .dropdown-menu{
    background-color: #192231;
    border: 1px solid rgba(117, 117, 117, 0.356);
    padding-bottom: 0;
    padding-top: 10px;
}
/*.......................................... nav bar end ................................... */


/*.......................................... home section start ................................... */
#home .carousel-item > img{
    position: relative;
    width: 100%;
    height: 600px;
    object-fit: cover;
}
#home .carousel-inner{
    z-index: -1 !important;
}
#search-ticket{
    margin-top: -70px;
    background-color:  var(--bg);
    padding: 30px 30px;
    border-radius: 10px;
    z-index: 9999 !important;
}
#search-ticket .col-lg-5{
    display: flex;
    align-items: center;
    justify-content: end;
}
#search-ticket .col-lg-5 a{
    color: var(--black);
    background-color: var(--teal);
}
#search-ticket .col-lg-5 a:hover{
    color: var(--black);
}

#home-search{
    background-color: var(--body);
    padding: 20px;
    border-radius: 8px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.group{
    display: flex;
    line-height: 28px;
    align-items: center;
    position: relative;
    width: 100%;
}
.input{
    /* width: 100%; */
    height: 45px;
    padding-left: 2.5rem;
    padding-bottom: 3px;
    border: 0;
    border-radius: 5px;
    background-color: transparent;
    outline: none;
    transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: text;
    z-index: 0;
    border: 1px solid var(--border);
    color: var(--white);
}
input::placeholder,
textarea::placeholder{
    color: var(--placeholder);
    font-size: 10pt;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    -webkit-text-fill-color: var(--white) !important;
    background-color: transparent !important;
    transition: background-color 5000s ease-in-out 0s;
}
.search-icon{
    position: absolute;
    left: 1rem;
    fill: var(--placeholder);
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    z-index: 1;
}
@media screen and (min-width: 576px) and (max-width: 992px){
    #search-ticket{
        width: 90%;
    }
}
@media screen and (max-width: 992px){
    #home-search > .col-lg-3{
        margin-bottom: 20px;
    }
    #home-poster-content > h1{
        width: 70%;
        font-size: 32pt;
    }
    .input{
        width: 100%;
    }
}
@media screen and (max-width: 768px){
    #cinema-form .col-sm-6{
        margin-bottom: 15px;
    }
    #home-poster-content > h1{
        width: 80%;
        font-size: 32pt;
    }
}
@media screen and (max-width: 575px){
    #home-poster-content > h1{
        width: 100%;
        font-size: 30pt;
    }
    #search-ticket{
        margin-top: -8px;
        padding: 20px 25px 25px;
    }
    #cinema-form .col-sm-1{
        text-align: right;
    }
    .search-btn{
        margin-top: 10px;
    }
    #home .carousel-item > img{
        position: relative;
        width: 100%;
        height: 270px;
        object-fit: cover;
    }
    #search-ticket .col-lg-7 > h2{
        margin-top: 10px;
        font-size: 14pt;
    }
    #search-ticket .col-lg-5 a{
        padding: 7px 10px 5px;
        font-size: 11pt !important;
    }
    #home .carousel .carousel-control-prev,
    #home .carousel .carousel-control-next{
        display: none;
    }
    .select-dropdown li:hover{
        color: var(--white) !important;
    }
    .select-button > span{
        font-size: 11pt;
    }
}
@media screen and (max-width: 348px){
    #home-poster-content > h1{
        display: block;
        width: 80% !important;
        font-size: 18pt;
    }
    #home-poster-content > p{
        font-size: 12pt;
    }
    #search-ticket .col-lg-7 > h2{
        font-size: 14pt;
        margin-top: 5px;
    }
    .input{
        height: 40px;
    }
    .input::placeholder{
        font-size: 11pt;
    }
    .select-button{
        font-size: 1rem !important;
    }
}

.custom-select{
    position: relative;
    width: 100%;
    font-size: 1.14rem;
    color: var(--white);
}
.select-button{
    width: 100%;
    font-size: 1.14rem;
    background-color: var(--body);
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 5px;
    cursor: pointer;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.selected-value,
.sorting-selected-value{
    text-align: left;
    font-size: 12pt;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.selected-value > i{
    color: var(--gold);
    margin-right: 8px;
}
.arrow{
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--gold);
    transition: transform ease-in-out 0.3s;
}
.select-dropdown{
    position: absolute;
    list-style: none;
    width: 100%;
    background-color: var(--body);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 10px;
    margin-top: 5px;
    max-height: 170px;
    overflow-y: auto;
    transition: 0.5s ease;
    transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}
.select-dropdown li,
.sorting-dropdown li{
    position: relative;
    cursor: pointer;
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 12pt;
}
.select-dropdown li label,
.sorting-dropdown li label{
    width: 100%;
    padding: 5px 10px;
    cursor: pointer;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.select-dropdown::-webkit-scrollbar{
    width: 5px;
}
.select-dropdown::-webkit-scrollbar-track{
    background: var(--border);
    border-radius: 25px;
}
.select-dropdown::-webkit-scrollbar-thumb{
    background: var(--placeholder);
    border-radius: 25px;
}
.select-dropdown li:hover{
    color: var(--gold);
}
.select-dropdown input:checked ~ label,
.select-dropdown input:focus ~ label{
    background-color: var(--check-bg);
    color: var(--white);
}
.select-dropdown input[type="radio"],
.sorting-dropdown input[type="radio"]{
    position: absolute;
    left: 0;
    opacity: 0;
}
.custom-select.active .arrow,
.sorting-content.active .arrow{
    transform: rotate(180deg);
}
.custom-select.active .select-dropdown,
.sorting-content.active .sorting-dropdown{
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}
.search-btn{
    background-color: var(--nav-bar);
    color: var(--white);
}
.search-btn:hover{
    background-color: var(--nav-bar);
    color: var(--white);
    border: 1px solid transparent;
}
/*.......................................... home section end ................................... */


/*.......................................... popular movie start ................................... */
.popularSwiper .item{
    margin: auto;
    position: relative;
    padding-top: 36px;
}
.rank{
    margin-top: -35px;
    left: 5px;
    z-index: 2;
    position: absolute;
    font-weight: bolder;
    font-size: 32pt;
    text-shadow: 2px 5px 6px rgb(63, 63, 63); 
    color: #edce20;
}
.first-rank {
    margin-top: -44px;
    left: 22px;
    z-index: 2;
    position: absolute;
    font-weight: bolder;
    font-size: 18pt;
    color: var(--screen);
    transform: rotate(20deg);
    transform-origin: center; 
}
.popularSwiper .item .img-content{
    position: relative;
}
.popularSwiper .item img{
    display: block;
    width: 100%; 
    height: 270px;
    object-fit: cover;
    margin: auto;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}
.popularSwiper .item img:hover{
    box-shadow: 0 5px 20px var(--gold);
    border-color: var(--gold);
}
.popular-rate{
    background-color: #ffffff30;
    color: white;
    border-radius: 5px;
    bottom: 0;
    right: 0;
    padding: 0 6px;
    position: absolute;
    font-size: 11pt;
}
.popular-rate i{
    color: #FFD700;
    font-size: 9pt;
}
.popularSwiper .item a > label{
    color: var(--white);
    font-size: 10pt;
    margin-top: 8px;
}
.popularSwiper .item a > label:hover{
    cursor: pointer;
    color: var(--gold);
}
.popularSwiper .swiper-wrapper{
    display:flex;            
    align-items:flex-start;
    transition-timing-function: linear !important; 
    will-change: transform;
}
.popularSwiper .swiper-slide {
    width: 180px;
    flex-shrink: 0;
    text-align: center;
    box-sizing: border-box;
    padding: 10px 6px;
}
@media screen and (max-width: 900px){
    .popularSwiper .swiper-slide{ 
        width: 150px; 
    }
    .popularSwiper .item{
        width: 150px;
    }
    .popularSwiper .item img{
        width: 150px;
        height: 240px;
    }
}
@media screen and (max-width: 576px){
    .popularSwiper .swiper-slide{ 
        width: 90px;
    }
    .popularSwiper .item{
        width: 100px;
        padding-top: 30px;
    }
    .popularSwiper .item img{
        width: 100px;
        height: 160px;
    }
    .popularSwiper .item img:hover{
        box-shadow: none;
        border-color: transparent;
    }
    .popularSwiper .item img:active{
        opacity: 0.8;
    }
    .rank{
        margin-top: -25px;
        font-size: 23pt;
        left: 5px;
    }
    .first-rank {
        margin-top: -34px;
        left: 18px;
        font-size: 12pt;
    }
    .popularSwiper .swiper-btn2s{
        display: none;
    }
    .popularSwiper .item a > label{
        font-size: 8pt;
        line-height: 1.7em;  
        min-height: calc(2 * 1.7em);
        display: -webkit-box;  
        -webkit-line-clamp: 2;  
        line-clamp: 2; 
        -webkit-box-orient: vertical;  
        overflow: hidden;    
        text-overflow: ellipsis; 
        word-break: break-word;
    }
    .popularSwiper .item a > label:hover{
        color: var(--white);
    }
    .popular-rate{
        padding: 0 6px;
        font-size: 9pt;
    }
    .popular-rate i{
        font-size: 7pt;
    }
}


/*.......................................... popular movie end ................................... */


/*.......................................... now showing movie start ................................... */
#now-showing-movie,
#coming-soon,
#popular-movie,
#feature-trailer,
#promotion,
#cinema-details{
    margin: 90px auto;
}
#span-block{
    display: flex;
    align-items: center;
}
#span-block > span{
    display: inline-block;
    margin: auto;
    align-items: center;
    justify-content: center;
    background-color: var(--teal);
    width: 20px;
    height: 3px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 18px !important;
}
#span-block h4{
    font-size: 17pt;
}
#view-more > button{
    color: var(--teal);
    margin-bottom: 5px;
}
#now-movie-list > .col-lg-3 > div{
    background-color: var(--bg) ;
    padding: 18px 12px 10px;
    /* padding: 18px 15px 0; */
    border-radius: 8px;
    border: 1px solid var(--border);
}
#now-movie-list a{
    color: var(--white);
    text-decoration: none;
}
.zoom-img{
    width: 100%;
    height:auto;
    overflow: hidden;
    border-radius: 10px;
}
.zoom-img img{
    display: block;
    margin: auto;
    width: 180px;
    height: 290px;
    /* border-radius: 8px; */
    border-radius: 5px;
    object-fit: cover;
    transition: all .3s ease-in-out;
}
.zoom-img img:hover{
    transform: scale(1.1);
}
.zoom-img img:active{
    opacity: 0.7;
}
#now-movie-list .zoom-img ~ .d-flex{
    margin-top: 10px;
    text-align: center;
    height: 40px !important;
}
#now-movie-list a h5{
    font-size: 12pt !important;
}
#now-movie-list a:hover{
    color: var(--gold);
}
#ticket-btn,
#add_promotion,
#user-contact-info #verify,
#OTP #order,
#OTP #book,
#download-screenshot{
    background-color: var(--gold);
    border: 1px solid var(--gold);
    color: var(--black);
    box-shadow: 1px 2px 5px rgba(30, 30, 30, 0.455);
    font-size: 11pt;
}
#ticket-btn:active,
#add_promotion:active,
#user-contact-info #verify:active,
#OTP #order:active,
#OTP #book:active,
#download-screenshot:active{
    opacity: 0.8;
}
#ticket-btn label{
    cursor: pointer;
}
.rate-display{
    padding-top: 5px;
    font-size: 11pt;
    margin-bottom: 0;
}
.rate-display > img{
    display: block;
    width: 20px;
    margin-bottom: -3px;
}
@media screen and (max-width: 576px){
    #ticket-btn,
    #now-movie-list > .col-lg-3 .d-flex p{
        font-size: 10pt !important;
    }
    #now-movie-list a h5,
    #view-more > button{
        font-size: 11pt !important;
    }
    #now-movie-list > .col-lg-3 > div{
        padding: 10px !important;
    }
    .zoom-img img{
        display: block;
        margin: auto;
        width: 130px;
        height: 200px;
    }
    #span-block > span{
        width: 13px;
        height: 3px;
    }
    #now-movie-list{
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }
    #span-block h4{
        font-size: 14pt;
    }
    #now-showing-movie > .d-flex:first-child,
    #coming-soon > .d-flex:first-child,
    #popular-movie > .d-flex:first-child{
        margin-bottom: -8px;
    }
}
@media screen and (max-width: 420px){
    .zoom-img img:hover{
        transform: none;
    }
    #now-movie-list a h5 {
        font-size: 10pt !important;
        line-height: 1.7em;
        min-height: calc(2 * 1.7em);
        max-height: calc(2 * 1.7em);
        display: flex;               
        align-items: center;         
        text-align: center;
        justify-content: center;     
    }
    #now-movie-list a h5 span {
        display: -webkit-box;   
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-word;
    }
    #now-movie-list{
        background-color: var(--bg);
        border-radius: 8px;
    }
    #now-movie-list > .col-lg-3 > div{
        background-color: transparent !important;
        border: none;
        padding: 0 !important;
        margin-top: 20px;
    }
    #now-movie-list #ticket-btn,
    #now-movie-list > .col-lg-3 .d-flex p{
        font-size: 9pt !important;
    }
    #now-movie-list a:hover{
        color: var(--white);
    }
    #now-movie-list .zoom-img ~ .d-flex{
        margin-top: 4px;
        margin-bottom: -5px;
    }
    .rate-display > span:nth-child(2) i{
        font-size: 8pt;
    }
}
#addHomeScreen .modal-body,
#iosInstallApp .modal-body{
    background-color: #1b4064;
}
#addHomeScreen .d-flex:first-child button,
#iosInstallApp .d-flex:first-child button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    font-size: 14pt;
    border: none;
    color: white !important;
    background-color: #1b4064 !important;
}
#addHomeScreen .d-flex:first-child button:hover,
#iosInstallApp .d-flex:first-child button:hover{
    color:white;
    background-color: #1b4064;
}
#addHomeScreen p,
#iosInstallApp p{
    display: block;
    color: white;
    text-align: center;
    margin-top: 10px;
    font-size: 11pt;
}
#addHomeScreen span,
#iosInstallApp span{
    font-size: 10pt;
    color: rgb(210, 210, 210);
}
.alert-icon-img{
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: auto;
}
#addHomeScreen #install-button{
    display: block;
    width: 100%;
    font-size: 12pt;
    margin: 25px auto 0;
    text-align: center;
    background-color: #FFD700;
    color: black;
}
#iosInstallApp #iosInstall-btn{
    display: block;
    width: 100%;
    font-size: 12pt;
    margin: 25px auto 0;
    text-align: center;
}
#addHomeScreen #install-button:hover{
    color: black;
    cursor: pointer;
}
#tutorial h4{
    font-size: 12pt;
    color: white !important;
}
#videoTrailer{
    width: 100%;
    height: 300px;
}
/*.......................................... now showing movie end ................................... */


/*.......................................... footer section start ................................... */
#footer{
    background-color: #101820;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
}
#footer h5,
#toggle-btn button{
    text-transform: uppercase;
    font-size: 14pt;
    color: white;
}
#footer h6{
    text-transform: uppercase;
    font-size: 10pt;
}
#footer p{
    color: rgb(230, 227, 227);
    line-height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    font-size: 11pt;
}
#footer-icon a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10%;
    font-size: 12pt;
    margin-right: 12px;
}
#footer-simple ul,
#footer-dropdown ul{
    list-style: none;
    text-align: left;
    padding-left: 0;
}
#footer-simple ul li,
#footer-dropdown ul li{
    padding: 5px 0;
}
#footer-simple ul li a,
#footer-dropdown ul li a{
    text-decoration: none;
    color: rgb(230, 227, 227);
    font-size: 12pt;
}
#footer-simple ul li a i,
#footer-dropdown ul li a i{
    color: #FFD700;
}
#footer-simple ul li a:hover,
#footer-dropdown ul li a:hover{
    color: #FFD700;
}
#footer-dropdown,
#footer-dropdown #drop-items{
    display: none;
}
#toggle-btn button{
    width: fit-content;
    text-align: left;
    margin-left: -14px;
    border: none;
}
#footer-dropdown{
    margin: -20px 0 15px !important;
}
#footer-dropdown div{
    display: flex;
    align-items: center;
    padding-right: 15px;
    border-radius: 4px;
}
#down{
    display: block;
    font-size: 9pt;
    margin-left: 9px;
    color: white;
}
#up{
    display: none;
    font-size: 9pt;
    margin-left: 9px;
    color: white;
}
#footer-bottom a{
    text-decoration: none;
    color: white;
}
@media screen and (max-width: 768px){
    #footer-dropdown{
        display: block;
        margin-bottom: 25px;
    }
    #footer-simple{
        display: none;
    }
    #footer h5,
    #toggle-btn button{
        font-size: 12pt;
        font-weight: bold !important;
    }
    #developer{
        display: none;
    }
    #footer-simple ul li a,
    #footer-dropdown ul li a{
        font-size: 11pt;
    }
    #footer p{
        font-size: 10pt;
    }
}
@media screen and (max-width: 400px){
    #down,#up{
        margin-left: 1px;
    }
    #footer-dropdown{
        margin-top: -15px !important;
    }
}
/*.......................................... footer section end ................................... */


/*.......................................... movie category start ................................... */
#movies-category{
    margin: 30px auto 50px;
}
#category-form{
    background-color: var(--nav-bar);
    border-radius: 10px;
    padding: 20px 23px;
    color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
#category-form h5{
    text-transform: uppercase;
}
#category-content{
    height: 380px;
    overflow-y: auto !important;
}
#category-content::-webkit-scrollbar,
.sorting-dropdown::-webkit-scrollbar{
    width: 3px;
}
#category-content::-webkit-scrollbar-track,
.sorting-dropdown::-webkit-scrollbar-track{
    background: var(--check-bg);
    border-radius: 25px;
}
#category-content::-webkit-scrollbar-thumb,
.sorting-dropdown::-webkit-scrollbar-thumb{
    background: var(--teal);
    border-radius: 25px;
}
#category-content a{
    display: block;
    width: 100%;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 8px;
    text-decoration: none;
    color: var(--white);
}
#category-content .category-link.active{
    background-color: var(--teal) !important;
    color: var(--black) !important;
}
#genre-ph .category-link.active{
    background-color: var(--teal) !important;
}
#genre-ph .category-link.active button{
    color: var(--black);
}
#category-content a:hover{
    color: var(--teal);
}
#category-content label{
    margin-top: -10px;
}
#movie-sorting .btn-group button{
    background-color: var(--body);
    border: 1px solid var(--border);
    color: var(--white);
}

#movie-list{
    background-color: var(--nav-bar);
    border-radius: 10px;
    padding: 8px 20px;
    margin-top: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
#movie-sorting label{
    margin-right: 20px;
}

#movie-cell-category{
    display: flex;
    align-items: center;
    justify-content: end;
    list-style: none;
    margin-bottom: 0;
    margin-top: 6px;
}
#movie-cell-category li a{
    text-decoration: none;
    color: var(--white);
    font-size: 15pt;
    padding: 0 15px ;
}
#movie-cell-category li a:hover,
#movie-cell-category li a::after,
#movie-cell-category li a.cell-active,
#movie-cell-category li a i:hover,
#movie-cell-category li a i::after{
    color: var(--teal);
}

#movie-list-content{
   margin: 16px auto 20px;
}
#movie-list-show{
    display: none;
}
#movie-list-show > div{
    background-color: var(--nav-bar);
    border-radius: 10px;
    padding: 20px 30px 20px 0;
    border: 1px solid var(--border);
    color: var(--white);
}
#movie-list-show p,
#movie-list-show strong,
#movie-list-show strong ~ label{
    color: var(--gray);
}
#movie-list-show img{
    display: block;
    margin: auto;
    width: 200px !important;
    height: 310px;
    object-fit: cover;
}
#movie-cell-show{
    background-color: var(--nav-bar);
    padding: 15px 15px 20px !important;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
#movie-cell-show .col-lg-3{
    margin-bottom: 22px !important;
}
#movie-cell-show a img{
    border: 1px solid transparent;
    object-fit: cover;
    height: 330px;
}
#movie-cell-show a img:hover{
    border: 1px solid var(--teal);
}
#movie-cell-show a h5{
    font-size: 11pt !important;
    margin-top: 5px;
    color: var(--white);
    text-align: center;
}
#movie-list-show a,
#movie-cell-show a{
    text-decoration: none;
}
#movie-list-show a h4{
    color: var(--white);
    margin-bottom: 10px;
}
#movie-list-show a h4:hover,
#movie-list-show .col-lg-8 > span,
#movie-cell-show .col-lg-3:hover h5{
    color: var(--teal);
}
#circle-play i,
#circle-play:hover{
    color: var(--gold);
}
#circle-play{
    text-decoration: none;
    color: var(--white);
}

#genre-ph{
    display: none;
    margin-top: 15px;
}
#genre-ph a{
    background-color: var(--bg);
    border-radius: 8px;
    margin-right: 10px;
    color: var(--white);
    text-decoration: none;
}
#genre-ph a > button{
    color: var(--white);
    font-size: 11pt;
    padding-top: 7px;
}
.genre-scroll-container,
.date-scroll-container{
    overflow-x: auto;
    white-space: nowrap;
}
.genre-scroll-container::-webkit-scrollbar{
    display: none;
}
@media screen and (min-width: 1500px) and (max-width: 1800px){
    #movie-cell-show a img{
        display: block;
        margin: auto;
        width: 240px !important;
        height: 350px !important;
    }
    #home .carousel-item > img{
        height: 80vh !important;
    }
}
@media screen and (min-width: 1800px){
    #movie-list-show,
    #movie-cell-show{
        max-width: 100% !important;
    }
    #movie-cell-show > div{
        display: grid;
        row-gap: 0;
        margin: auto;
        grid-template-columns: repeat(5, 1fr);
    }
    #movie-cell-show > div > div{
        width: 100%;
        padding-bottom: 30px !important;
    }
    #movie-cell-show a img{
        display: block;
        margin: auto;
        width: 220px !important;
        height: 320px !important;
    }
    #home .carousel-item > img{
        height: 90vh !important;
    }
}
@media screen and (max-width: 347px){
    #movie-cell-show a img{
        display: block;
        margin: auto;
        max-width: 150px !important;
        max-height: 150px !important;
    }
}
@media screen and (max-width: 358px){
    .sorting-select-btn{
        font-size: 11pt;
        padding: 8px 15px;
    }
    #movie-cell-category li a{
        font-size: 12pt;
        padding: 0 !important;
    }
    #movie-cell-category li:first-child a{
        padding-right: 15px !important;
    }
    #genre-ph a > button{
        font-size: 10pt;
    }
    #movie-list-show > div{
        padding: 20px 3px !important;
    }
    #movie-list-show a h4{
        font-size: 13pt;
    }
    #movie-list-show .col-lg-6 > span,
    #movie-list-show .col-lg-6 > p,
    #movie-list-show .col-lg-6 > strong,
    #movie-list-show .col-lg-6 > label{
        font-size: 10pt !important;
    }
    #movie-list-show .col-lg-6 > strong{
        font-weight: 500 !important;
    }
    #circle-play{
        font-size: 9pt !important;
    }
    #movie-cell-show a h5{
        font-size: 9pt !important;
    }
    #movie-cell-show{
        display: block;
        width: 100%;
        margin: 0;
        /* padding: 20px 20px 0 !important; */
        border-radius: 5px;
        /* border-top: 1px solid rgba(255, 255, 255, 0.562); */
    }
}
@media screen and (min-width: 347px) and (max-width: 400px){
    #movie-cell-show a img{
        display: block;
        margin: auto;
        max-width: 170px !important;
        max-height: 170px !important;
    }
}
@media screen and (max-width: 400px){
    #movie-label{
        display: block;
    }
    #movie-cell-show{
        padding: 10px 5px !important;
    }
}
@media screen and (min-width: 400px) and (max-width: 460px){
    #movie-label{
        display: block;
    }
    #movie-cell-show{
        padding: 10px 5px !important;
    }
    #movie-label p{
        padding: 8px 26px;
        font-size: 12pt;
    }
    #movie-label p > svg{
        width: 20px;
        height: 20px;
    }
    .sorting-dropdown li{
        display: block;
        width: 100% !important;
    }
    #movie-cell-show{
        padding: 15px 10px 0;
    }
    #movie-cell-show a img{
        display: block;
        margin: auto;
        width: 120px !important;
        max-height: 190px !important;
    }
}
@media screen and (min-width: 460px) and (max-width: 510px){
    #movie-cell-show a img{
        display: block;
        margin: auto;
        width: 200px !important;
        max-height: 220px !important;
    }
}
@media screen and (max-width: 575px){
    #movie-sorting{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    #movie-sorting .col-lg-8,
    #movie-sorting .col-lg-4{
        width: fit-content;
    }
    #movie-sorting .col-lg-8 .d-flex > label{
        display: none;
    }
    .sorting-select-btn{
        padding-left: 10px;
    }
    .sorting-select-btn .arrow{
        margin-left: 8px;
    }
    #movie-cell-category{
        margin-bottom: 4px;
        padding: 0;
    }
    .sorting-dropdown li{
        display: block;
        width: 100% !important;
    }
    #movie-cell-show a h5{
        font-size: 8pt !important;
        /* text-align: left; */
    }
    #movie-cell-show > div{
        display: grid;
        row-gap: 0;
        margin: auto;
        grid-template-columns: repeat(3, 1fr);
    }
    #movie-cell-show .col-lg-3{
        padding: 4px !important;
        margin-bottom: 10px !important;
    }
    #movie-cell-show .col-lg-3:hover h5{
        color: var(--white);
    }
    #movie-cell-show a img{
        display: block;
        margin: auto;
        width: 200px !important;
        height: 250px !important;
    }
    #movie-cell-show a img:hover{
        border: 1px solid transparent;
    }
    #movie-list-show img:active,
    #movie-cell-show a img:active{
        opacity: 0.7;
    }
    #movie-sorting .btn-group button,
    #movie-sorting .btn-group .dropdown-menu{
        font-size: 10pt;
    }
    #movie-list-show a h4{
        font-size: 14pt;
        font-weight: bold;
    }
    #movie-list-show .col-lg-8 > span,
    #movie-list-show p,
    #movie-list-show strong,
    #movie-list-show strong ~ label{
        font-size: 11pt;
        margin-bottom: 10px;
    }
}
@media screen and (min-width: 576px) and (max-width: 768px){
    #movie-list-show img{
        display: block;
        width: 80% !important;
        margin: auto;
    }
}
@media screen and (min-width: 575px) and (max-width: 638px){
    #movie-cell-show a img{
        display: block;
        margin: auto;
        max-width: 200px !important;
        max-height: 250px;
    }
}
@media screen and (min-width: 680px) and (max-width: 819px){
    #movie-cell-show a img{
        display: block;
        margin: auto;
        max-width: 190px !important;
        height: 260px !important;
    }
}
@media screen and (max-width: 767px){
    #movie-list-show a h4{
        margin-top: 20px;
    }
    #movie-list-show > div{
        padding: 20px 10px;
    }
    #movies-category{
        margin: 20px 10px 70px !important;
        overflow: hidden;
    }
    #promotion-page{
        margin-top: 20px !important;
    }
}
@media screen and (max-width: 990px){
    #category-form{
        margin-top: 30px;
    }
    #movies-category .order-lg-first{
        display: none;
    }
    #genre-ph{
        display: block;
    }
    #movie-cell-show a img{
        display: block;
        margin: auto;
        width: 100% !important;
        height: 290px;
    }
}
@media screen and (min-width: 990px) and (max-width: 1160px){
    #movie-cell-show a img{
        display: block;
        margin: auto;
        width: 90% !important;
        height: 230px;
    }
}
/*.......................................... movie category end ................................... */


/*.......................................... promotion list start ................................... */
#promotion-page{
    display: block;
    width: 100%;
    margin-top: 30px;
    padding: 0 40px;
}
#promotion-list a{
    color: var(--white);
    text-decoration: none;
}
#promotion-list a > img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
#promotion-list a > h5{
    background-color: var(--bg);
    padding: 10px 15px;
    font-size: 12pt;
    border-radius: 5px;
}
#promotion-list a:hover{
    color: var(--teal);
}
@media screen and (max-width: 575px){
    #promotion-list > div{
        display: grid;
        row-gap: 0;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 0 !important;
    }
    #promotion-list .col-lg-3{
        margin-bottom: 30px !important;
    }
    #promotion-page{
        padding: 0 10px;
        overflow: hidden;
    }
    #promotion-list a > h5{
        margin-top: 5px !important;
        font-size: 11pt;
    }
}
@media screen and (max-width: 460px){
    #promotion-list > label{
        padding: 10px 26px 8px;
        font-size: 11pt;
    }
    #promotion-list a > img{
        height: 180px;
    }
}
@media screen and (max-width: 410px){
    #promotion-list a > h5{
        padding: 10px;
        font-size: 9pt;
    }
}
@media screen and (max-width: 348px){
    #promotion-list a > h5{
        padding: 5px;
        font-size: 8pt;
    }
    #promotion-list a > img{
        height: 150px;
    }
}
/*.......................................... promotion list end ................................... */


/*.......................................... promotion details start ................................... */
#promotion-details{
    margin: 30px auto 70px;
}
#promotion-details img{
    height: 280px;
}
#promotion-content{
    display: block;
    width: 80%;
    margin: auto;
    background-color: var(--nav-bar);
    border-radius: 10px;
    padding: 20px 10px;
    border-left: 2px solid var(--teal);
    border-right: 2px solid var(--teal);
}
#promotion-content > h4{
    margin-left: 20px;
}
#promotion-content .col-lg-8{
    display: block;
    margin: auto;
}
#promotion-btn{
    display: block;
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--teal);
    font-size: 13pt;
    color: var(--white);
}
#promotion-btn:hover{
    color: var(--teal);
    box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.524);
}
@media screen and (max-width: 990px){
    #promotion-content{
        width: 98%;
    }
}
@media screen and (max-width: 768px){
    #promotion-details{
        margin: 25px auto 70px;
    }
    #promotion-content img{
        display: block;
        width: 250px !important;
        height: 270px;
        object-fit: cover;
        margin: auto;
        margin-bottom: 20px;
    }
    #promotion-content{
        padding: 20px 15px 0 !important;
    }
}
@media screen and (max-width: 440px){
    #promotion-content > h4{
        font-size: 14pt;
        margin-left: 0;
    }
    #promotion-content img{
        width: 210px !important;
        height: 220px;
    }
    #promotion-content .col-lg-8{
        padding: 0 20px !important;
    }
    #promotion-content .col-lg-8 p{
        font-size: 10pt;
        margin-top: 3px;
    }
}
@media screen and (max-width: 360px){
    #promotion-content{
        width: 100%;
    }
    #promotion-content > h4{
        font-size: 12pt;
    }
    #promotion-content img{
        width: 160px !important;
        height: 170px;
    }
    #promotion-content .order-md-first{
        font-size: 11pt !important;
    }
}
/*.......................................... promotion details end ................................... */


/*.......................................... movie details start ................................... */
#movie-details > div,
#movie-cover-poster,
#book-ticket > div,
#ticket-mc-poster{
    position: relative !important;
    width: 100%;
}
#movie-cover-poster > img{
    display: block;
    width: 100%;
    height: 98vh;
    object-fit: cover;
}
#movie-cover-poster > span,
#ticket-mc-poster > span{
    position: absolute;
    width: 100%;
    background-color: var(--hover-bg);
    height: 100%;
    top: 0;
}
#movie-detail-content{
    position: absolute;
    top: 40px;
    width: 100%;
    color: white;
}
#movie-details #circle-play{
    color: white;
}
#movie-detail-content > .col-lg-4 > img{
    border: 1px solid rgba(255, 255, 255, 0.233);
    padding: 5px;
    width: 300px;
    height: 460px;
    object-fit: cover;
}
#movie-detail-content > .col-lg-8 > h1{
    color: #5febcf;
    font-weight: bold;
    font-size: 26pt;
}
#movie-detail-content > .col-lg-8 p{
    line-height: 28px;
    font-size: 12pt;
}
#movie-detail-content > .col-lg-8 span{
    font-size: 12pt;
}

.modal-content{
    justify-content: end;
}
.modal-content > div:first-child > button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    font-size: 14pt;
    border: none;
    color: white;
    background-color: #1b4064;
}
.modal-content > div:first-child > button:hover,
.modal-content > div:first-child > button:focus{
    color: white;
    background-color: #1b4064;
}
#more-cover-poster,
#movie-cast{
    padding: 20px 30px 5px;
    margin: 0 auto 50px;
}
#more-cover-poster > h4,
#movie-cast > h4{
    display: block;
    text-align: left;
    border-bottom: 1px solid var(--teal);
    padding-bottom: 9px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 17pt;
}
#more-cover-poster img{
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 8px;
}
#movie-cast .mySwiper6 .swiper-slide{
    background-color: var(--nav-bar);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    padding: 30px 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--white);
}
.swiper-pagination-bullet-active{
    background-color: var(--teal);
    opacity: 1;
}
#movie-cast img{
    display: block;
    margin: auto;
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 10%;
    border: 1px solid var(--check-bg);
    padding: 10px;
}
#movie-cast h5{
    text-align: center;
    margin: 20px auto 15px;
    font-size: 13pt;
    height: 30px;
}
@media screen and (max-width: 992px){
    #movie-cover-poster{
        display: none;
    }
    #movie-detail-content > .col-lg-8 > h1{
        font-size: 16pt;
        color: var(--teal);
    }
    #movie-detail-content{
        position: relative;
        background-color: var(--nav-bar);
        width: 100%;
        margin-right: 0 !important;
        top: 0;
        padding-top: 20px;
        padding-bottom: 20px;
        height: 100%;
        color: var(--white);
    }
    #ticket-mc-poster > img{
        height: 500px !important;
    }
    #movie-detail-content .col-lg-4 > img,
    #ticket-m-poster > img{
        width: 210px !important;
        height: 330px !important;
        object-fit: cover;
        border: 1px solid var(--border);
    }
    #movie-detail-content .col-lg-8{
        padding: 30px;
    }
    #movie-detail-content #circle-play{
        color: var(--white);
    }
    #movie-cast{
        margin-top: -60px;
    }
}
@media screen and (max-width: 618px){
    #detail-flex{
        display: block !important;
        width: 100% !important;
    }
    #detail-flex > div:nth-child(2){
        margin-left: 0 !important;
    }
    #more-cover-poster > h4,
    #movie-cast > h4{
        margin: 0;
    }
}
@media screen and (max-width: 520px){
    #more-cover-poster > h4,
    #movie-cast > h4{
        font-size: 15pt;
    }
    #movie-detail-content > .col-lg-8{
        padding-right: 13px !important;
        padding-left: 13px;
    }
    #movie-detail-content > .col-lg-8 p,
    #movie-detail-content > .col-lg-8 span,
    #movie-detail-content > .col-lg-8 strong,
    #movie-detail-content > .col-lg-8 h6,
    #movie-detail-content #detail-flex i{
        font-size: 11pt;
    }
    #detail-flex{
        margin-bottom: 25px !important;
    }
    #movie-detail-content #ticket-btn,
    #movie-detail-content #circle-play{
        font-size: 11pt !important;
    }
    #more-cover-poster,
    #movie-cast{
        padding: 20px 20px 5px;
    }
    #more-cover-poster .swiper{
        padding: 0 0 40px;
    }
    #movie-detail-content > .col-lg-8 > h1{
        font-size: 15pt;
    }
}
@media screen and (max-width: 420px){
    #movie-detail-content .col-lg-4 > img,
    #ticket-m-poster > img{
        width: 180px !important;
        height: 280px !important;
        object-fit: cover;
    }
    #movie-detail-content > .col-lg-8 p{
        font-size: 10pt !important;
    }
    #more-cover-poster > h4,
    #movie-cast > h4{
        font-size: 13pt;
    }
    #ticket-mc-poster > img{
        height: 410px !important;
    }
    #movie-cast h5{
        font-size: 12pt;
    }
}
/*.......................................... movie details end ................................... */


/*.......................................... about us page start ................................... */
#about-page{
    display: block;
    width: 100%;
    margin: 35px auto 80px;
    padding: 0 40px;
}
#about-page > div > h5{
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 15pt;
    font-weight: bold;
}
#about-page > p{
    font-size: 12pt;
    font-family: calibri;
    line-height: 30px;
    font-weight: 400;
    /* margin-bottom: 35px; */
}

#about-page .mySwiper2 img{
    height: 390px;
    object-fit: cover;
    border-radius: 3px;
}
.swiper{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 25px auto;
    width: 100%;
    padding: 0 20px 40px;
    z-index: 0;
}
.swiper-btns{
    position: absolute;
    display: flex;
    margin-top: 0;
    width: 100%;
    justify-content: space-between;
    z-index: 1;
}
.swiper-btns button{
    position: static;
    background-color: var(--bg);
    border: 1px solid var(--border);
    color: var(--white);
    width: 42px;
    height: 42px;
    margin-top: 40px;
    border-radius: 50%;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}
.swiper-btns button:hover{
    background-color: var(--bg);
    border: 1px solid var(--border);
    color: var(--white);
}

#choose-us{
    margin: 90px auto;
}
#choose-us > div > h5{
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 15pt;
    font-weight: bold;
}
#choose-span,
#about-span{
    background-color: var(--teal);
    width: 20px;
    height: 3px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 5px;
}
.choose-content{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--nav-bar);
    border: 1px solid var(--check-bg);
    height: 230px;
    margin: auto;
    border-radius: 8px;
    cursor: default;
}
 .choose-content h5{
    font-size: 13pt;
}
.choose-content svg{
    fill: var(--teal);
    font-size: 26pt;
}

#team{
    margin-top: 120px;
}
#about-page > div:first-child,
#choose-us > div:first-child,
#team > div:first-child{
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
#team > div > h5{
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 15pt;
    font-weight: bold;
}
#team-content .swiper-slide{
    background-color: var(--nav-bar);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    text-align: center;
    border-radius: 8px;
    padding: 30px 20px 20px;
}
#team-content .swiper-slide img{
    width: 150px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid var(--check-bg);
    padding: 20px 10px;
}
#team-content .swiper-slide h5{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13pt;
    height: 42px;
}
#team-content .swiper-slide p{
    color: var(--teal);
    font-size: 11pt;
}
#about-page #review .col-md-6 > div{
    background-color: var(--bg);
    border: 1px solid var(--check-bg);
    border-radius: 8px;
    padding: 20px 15px;
    margin-top: 50px;
}
@media screen and (max-width: 992px){
    #about-page{
        padding: 0 12px !important;
    }
    #about-page > p{
        padding: 0 15px;
    }
    #about-page .mySwiper2 img{
        height: auto;
    }
}
@media screen and (max-width: 500px){
    .swiper-btns button{
        width: 38px;
        height: 38px;
        font-size: 10pt;
    }
    .swiper-pagination-bullet{
        width: 7px;
        height: 7px;
    }
    #about-page > p{
        font-size: 10pt;
        line-height: 25px;
    }
    .choose-content{
        width: 250px;
        height: 160px;
    }
    .choose-content svg{
        font-size: 21pt;
    }
    .choose-content h5{
        font-size: 11pt;
    }
    #team{
        margin-top: 80px;
    }
    #team-content .mySwiper8,
    #about-page .mySwiper7{
        width: 90%;
        margin: auto !important;
    }
    #team-content .swiper-slide img{
        width: 120px;
        height: 150px;
    }
    #about-page > div > h5,
    #choose-us > div > h5,
    #team > div > h5{
        font-size: 13pt;
        font-weight: bold;
    }
    #team > div > label{
        font-size: 10pt;
    }
    #choose-span,
    #about-span{
        width: 13px;
        margin-bottom: 10px;
    }
}
/*.......................................... about us page end ................................... */


/*.......................................... contact us start ................................... */
.swiper-slide{
    user-select: auto;
}
.swiper-btn2s{
    position: relative;
    display: flex;
    width: fit-content;
    z-index: 1;
    text-align: right;
    justify-content: space-between;
}
.swiper-btn2s button{
    position: static;
    background-color: var(--bg);
    border: 1px solid var(--check-bg);
    color: var(--white);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 10pt;
    margin-bottom: 5px;
}
.swiper-btn2s button:hover{
    background-color: var(--bg);
    border: 1px solid var(--check-bg);
    color: var(--white);
}

.cinema-detail-content{
    background-color: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 15px 18px 10px;
}
.cinema-detail-content img{
    height: 220px;
    object-fit: cover;
}
.cinema-detail-content h5{
    font-weight: bold;
    margin: 10px 0 20px;
    font-size: 13pt;
    height: 30px;
}
.cinema-detail-content > div span {
    font-size: 11pt;
}
.cinema-detail-content > div > div.d-flex:nth-child(3){
    height: 40px;
}
@media screen and (max-width: 770px){
    .cinema-detail-content img{
        height: 260px;
        object-fit: cover;
    }
}
@media screen and (max-width: 500px){
    .cinema-detail-content img{
        height: 180px;
        object-fit: cover;
    }
    .cinema-detail-content h5{
        font-size: 11pt;
        height: 20px;
    }
    .cinema-detail-content > div > div:nth-child(2),
    .cinema-detail-content > div > div:nth-child(3){
        font-size: 10pt;
    }
    .cinema-detail-content > div span{
        font-size: 10pt;
    }
}

#contact-us{
    margin: 30px auto 80px;
}
#contact-us-info > h6{
    text-transform: uppercase;
    color: var(--teal);
    font-size: 15pt;
    font-weight: bold;
    margin: 30px 0 20px;
}
#contact-us-info > p{
    font-size: 11pt;
    margin-bottom: 20px;
}
#contact-block{
    display: flex;
    align-items: center;
    margin-top: 6px;
}
#contact-block > span:nth-child(1){
    display: inline-block;
    align-items: center;
    justify-content: center;
    background-color: var(--teal);
    width: 13px;
    height: 3px;
    border-radius: 20px;
    margin-right: 10px;
    margin-top: 6px;
}

#contact-us-form > div{
    background-color: var(--nav-bar);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border);
    margin-top: 25px;
}
form label,
.otp-form label{
    font-size: 10pt;
    margin-bottom: 5px;
}
form textarea{
    resize: none;
}
input:focus,
textarea:focus{
    border: 1px solid var(--gold) !important;
    box-shadow: none !important;
}
@media screen and (max-width: 992px){
    #contact-us{
        padding: 0 20px !important;
    }
}
@media screen and (max-width: 768px){
    #contact-us{
        margin-top: -40px !important;
    }
}
@media screen and (max-width: 460px){
    #contact-us-info > h6{
        text-transform: uppercase;
        color: var(--teal);
        font-size: 14pt;
        font-weight: bold;
        margin: 15px 0 20px;
    }
    #contact-us-info strong,
    #contact-block > span:nth-child(2),
    #contact-block > p{
        font-size: 11pt;
    }
    #contact-us-info{
        margin-bottom: 25px;
    }
}
@media screen and (max-width: 400px){
    #contact-us-form{
        padding: 0 5px !important;
    }
}
/*.......................................... contact us end ................................... */


/*................................... ......... cinema details start.................................. */
#cinema-details{
    margin: 30px auto 70px;
}
#cinema-content{
    display: block;
    width: 85%;
    margin: auto;
    background-color: var(--bg);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--border);
}
#cinema-content .col-lg-7 h4{
    font-size: 16pt;
    color: var(--teal);
}
@media screen and (max-width: 928px){
    #cinema-content{
        width: 100%;
    }
}
@media screen and (max-width: 768px){
    #cinema-content{
        width: 90%;
        padding: 20px 10px 40px;
    }
    #cinema-content .col-lg-7{
        margin-top: 30px;
        padding: 0 30px !important;
    }
}
@media screen and (max-width: 430px){
    #cinema-content{
        width: 100%;
    }
    #cinema-content .col-lg-7{
        margin-top: 20px;
        padding: 0 20px !important;
    }
    #cinema-content .col-lg-7 h4{
        font-size: 14pt;
    }
    #cinema-content .col-lg-7 span{
        font-size: 11pt;
    }
    /* #cinema-details img{
        height: 200px;
        object-fit: cover;
    } */
}
@media screen and (max-width: 319px){
    #cinema-content .col-lg-7 h4{
        font-size: 13pt;
    }
    #cinema-content .col-lg-7 div{
        font-size: 10pt;
    }
}
/*................................... ......... cinema details end.................................. */


/*................................... ......... review info start .................................. */
.carousel-control-prev-icon,
.carousel-control-next-icon{
    filter: var(--filter);
    width: 25px;
    height: 25px;
}
#reviews-info{
    /* background-color: var(--bg); */
    padding: 30px;
    margin-top: -10px;
}
.star-rating{
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-top: -10px;
}
.radio-input{
    position: fixed;
    opacity: 0;
    pointer-events: none;
}
.radio-label{
    cursor: pointer;
    font-size: 0;
    color: var(--grey);
    transition: color 0.1s ease-in-out;
}
.radio-label:before{
    content: "★";
    display: inline-block;
    font-size: 32px;
}
.radio-input:checked ~ .radio-label{
    color: #ffc700;
    color: gold;
}
.radio-label:hover,
.radio-label:hover ~ .radio-label{
    color: goldenrod;
}
.radio-input:checked + .radio-label:hover,
.radio-input:checked + .radio-label:hover ~ .radio-label,
.radio-input:checked ~ .radio-label:hover,
.radio-input:checked ~ .radio-label:hover ~ .radio-label,
.radio-label:hover ~ .radio-input:checked ~ .radio-label{
    color: darkgoldenrod;
}
#review-comment p{
    font-size: 11pt;
}
@media screen and (max-width: 520px){
    #review-comment h5{
        font-size: 12pt;
    }
    #review-comment span,
    #review-comment p{
        font-size: 10pt;
    }
    #review-comment .fa-star{
        font-size: 8pt;
    }
    #reviews-info{
        padding: 30px 10px;
    }
}
/*................................... ......... review info end .................................. */


/*.......................................... book ticket start ................................... */
#ticket-mc-poster > img{
    display: block;
    width: 100%;
    margin: auto;
    height: 520px;
    object-fit: cover;
}
#ticket-m-poster{
    position: absolute;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    justify-content: center;
}
#ticket-m-poster > img{
    border: 1px solid rgba(255, 255, 255, 0.233);
    padding: 5px;
    width: 260px;
    height: 400px;
    object-fit: cover;
}
#ticket-m-poster > h4{
    color: #5febcf;
    margin-top: 15px;
}
#ticket-m-poster > ul{
    color: white;
}
#ticket-m-poster > ul,
#selected-movie-label > div > ul{
    width: fit-content;
    padding-left: 0 !important;
    margin: auto;
}

#order-location1{
    position: relative;
    margin: 80px auto;
}
#order-location2,
#order-location3{
    position: relative;
    margin: 70px auto;
}
#order-location1 #o-location-n,
#order-location2 #o-location-n,
#order-location3 #o-location-n{
    margin-top: -15px;
}
#order-location1 > div:nth-child(1),
#order-location2 > div:nth-child(1),
#order-location3 > div:nth-child(1){
    display: block;
    width: 65%;
    margin: auto;
    height: 1px;
    background-color: var(--order-location);
}
#order-location2 span,
#order-location3 span{
    display: block;
    width: 100%;
}
#order-location2 span:nth-child(1),
#order-location3 span:nth-child(1),
#order-location3 span:nth-child(2){
    border: 1px solid var(--teal);
}
#order-location1 label,
#order-location2 label,
#order-location3 label{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--order-location);
    color: var(--black);
    border: 1px solid var(--order-location);
}
#order-location1 label:nth-child(1),
#order-location2 label:nth-child(1),
#order-location2 label:nth-child(2),
#order-location3 label:nth-child(1),
#order-location3 label:nth-child(2),
#order-location3 label:nth-child(3){
    background-color: var(--teal);
    color: var(--nav-bar);
    border: 1px solid var(--teal);
}
#order-location1 h6:nth-child(2),
#order-location1 h6:nth-child(3),
#order-location2 h6:nth-child(1),
#order-location2 h6:nth-child(3),
#order-location3 h6:nth-child(1),
#order-location3 h6:nth-child(2){
    color: var(--order-location);
}
#order-location1 #o-location-n > div:nth-child(2) > h6,
#order-location2 #o-location-n > div:nth-child(2) > h6,
#order-location3 #o-location-n > div:nth-child(2) > h6{
    margin-top: 5px;
}
@media screen and (max-width: 480px){
    #order-location1 label,
    #order-location2 label,
    #order-location3 label{
        font-size: 10pt;
    }
    #order-location1 #o-location-n > div:nth-child(2) > h6,
    #order-location2 #o-location-n > div:nth-child(2) > h6,
    #order-location3 #o-location-n > div:nth-child(2) > h6{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 10%;
        margin: auto;
        text-align: center;
    }
    #ticket-m-poster > ul{
        font-size: 10pt;
    }
    #ticket-m-poster > h4{
        font-size: 14pt;
        margin-bottom: 12px;
    }
    #show-time{
        padding-top: 10px;
    }
}

#select-date > ul{
    background-color: var(--nav-bar);
    padding: 28px 20px 15px;
    border-radius: 10px;
    border-left: 3px solid var(--border);
    border-right: 3px solid var(--border);
}
#select-date > ul > li,
.select-time > ul > li{
    list-style-type: none;
    height: auto;
}
#select-date > ul button{
    margin-bottom: 20px;
}
.select-time button{
    margin-top: 10px;
}
#select-date > ul button{
    width: 100%;
    height: 50px;
    border: 1px solid transparent;
    background-color: var(--body);
    color: var(--white);
    border: 1px solid var(--check-bg);
    border-radius: 10px;
    font-size: 11pt;
}
.select-time button{
    width: 100%;
    height: 60px;
    border: 1px solid transparent;
    background-color: var(--body);
    color: var(--white);
    border: 1px solid var(--check-bg);
    border-radius: 10px;
    font-size: 11pt;
}
#caret-right{
    color: var(--teal);
    font-size: 15pt;
}
#select-date button:hover,
.select-time button:hover{
    background-color: var(--body);
    color: var(--white);
    border: 1px solid var(--check-bg);
    box-shadow: none !important;
}
.js-select-active{
    background-color: var(--gold) !important;
    color: var(--black) !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
}
#select-cinema-time{
    margin: 70px auto;
}
#cinema-time-content{
    background-color: var(--nav-bar);
    padding: 0;
    padding: 10px 30px;
    border-radius: 10px;
    border-left: 3px solid var(--border);
    border-right: 3px solid var(--border);
}
#cinema-time-content > div{
    margin: 20px 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}
#cinema-time-content h6{
    font-size: 12pt;
}
.cinema-up,
.cinema-down{
    font-size: 10pt;
}
.select-time,
.cinema-up{
    display: none;
}
.cinema-down:hover,
.cinema-up:hover{
    color: var(--teal);
    cursor: pointer;
}
.ct-toggle-btn{
    cursor: pointer;
}
.select-seat-modal .modal-content .row{
    background-color: var(--nav-bar);
    border-radius: 10px;
    padding: 20px 0 20px;
}
.select-seat-modal h5{
    color: var(--teal);
    margin-top: 10px;
}
.select-seat-modal .modal-content .row .col-lg-7 label{
    color: var(--placeholder);
    font-size: 10pt;
}
.select-seat-modal .modal-content .row .col-lg-7 button{
    height: fit-content !important;
    padding: 10px;
}
.select-seat-modal img{
    border: 1px solid var(--border);
    padding: 5px;
}
.select-seat-modal ul{
    margin-left: -40px !important;
}
.select-seat-modal ul li{
    font-size: 11pt;
}
@media screen and (max-width: 992px){
    .select-seat-modal img{
        display: block;
        width: 50% !important;
        margin: auto;
        /* object-fit: cover;
        height: 230px; */
    }
    #cinema-name > h6{
        margin-right: 5px !important;
    }
    .select-seat-modal .modal-content .row h5{
        font-weight: bold;
        font-size: 14pt;
    }
}
@media screen and (max-width: 620px){
    #cinema-name{
        width: 85%;
    }
}
@media screen and (max-width: 575px){
    #order-location1{
        margin: 60px auto;
    }
    #o-location-n > div:last-child > h6{
        font-size: 10pt !important;
        padding-top: 5px;
    }
    #caret-right{
        font-size: 12pt;
        margin-right: 10px !important;
        margin-bottom: 8px !important;
    }
    #select-date > ul{
        background-color: transparent;
        border: none;
        display: grid;
        row-gap: 0;
        grid-template-columns: repeat(50, 1fr);
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding: 0;
        border-radius: 0;
    }
    #select-date > ul::-webkit-scrollbar{
        display: none;
    }
    #select-date > ul button{
        width: fit-content;
        padding: 0 15px;
        height: 40px;
        background-color: var(--nav-bar);
        border: 1px solid var(--border);
        margin-right: -8px;
    }
    #select-date > ul button:not(.js-select-active):hover{
        background-color: var(--nav-bar) !important;
        border: 1px solid var(--border);
    }
    #select-date > ul button > span{
        font-size: 10pt;
    }
    #select-cinema-time{
        margin: 50px auto 70px;
    }
    #select-cinema-time > div:first-child{
        display: block !important;
        width: 100%;
    }
    #select-cinema-time > div:first-child form{
        margin: 8px auto 20px;
    }
    #cinema-time-content{
        padding: 5px 15px 10px;
    }
    /* .select-time ul > p{
        grid-column: 1 / -1;
        width: 100% !important;
        display: block !important;
    } */
    .select-time > ul{
        display: grid !important;
        grid-template-columns: repeat(3,1fr);
    }
    .select-time > ul button{
        font-size: 9pt;
        height: 55px;
    }
    #caret-right ~ h5{
        font-size: 12pt;
    }
    #cinema-time-content h6{
        font-size: 10pt;
    }
    .cinema-up,
    .cinema-down{
        font-size: 9pt;
        margin-bottom: 8px;
    }
}
@media screen and (max-width: 487px){
    .select-time > ul{
        display: grid !important;
        grid-template-columns: repeat(2,1fr);
    }
    #select-date{
        margin-top: -5px !important;
    }
}
@media screen and (max-width: 348px){
    #o-location-n > div:last-child > h6{
        font-size: 10pt !important;
    }
    #order-location1 label,
    #order-location2 label,
    #order-location3 label{
        width: 25px;
        height: 25px;
        font-size: 10pt;
    }
    .select-time > ul{
        display: block !important;
    }
}
/*.......................................... book ticket end ................................... */


/*.......................................... select seat start ................................... */
#selected-movie-label{
    margin: 25px 15px -22px;
}
#selected-movie-label button{
    border: 1px solid var(--border);
    color: var(--white);
    padding: 5px 10px;
    font-size: 9pt;
    margin-bottom: 8px;
}
#selected-movie-label button:hover{
    border: 1px solid var(--border);
    color: var(--teal);
}
#selected-movie-label h5{
    font-size: 14pt;
    color: var(--teal);
}
#selected-movie-label p{
    font-size: 11pt;
}
@media screen and (max-width: 768px){
    #selected-movie-label h5{
        font-size: 12pt;
    }
    #selected-movie-label p{
        font-size: 9pt;
    }
}

/* #seat-design{
    border-bottom: 1px solid var(--border);
    margin: 50px auto;
    padding-bottom: 20px;
    background-color: red;
} */
#seat-design{
    background-color: var(--bg);
    display: block;
    width: 100%;
    margin: -10px auto 0;
    padding: 15px 2px 1px;
    border-radius: 5px;
}
#seat-design > div:first-child > h5{
    font-size: 13pt;
}
#seat-design > div:first-child > label{
    font-size: 11pt;
}
#seat-design .mySwiper7{
    margin-top: 14px;
}
#seat-design .swiper-slide{
    background-position: center;
    background-size: cover;
}
#seat-design img{
    border-radius: 5px;
    height: 250px;
    object-fit: cover;
}
@media screen and (max-width: 420px){
    #seat-design .swiper-slide img{
        margin: auto;
        height: 230px;
    }
    #seat-design{
        padding: 15px 1px 1px;
    }
    #seat-design > div:first-child > h5{
        font-size: 10pt;
    }
    #seat-design > div:first-child > label{
        font-size: 9pt;
        margin-top: -5px !important;
    }
}


#theater-seat-content{
    display: block;
    margin: 50px 12px 0;
    padding-top: 50px;
    border-top: 1px solid var(--border);
}

#seat-color{
    width: 100%;
    padding: 0 !important;
    display: block;
    margin-top: 10px auto 0;
}
#seat-color > div:first-child{
    display: block;
    width: fit-content;
    padding: 10px 20px 0;
    border-radius: 8px;
    background-color: var(--nav-bar);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
#seat-color span{
    font-size: 13pt;
    font-family: calibri;
}
.sold-seat > svg{
    color: var(--sold);
    width: 25px;
    height: 25px;
}
.available-seat > svg{
    width: 25px;
    height: 25px;
}
.selected-seat > svg{
    color: var(--teal);
    width: 25px;
    height: 25px;
}
.sold{
    color: var(--sold);
    font-weight: 800;
}
.selected{
    color: var(--teal);
    font-weight: bolder;
}
#swipe-left{
    display: none;
    width: fit-content;
    color:var(--placeholder);
    border: 1px solid var(--border);
    padding: 9px 15px 2px;
    border-radius: 5px;
}
#swipe-left > h6{
    font-size: 10pt;
    line-height: 22px;
}

#time-left > div,
#checkout-time > div{
    display: block;
    width: fit-content;
    padding: 10px;
    border-radius: 8px;
    background-color: var(--nav-bar);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
#time-left i,
#checkout-time i{
    color: var(--screen);
}
@media screen and (max-width: 992px){
    #swipe-left{
        display: block;
    }
    #seat-color{
        display: block;
        margin-bottom: 45px;
    }
    #seat-color > div:first-child{
        text-align: center;
        padding: 10px 15px 0;
    }
    .available-seat > svg,
    .sold-seat > svg,
    .selected-seat > svg{
        width: 21px;
        height: 21px;
    }
    #seat-color span,
    #checkout-time span{
        margin-top: 8px;
        font-size: 10pt;
    }
    .screen-label{
        font-size: 1.1rem !important;
    }
    #time-left{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: end;
    }
    #time-left > div,
    #checkout-time > div{
        padding: 3px 10px 5px;
    }
    #time-left i,
    #checkout-time i{
        font-size: 9pt;
        margin-top: 8px;
        margin-right: 2px;
    }
}

.screen-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 30px;
    /* margin-bottom: 50px; */
}
.screen-label{
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--screen);
}
.screen{
    width: 90%;
    height: 10px;
    background-color: transparent;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    border-top: 3px solid white;
    position: relative;
}
.screen::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 10px;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    background: var(--screen-bar);
    box-shadow: 0 0 25px var(--screen-shadow);
}

#seat-plan-container{
    display: block;
    width: 100%;
    margin: auto;
    overflow-x: auto;
    padding: 70px 10px 90px;
}
#seat-plan-container::-webkit-scrollbar{
    height: 8px;
}
#seat-plan-container::-webkit-scrollbar-track{
    background: var(--border);
    border-radius: 5px;
}
#seat-plan-container::-webkit-scrollbar-thumb{
    background: var(--gray);
    border-radius: 5px;
}
.seat-content{
    padding: 2px 0;
}
#seat-plan-container .lucide-armchair,
#seat-plan-container .lucide-couple-armchair{
    width: 50px;
    height: 50px;
    position: relative;
    margin-top: -30px !important;
}
.svg-number{
    display: block;
    width: 100%;
    text-align: center;
    font-size: 9pt !important;
}
#seat-plan,
#double-seat-paln{
    width: fit-content;
    display: grid;
    margin: auto;
}
#seat-plan .seat,
#double-seat-plan .seat{
    position: relative;
    cursor: pointer;
    text-align: center;
    width: fit-content;
}
#seat-plan .seat.available:hover .box{
    display: block !important;
}
.box{
    display: none;
    height: auto;
    background-color: var(--nav-bar);
    padding: 10px;
    position: absolute;
    margin-top: -70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    text-align: center;
    font-weight: 600;
    border-radius: 6px;
    font-size: 11pt;
    top: 0;
    animation: fadeIn 0.3s ease-in-out;
    pointer-events: none;
}
.box.arrow-bottom:after{
    content: " ";
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 13px solid var(--nav-bar);
    border-right: 13px solid transparent;
    border-left: 13px solid transparent;
    border-bottom: none;
}


#check-out{
    background-color: var(--nav-bar);
    margin: 30px auto;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
#check-out h5{
    color: var(--gray);
    font-size: 13pt;
}
#seat-number h6{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--nav-bar);
    text-align: center;
    font-weight: bold;
    width: 60px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 12pt;
    border: 1px solid var(--border);
    box-shadow: 0 1px 1px var(--check-bg);
}
#seat-number > div{
    padding: 2px;
    display: block;
    width: fit-content;
}
#seat-number > label{
    border: 1px solid var(--border);
    color: var(--placeholder);
    width: fit-content;
    border-radius: 10px;
    font-size: 11pt;
    padding: 3px 10px;
}
#check-out p{
    font-size: 15pt;
    font-weight: bold;
    margin-top: 20px;
}
/* #check-out #seat-number span{
    font-size: 10pt;
    color: var(--placeholder);
} */
#check-out button{
    width: 100%;
}
@media screen and (max-width: 992px){
    #check-out{
        display: block;
        width: 95%;
    }
}
@media screen and (max-width: 576px){
    #check-out{
        padding: 25px 15px;
    }
    #check-out p{
        margin-top: 15px;
        font-size: 13pt;
    }
    #seat-number{
        display: flex !important;
        width: 100%;
        align-items: center;
    }
    #seat-number h6{
        font-size: 10pt;
        width: 44px;
        height: 40px;
    }
    #check-out .col-lg-6{
        margin-bottom: 10px;
    }
    #check-out h5{
        font-size: 11pt;
    }
    #check-out .col-lg-4{
        display: flex;
        align-items: center;
    }
    #check-out .col-lg-4 > h5{
        margin-bottom: 0;
        margin-right: 20px;
    }
    #seat-number > label{
        font-size: 10pt;
    }
}

/*.......................................... select seat end ................................... */


/*.......................................... checkout start  ................................... */
#payment .checkout-content{
    margin: -25px auto 0;
}
#booking-summary{
    display: block;
    position: relative;
    background-color: var(--nav-bar);
    padding: 40px 15px;
    border-radius: 8px;
    margin: auto;
    border: 1px solid var(--border);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
#booking-summary > h5{
    text-align: center;
    color: var(--gray);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    text-transform: uppercase;
    margin-bottom: 25px;
    font-size: 12pt;
}
#booking-summary .summary-content h5{
    color: var(--teal);
}
#booking-summary .summary-content label{
    color: var(--placeholder);
    font-size: 10pt;
}
#booking-summary .summary-content > .d-flex:nth-child(2){
    border-bottom: 1px dotted var(--border);
    padding-bottom: 20px;
}
#booking-summary .summary-content img{
    display: block;
    margin: auto;
    width: 80px;
    height: 120px;
    object-fit: cover;
}
#booking-summary .item-right .up-border,
#booking-summary .item-right .down-border{
    width: 45px;
    height: 40px;
    background-color: var(--body);
    border-radius: 50%;
    position: absolute;
}
#booking-summary .item-right .up-border{
    top: -22px;
    right: 50%;
    transform: translateX(50%);
    border-bottom: 1px solid var(--sec-header);
}
#booking-summary .item-right .down-border{
    bottom: -22px;
    right: 50%;
    transform: translateX(50%);
    border-top: 1px solid var(--sec-header);
}
#booking-summary .border-dotted{
    border-top: 1px dotted var(--border);
    padding: 20px 0;
}

#booking-total,
#user-contact-info{
    background-color: var(--nav-bar);
    padding-bottom: 20px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    margin-bottom: 30px;
}
#OTP{
    background-color: var(--nav-bar);
    padding-bottom: 20px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    border: 1px solid var(--border);
    margin-top: 70px;
}
#OTP .otp-form{
    padding: 0 30px;
}
#booking-total h5,
#payment-option h5,
#user-contact-info h5{
    text-align: center;
    font-size: 13pt;
    background-color: var(--sec-header);
    color:white;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 12px 20px;
}
#OTP h5{
    text-align: center;
    font-size: 12pt;
    background-color: var(--sec-header);
    color:white;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 12px 20px;
}
#booking-total > div:nth-child(2),
#booking-total > div:nth-child(4),
#user-contact-info > form{
    padding: 0 50px;
}
#booking-total > hr:nth-child(3){
    margin: 0 20px;
}
.booking-total-content span{
    font-size: 13pt;
    margin-right: 12px;
}
.booking-total-content label,
#taxes label{
    font-size: 13pt;
    font-weight: 500;
}
#total-price label:first-child{
    font-size: 14pt;
    font-weight: 600;
}
#total-price label:last-child{
    font-size: 13pt;
    font-weight: 700;
    color: var(--teal);
}

#promo-code{
    background-color: var(--nav-bar);
    padding: 20px 30px;
    border-radius: 5px;
    margin-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
#promo-code > div > h5{
    font-size: 13pt;
    color: var(--placeholder);
}
#promo-code i{
    color: var(--placeholder);
    font-size: 13pt;
    cursor: pointer;
    margin-bottom: 5px;
}
#promo-form{
    display: none;
    padding-bottom: 10px;
}

/* #user-contact-info form input,
#promo-code input,
#OTP input,
#contact-us-form input,
#contact-us-form textarea{ */
input,textarea{
    background-color: transparent !important;
    color: var(--white) !important;
    border: 1px solid var(--border) !important;
}
input::placeholder,
textarea::placeholder{
    color: var(--placeholder) !important;
}


#payment-option{
    background-color: var(--nav-bar);
    padding-bottom: 10px;
    border-radius: 10px;
    margin-top: 35px;
}
.custom-radio{
    cursor: pointer;
    width: 100%;
    padding: 10px 20px;
    border-radius: 8px;
}
.custom-radio.active{
    background-color: #f3eeee22
}
.custom-radio.inactive{
    background-color: transparent;
}
.custom-radio label{
    cursor: pointer;
    width: 100%;
}
.custom-radio input[type="radio"]{
    accent-color: rgba(216, 216, 216, 0.726);
    cursor: pointer;
    transform: scale(1.4);
}
.custom-radio input[type="radio"]:checked{
    accent-color: var(--teal);
}
.payment-content{
    color: var(--white);
    padding: 10px 20px;
}
#payment-option{
    margin-bottom: 35px;
}
@media screen and (max-width: 576px){
    .payment-content{
        font-size: 11pt;
    }
}
#payment-option{
    margin-bottom: 35px;
}
@media screen and (max-width: 576px){
    .payment-content{
        font-size: 11pt;
    }
}

#payment-picture{
    background-color: var(--nav-bar);
    padding: 20px 30px 30px 30px;
    border-radius: 10px;
    margin-top: 35px;
    margin-bottom: 35px;
}
#edit-photo{
    display: block;
    margin: auto;
    text-align: center;
    margin-top: 15px;
}
#edit-photo > div{
    position: relative;
    display: block;
    width: 180px;
    height: 180px;
    margin: auto;
    border: 1px solid white;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 10px;
}
#edit-photo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#edit-photo label{
    margin-top: 12px;
    font-size: 13pt;
    cursor: pointer;
    color: var(--blue);
}
#edit-photo input{
    display: none;
}
#payment-picture a button{
    background-color: var(--secondary);
    width: 100%;
    margin-top: 30px;
    font-size: 14pt;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.568);
    color: white;
    font-weight: 600;
    padding: 10px 0;
}

.custom-recaptcha-wrapper .g-recaptcha{
    transform: scale(0.9);
    transform-origin: top left;
}
@media (max-width: 500px){
    .custom-recaptcha-wrapper .g-recaptcha{
        transform: scale(0.73);
    }
}

.order-loader{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10000000;
    background-color: rgba(8, 8, 8, 0.918);
    text-align: center;
    padding: 20px;
}
.order-loader > div > div{
    background-color: rgb(37, 37, 37);
    border-radius: 10px;
    padding: 30px 15px 33px;
    margin-top: -90px;
}
.loader {
    --c1:#ffe600;
    --c2:#f8b13b;
    width: 20px;
    height: 45px;
    border-top: 4px solid var(--c1);
    border-bottom: 4px solid var(--c1);
    background: linear-gradient(90deg, var(--c1) 2px, var(--c2) 0 5px,var(--c1) 0) 50%/7px 8px no-repeat;
    display: grid;
    overflow: hidden;
    animation: l5-0 2s infinite linear;
}
.loader::before,
.loader::after {
    content: "";
    grid-area: 1/1;
    width: 75%;
    height: calc(50% - 4px);
    margin: 0 auto;
    border: 2px solid var(--c1);
    border-top: 0;
    box-sizing: content-box;
    border-radius: 0 0 40% 40%;
    -webkit-mask-composite: destination-out;
            mask-composite: exclude;
    background:
        linear-gradient(var(--d,0deg),var(--c2) 50%,#0000 0) bottom /100% 205%,
        linear-gradient(var(--c2) 0 0) center/0 100%;
    background-repeat: no-repeat;
    animation: inherit;
    animation-name: l5-1;
}
.loader::after {
    transform-origin: 50% calc(100% + 2px);
    transform: scaleY(-1);
    --s:3px;
    --d:180deg;
}
@keyframes l5-0 {
    80%  {transform: rotate(0)}
    100% {transform: rotate(0.5turn)}
}
@keyframes l5-1 {
    10%,70%  {background-size:100% 205%,var(--s,0) 100%}
    70%,100% {background-position: top,center}
}
#verifyLoading #loading-content p,
#orderLoading #loading-content p{
    color: var(--white);
}



@media screen and (max-width: 991px){
    #payment .col-lg-5{
        position: relative;
        display: block;
        height: 100%;
        overflow-y: hidden;
    }
    #booking-summary{
        width: 500px;
        margin: auto !important;
    }
    #booking-summary > h5{
        font-size: 12pt;
    }
    #booking-summary .summary-content h5{
        font-size: 13pt;
    }
}
@media screen and (max-width: 560px){
    #booking-summary{
        width: 400px;
        margin: auto;
    }
    #booking-summary .summary-content label ~ h6,
    #OTP > h5{
        font-size: 11pt !important;
    }
    #booking-total h5,
    #payment-option h5,
    #user-contact-info h5,
    #promo-code > div > h5,
    #promo-code i{
        font-size: 12pt;
    }
    #booking-summary .summary-content .hall-sm{
        margin-left: 45px;
    }
}
@media screen and (max-width: 460px){
    #booking-summary{
        width: 100%;
    }
    #booking-summary .summary-content .d-flex:nth-child(2){
        display: block !important;
        width: 100%;
        padding-bottom: 2px;
        border-bottom: none;
    }
    #booking-summary .summary-content .d-flex:nth-child(2) > div{
        margin-right: 0 !important;
    }
    #booking-summary .summary-content img{
        width: 130px;
        height: 200px;
        border: 1px solid var(--border);
        padding: 3px;
        margin: auto;
    }
    #booking-summary hr{
        display: none;
    }
    #booking-summary > h5{
        font-size: 11pt;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    #booking-summary{
        padding: 30px 10px;
    }
    #booking-summary .summary-content h5{
        margin-top: 20px;
    }
    #booking-total > div:nth-child(2),
    #booking-total > div:nth-child(4),
    #user-contact-info > form{
        padding: 0 20px;
    }
    .booking-total-content span,
    .booking-total-content label{
        font-size: 11pt;
    }
    #total-price label:first-child,
    #total-price label:last-child{
        font-size: 12pt !important;
    }
    #promo-code{
        padding: 15px 20px;
    }
}
/*.......................................... checkout end  ................................... */


/*................................... ..........auth section start .................................. */
.login-content{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.login-form{
    background-color: var(--nav-bar);
    padding: 30px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(28, 28, 28, 0.606);
    max-width: 450px;
    width: 100%;
    color: white;
    border: 1px solid rgb(233, 230, 230);
}
.login-content h2{
	margin: 15px 0;
	color: white;
	text-transform: uppercase;
	font-size: 2.9rem;
}
.login-content .input-div{
	position: relative;
    display: grid;
    grid-template-columns: 7% 93%;
    margin: 25px 0;
    padding: 5px 0;
    border-bottom: 2px solid #d1d1d1;
}
.input-i{
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
}
.input-div > div{
    position: relative;
	height: 45px;
}
.input-div > div > input{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	background: none;
	padding: 0.5rem 0.7rem;
	font-size: 1.2rem;
	color: white;
	font-family: 'poppins', sans-serif;
}
.input-div > div > input::placeholder{
    color: rgb(231, 231, 231);
}
.login-content .btn{
	display: block;
	width: 100%;
	height: 45px;
	border-radius: 25px;
	outline: none;
	border: none;
    background-color:  #2fbd6f;
	font-size: 1.1rem;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	margin-top: 30px;
	cursor: pointer;
	transition: .5s;
}
.login-content .btn:hover{
    background-color: #2fdb7d;
}
/*................................... ..........auth section end .................................. */
.bg-nav-bar{
    background-color: var(--nav-bar);
}



@media screen and (max-width: 510px){
    #more-cover-poster img{
        width: 100%;
        height: auto;
    }
}
.z-100{
    z-index: 100 !important;
}




/*................................... .......... time table start .................................. */
#time-table{
    display: block;
    width: 100%;
    margin: 35px auto 80px;
    padding: 0 40px;
}
#time-table > div:first-child > h5{
    font-size: 12pt;
    line-height: 28px;
}
#time-table > .header .fw-bold{
    color: var(--gold);
}
#time-table > .header > div > a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11pt;
    background-color: var(--border);
    padding: 20px;
    border-radius: 3px;
    margin-bottom: 25px;
    color: var(--white);
    text-decoration: none;
}
#time-table > .header > div > a:active{
    opacity: 0.8;
}


#timetable-view .dropdown button{
    font-size: 11pt;
    display: block;
    width: fit-content;
    padding: 8px 12px;
    border: none;
    border-radius: 3px;
    background-color: var(--nav-bar);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
#timetable-view .dropdown button:hover{
    color: var(--white);
}
#timetable-view .dropdown button i{
    font-size: 10pt;
}
#timetable-view .dropdown > .dropdown-menu{
    background-color: var(--bg);
    border: 1px solid rgba(117, 117, 117, 0.356);
    font-size: 11pt;
}
#timetable-view .dropdown > .dropdown-menu li a{
    color: var(--white);
}
#timetable-view .dropdown > .dropdown-menu li a:hover{
    background-color: var(--check-bg);
}

#cinema-schedule{
    padding: 20px;
}
#cinema-schedule .showtime-container{
    background-color: var(--bg);
    padding: 15px;
    border-radius: 5px;
}
#cinema-schedule .showtime-container h6{
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}
#cinema-schedule .showtime{
    display: flex;
    align-items: center;
}
#cinema-schedule .showtime img{
    display: block;
    width: 130px;
    height: 210px;
    border-radius: 5px;
    object-fit: cover;
    margin: auto;
}
#cinema-schedule .showtime img:active{
    opacity: 0.8;
}
#cinema-schedule .showtime label{
    color: var(--gray);
    font-size: 9pt;
}
#cinema-schedule .showtime p{
    font-size: 11pt;
}
@media screen and (max-width: 992px){
    #time-table{
        padding: 0 12px;
    }
    #time-table > .header > div > a{
        font-size: 10pt;
        padding: 15px;
    }
    #cinema-schedule .showtime img{
        width: 90px;
        height: 140px;
    }
    #cinema-schedule .showtime-container h6{
        font-size: 11pt;
    }
    #cinema-schedule .showtime > div:nth-child(2) > div{
        margin-bottom: -5px;
    }
    #cinema-schedule .showtime label{
        font-size: 8pt;
    }
    #cinema-schedule .showtime p{
        font-size: 10pt;
    }
    #time-table #cinema-title li{
        padding-right: 10px;
    }
    #time-table #cinema-title li a{
        padding: 4px 10px;
        font-size: 11pt;
    }
}
@media screen and (max-width: 575px){
    #time-table > .header{
        padding: 0 15px;
    }
    #time-table > .header > div > p{
        font-size: 9pt;
    }
    #timetable-view #selected-movie-label > div:nth-child(2){
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: end;
    }
    #timetable-view .dropdown > .dropdown-menu{
        font-size: 10pt;
    }
    #timetable-view .dropdown button i{
        font-size: 9pt;
    }
    #cinema-schedule .showtime{
        padding: 0 !important;
        width: 100% !important;
    }
    #cinema-schedule .showtime-container{
        padding: 13px 10px 10px;
    }
    #cinema-schedule .showtime .w-75{
        width: fit-content !important;
        padding: 10px 32px 10px 15px;
    }
    #cinema-schedule .showtime > div:nth-child(2) > div{
        margin-bottom: -8px;
    }
}
@media screen and (min-width: 576px) and (max-width: 992px){
    #cinema-schedule .showtime{
        display: block;
    }
    #cinema-schedule .showtime .w-75{
        width: 100% !important;
    }
    #cinema-schedule .showtime-container{
        padding: 8px 15px 10px;
    }
    #cinema-schedule .showtime-container h6{
        display: flex;
        align-items: center;
        height: 45px;
    }
}
/*................................... .......... time table end .................................. */