html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    background: #ffffff;
}

input,
button {
    border: none;
    outline: none;
    background: none;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
}

.tip {
    font-size: 20px;
    margin: 40px auto 50px;
    text-align: center;
}

.cont {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    width: 900px;
    height: 530px;
    margin: 0 auto 100px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.form {
    position: relative;
    width: 640px;
    height: 100%;
    -webkit-transition: -webkit-transform 1.2s ease-in-out;
    transition: -webkit-transform 1.2s ease-in-out;
    transition: transform 1.2s ease-in-out;
    transition: transform 1.2s ease-in-out, -webkit-transform 1.2s ease-in-out;
    padding: 50px 30px 0;
}

.sub-cont {
    overflow: hidden;
    position: absolute;
    left: 640px;
    top: 0;
    width: 900px;
    height: 100%;
    padding-left: 260px;
    background: #fff;
    -webkit-transition: -webkit-transform 1.2s ease-in-out;
    transition: -webkit-transform 1.2s ease-in-out;
    transition: transform 1.2s ease-in-out;
    transition: transform 1.2s ease-in-out, -webkit-transform 1.2s ease-in-out;
}

.cont.s--signup .sub-cont {
    -webkit-transform: translate3d(-640px, 0, 0);
    transform: translate3d(-640px, 0, 0);
}

.login-btn {
    display: block;
    margin: 0 auto;
    width: 260px;
    height: 36px;
    border-radius: 30px;
    color: #380202;
    font-size: 15px;
    font-weight:550;
    cursor: pointer;
}
.login-btn:hover{
    background-color:#d1a3a3
}
.img {
    overflow: hidden;
    z-index: 2;
    position: absolute;
    left: 0;
    top: 0;
    width: 260px;
    height: 100%;
    padding-top: 360px;
}

    .img:before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 900px;
        height: 100%;
        background-image: url("ext.jpg");
        opacity: .8;
        background-size: cover;
        -webkit-transition: -webkit-transform 1.2s ease-in-out;
        transition: transform 1.2s ease-in-out;
        transition: transform 1.2s ease-in-out, -webkit-transform 1.2s ease-in-out;
    }

    .img:after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #c49f9f;
    }

.cont.s--signup .img:before {
    -webkit-transform: translate3d(640px, 0, 0);
    transform: translate3d(640px, 0, 0);
}

.img__text {
    z-index: 2;
    position: absolute;
    left: 0;
    top: 50px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
    color: #fff;
    -webkit-transition: -webkit-transform 1.2s ease-in-out;
    transition: -webkit-transform 1.2s ease-in-out;
    transition: transform 1.2s ease-in-out;
    transition: transform 1.2s ease-in-out, -webkit-transform 1.2s ease-in-out;
}

    .img__text h2 {
        margin-bottom: 10px;
        font-weight: normal;
    }

    .img__text p {
        font-size: 14px;
        line-height: 1.5;
    }

.cont.s--signup .img__text.m--up {
    -webkit-transform: translateX(520px);
    transform: translateX(520px);
}

.img__text.m--in {
    -webkit-transform: translateX(-520px);
    transform: translateX(-520px);
}

.cont.s--signup .img__text.m--in {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.img__btn {
    overflow: hidden;
    z-index: 2;
    position: relative;
    width: 100px;
    height: 36px;
    margin: 0 auto;
    background: transparent;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    cursor: pointer;
}

    .img__btn:after {
        content: '';
        z-index: 2;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border: 2px solid #fff;
        border-radius: 30px;
    }

    .img__btn span {
        position: absolute;
        left: 0;
        top: 0;
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
        width: 100%;
        height: 100%;
        -webkit-transition: -webkit-transform 1.2s;
        transition: -webkit-transform 1.2s;
        transition: transform 1.2s;
        transition: transform 1.2s, -webkit-transform 1.2s;
    }

        .img__btn span.m--in {
            -webkit-transform: translateY(-72px);
            transform: translateY(-72px);
        }

.cont.s--signup .img__btn span.m--in {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.cont.s--signup .img__btn span.m--up {
    -webkit-transform: translateY(72px);
    transform: translateY(72px);
}

h2 {
    width: 100%;
    font-size: 26px;
    text-align: center;
}

label {
    display: block;
    width: 260px;
    margin: 25px auto 0;
    text-align: center;
}

    label span {
        font-size: 12px;
        color: black;
        text-transform: uppercase;
    }

input {
    display: block;
    width: 100%;
    margin-top: 5px;
    padding-bottom: 5px;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    text-align: center;
}

.forgot-pass {
    margin-top: 15px;
    text-align: center;
    font-size: 12px;
    color: black;
}

.submit {
    margin-top: 40px;
    margin-bottom: 20px;
    background: #d4af7a;
    text-transform: uppercase;
}

.fb-btn {
    border: 2px solid #d3dae9;
    color: #8fa1c7;
}

    .fb-btn span {
        font-weight: bold;
        color: #455a81;
    }

.sign-in {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.cont.s--signup .sign-in {
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: 1.2s;
    transition-duration: 1.2s;
    -webkit-transform: translate3d(640px, 0, 0);
    transform: translate3d(640px, 0, 0);
}

.sign-up {
    -webkit-transform: translate3d(-900px, 0, 0);
    transform: translate3d(-900px, 0, 0);
}

.cont.s--signup .sign-up {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.poster-card {
    min-height: 400px;
    border: 1px solid;
    border-radius: 10px 10px 10px 10px;
}
.poster-img{
    border-radius:10px 10px 0px 0px; 
    height:230px;
}
.rating-img {
    width: 15px;
}
.arrow-img{
    width:18px;
}
.required{
    content:"*";
    color:red;
    font-size:18px
}
center{
    display:none
}
.otp-btn {
    border: 1px solid #4ae438;
    padding: 1px 5px 1px 5px;
    background-color: #4ae438;
    border-radius:5px;
    color:white;
    font-size:12px
}

@media (min-width: 1600px) {
    .poster-card {
        height: 400px;
        border: 1px solid;
        border-radius: 10px 10px 10px 10px;
        width:400px;
    }
}

.bg-gray{
    background-color:#e5dfdf;
    margin-top:20px;
}
.show-timing {
    background-color: #d97f7f;
    border-radius: 8px;
    height: 40px;
}

.add-timing-item {
    background-color: white;
    border-radius: 8px;
    height: 40px;
}


.seat {
    width: 35px;
    height: 35px;
    background-color: #bbb6b6;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    position: relative;
}

    .seat::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        width: 30px;
        height: 5px;
        background-color: #444;
        border-radius: 2px;
        transform: translateX(-50%);
    }

    .seat.selected {
        background-color: green;
    }

.screen {
    width: 600px;
    height: 30px;
    border: 1px solid #444;
    background-color: #ccc;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.seat:hover::after {
    content: attr(data-seat-number);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 12px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.2s;
}

.seat:hover::after {
    opacity: 1;
}

.seat:hover::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #333 transparent;
    z-index: 9;
}

.seat-label {
    position: absolute;
    margin-bottom: 10px;
    font-size: 18px;
    left: 2px;
    padding-top: 5px;
    font-weight: 600
}

.seat-sel {
    width: 30px;
    height: 30px;
    background-color: green;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    position: relative;
}
.seat-book {
    width: 30px;
    height: 30px;
    background-color: #ff0000;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    position: relative;
}
.seat-ava {
    width: 30px;
    height: 30px;
    background-color: #bbb6b6;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    position: relative;
}
.seat-ava::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 30px;
    height: 5px;
    background-color: #444;
    border-radius: 2px;
    transform: translateX(-50%);
}
.seat-sel::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 30px;
    height: 5px;
    background-color: #444;
    border-radius: 2px;
    transform: translateX(-50%);
}
.seat-book::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 30px;
    height: 5px;
    background-color: #444;
    border-radius: 2px;
    transform: translateX(-50%);
}
.seat-items {
    background-color: #f8f9fa;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin:20px;
    border:2px solid #ed8282;
}
.preview-list {
    min-height: 400px;
    border-radius: 10px;
    border:2px solid #111c9a;
}
.movie-list {
    margin-top: 10px;
    margin-left: 10px;
}
.preview-img {
    width: 150px;
    height: 200px;
    margin-top: 10px;
    margin-left: 10px;
    border-radius: 10px;
}
.bg-lightgray {
    background-color: #685555;
    border-radius: 10px;
}

.d-flex.align-items-center span {
    font-size: 16px;
}

.fw-bold {
    font-weight: 600;
}


#selectedSeatNumber,
#seatsCount,
#selectedSeatPrize {
    font-weight: bold;
}

.text-success {
    color: #28a745;
}

.text-info {
    color: #17a2b8;
}

.text-danger {
    color: #dc3545;
}

.btn-success {
    font-size: 16px;
    padding: 5px 15px;
}

#seat-number {
    max-width: 400px;
}

.booking-seats {
    border: 1px solid;

}
.week{
    margin-top:-20px;
    font-size:12px
}
.date {
    margin-top: -9px;
    color:red;
}

.nav-bar {
    height: 60px;
    background-color: #fc7784;
    margin-top: 20px;
}
.logo{
    width:100px;
    height:50px;
}
.avatar {
    width: 50px;
    height: 50px;
}
.label-bg a{
    border-radius:8px;
    background-color:black;
    color:white;
}
.label-bg a:hover {
    color: white;
}
.height-dash{
    min-height:250px;
    border-radius:10px !important;
    border:1px solid !important;
}
.total-movie-list{
    gap:80px
}
.border-rounded{
    border-radius:10px !important;
}
.border-rounded:hover {
    border-radius: 10px !important;
    border: 1px solid #fc7784;
    box-shadow: #fc7784 0px 2px 4px, #fc7784 0px 7px 13px -3px, #fc7784 0px -3px 0px inset;
}
.min-card {
    height: 120px;
    width: 100px;
    margin-right: 8px;
    position: relative;
    border-radius: 10px 10px 0px 0px;
    border:1px solid black !important;
    cursor:pointer;
}
.movie-poster-img {
    border-radius: 10px 10px 0px 0px;
    height: 90px;
}
.add-img{
   text-align:center;
   width:40px;
   position:absolute;
   left:30%;
   top:40px;
   cursor:pointer;
}
.modal-header {
    background-color: #fc7784;
    color:black;
}

.box-shadow {
    box-shadow: #41d841 0px 0px 0px 6px;
}

.summary-container {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border:1px solid #dbcece
}

.summary-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align:center;
    font-weight:600
}

.summary-detail {
    margin-bottom: 10px;
}

.total-price {
    font-weight: bold;
    font-size: 1.2rem;
    color: #d9534f;
}
.back-btn{
    transition:all 0.5s;
}
.back-btn:hover {
    margin-left: -5px
}

.custom-bg-lightgray{
    background-color:#ed8282;
}



.spinner-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.pulse-container {
    width: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pulse-bubble {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #dc3545;
}

.pulse-bubble-1 {
    animation: pulse .4s ease 0s infinite alternate;
}

.pulse-bubble-2 {
    animation: pulse .4s ease .2s infinite alternate;
}

.pulse-bubble-3 {
    animation: pulse .4s ease .4s infinite alternate;
}
@keyframes pulse {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: .25;
        transform: scale(.75);
    }
}

.badge-light{
    border:1px solid;
    padding:12px;
    font-size:medium;
}
.save-btn-width {
    float: right
}
.full-height {
    height: 100vh;
    background-color: #fc7784;
}
@media only screen and (max-width: 600px) {

    .mobil-view-card-body {
        padding: 10px 0 0 0 !important;
    }

    .seat {
        width: 20px; 
        height: 20px;
        background-color: #bbb6b6;
        cursor: pointer;
        position: relative;
        margin:2px
    }

    .seat::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        width: 20px;
        height: 5px;
        background-color: #444;
        border-radius: 2px;
        transform: translateX(-50%);
    }
    .col-1{
        padding-left:0px;
        padding-right:0px;
    }
    .seat:hover::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        width: 20px;
        height: 5px;
        background-color: #444;
        border-radius: 2px;
        transform: translateX(-50%);
    }

    .screen {
        width: 300px;
        height: 25px;
        border: 1px solid #444;
        background-color: #ccc;
        text-align: center;
        font-weight: bold;
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 25px;
    }
    #seat-count{
        height:40px !important;
        width:80px;
        margin-top:40px !important;
    }
    .min-card {
        height: 60px;
        width: 45px;
        margin-right: 8px;
        position: relative;
        border-radius: 10px 10px 0px 0px;
        border: 1px solid black !important;
        cursor: pointer;
    }

    .movie-poster-img {
        border-radius: 10px 10px 0px 0px;
        height: 90px;
    }

    .add-img {
        text-align: center;
        width: 20px;
        position: absolute;
        left: 30%;
        top: 18px;
        cursor: pointer;
    }

    .seat-sel {
        width: 25px;
        height: 25px;
    }

    .seat-book {
        width: 25px;
        height: 25px;
    }

    .seat-ava {
        width: 23px;
        height: 25px;
    }
    .seat-ava::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        width: 25px;
        height: 5px;
        background-color: #444;
        border-radius: 2px;
        transform: translateX(-50%);
    }

    .seat-sel::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        width: 25px;
        height: 5px;
        background-color: #444;
        border-radius: 2px;
        transform: translateX(-50%);
    }

    .seat-book::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        width: 25px;
        height: 5px;
        background-color: #444;
        border-radius: 2px;
        transform: translateX(-50%);
    }
    .logout-sec{
        display:none;
    }
    .avatar {
        width: 40px;
        height: 40px;
    }
    .movie-select-section{
        position:relative;
    }
    .open-profile {
        position: absolute;
        border: 1px solid #e1caca;
        width: 150px;
        height: 150px;
        z-index: 5;
        right: 10px;
        top: 67px;
        background-color: #e1caca;
        border-radius: 8px;
        display:none
    }
    .adjust-width-screen{
        max-width:340px;
        overflow-x:auto;
        display:flex;
    }
    .login-card {
        border-radius: 8px !important;
        border: 1px solid #eab4a6;
        box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    }
    .moving-color {
        position: absolute;
        bottom: 0;
        height: 40px;
        width: 100%;
        background-color:#c49f9f;
        border-radius: 50% 50% 0 0;
        transition: bottom 0.9s ease;
    }
    .moving-color.top {
        bottom: 94%;
        border-radius: 0 0 50% 50%;
    }
    .forgot-pass{
        text-decoration:underline;
        color:#0d6efd
    }
    .full-height {
        height: 100vh;
        background-color: #fc7784;
    }
    .btn-color {
        background-color: #fc7784;
        font-size: 15px;
        font-weight: 550;
    }
}

