﻿/* Background */
:root {
    --background-color: #162B3F;
}

.form-floating > .select2-container--bootstrap-5 .select2-selection {
    height: calc(3.5rem + 2px) !important;
    line-height: 1.25 !important;
}

.form-floating > .select2-container--bootstrap-5 .select2-selection--single {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

input[readonly] {
    background-color: #e9ecef;
}

.qr {
    text-align: -webkit-center;
    margin: 1rem 0;
}

.img-hover-colorize {
    height: 250px; /* [1.1] Set it as per your need */
    overflow: hidden; /* [1.2] Hide the overflowing of child elements */
}

    .img-hover-colorize img {
        transition: transform .5s, filter 1.5s ease-in-out;
    }

    .img-hover-colorize:hover img {
        transform: scale(1.1);
    }

.see-text {
    color: #708090;
}

.timer-container {
    border-radius: 50%;
    background-color: #FFAF13;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .timer-container span {
        font-size: 14px;
        color: #FFF;
    }

/*--------------------------------------------------------------
# Logo
--------------------------------------------------------------*/
    .logo {
        margin-bottom: 1rem !important;
    }

@media (min-width: 992px) {
    #header .logo {
        margin: 0;
    }
}

@media (min-width: 992px)
{
    .logo {
        margin-bottom: 3rem !important;
    }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#pre-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: rgba(255,255,255, .6);
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
}

    #pre-loader:before,
    #pre-loader:after {
        content: "";
        position: absolute;
        /*        border: 4px solid var(--color-primary);
        border-radius: 50%;
        -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
        animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;*/
        background: url(../img/preloder.gif) no-repeat;
        width: 100%;
        height: 100vh;
        top: calc(50% - 100px);
        left: calc(50% - 100px);
    }

/*--------------------------------------------------------------
# Custom Modal
--------------------------------------------------------------*/
.custom-modal-footer {
    border-top: none;
}

.custom-modal-content {
    border-radius: 6px;
    border: 5px solid var(--background-color);
}

.custom-modal-body {
    padding: 2rem;
    line-height: 21px;
    font-size: 18px;
    color: #444444;
    letter-spacing: 0.15px;
    font-weight: normal;
    font-style: normal;
}

.btn-modal {
    background: var(--background-color);
    width: 200px;
    color: #FFF;
    font-size: 18px;
}

.btn-modal:hover {
    background: var(--background-color);
    color: #FFF;
}

/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/
#carousel {
    padding: 0;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

    .swiper-slide img {
        width: 100%;
        height: 325px;
        object-fit: cover;
    }

    @media (min-width: 992px)
    {
        .swiper-slide img {
            width: 313px;
            height: 456px;
        }
    }

    .swiper-slide .slick-content {
        display: block;
        width: 100%;
        text-align: right;
        font-weight: 700;
        font-size: 18px;
    }

    .swiper-slide .slick-sub-content {
        display: block;
        width: 100%;
        text-align: right;
        font-weight: 700;
        font-size: 16px;
    }

.search-form-wrap {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
    transition: 0.3s all ease;
    visibility: hidden;
    opacity: 0;
}

    .search-form-wrap .search-form {
        position: relative;
    }

        .search-form-wrap .search-form .form-control {
            width: 250px;
            padding-left: 40px;
            padding-right: 40px;
        }


        .search-form-wrap .search-form .icon {
            position: absolute;
            left: 0;
            top: 10px;
            opacity: 0.5;
            left: 10px;
            font-size: 20px;
        }

        .search-form-wrap .search-form .btn {
            position: absolute;
            top: 0;
            right: 4px;
            padding: 0;
            margin: 0;
            line-height: 1;
            font-size: 30px;
            border: unset;
        }

        .search-form-wrap .search-form .js-search-close:hover {
            border: unset;
        }

        .search-form-wrap .search-form .btn:active,
        .search-form-wrap .search-form .btn:focus {
            outline: none;
            box-shadow: none;
            border: unset;
        }

    .search-form-wrap.active {
        visibility: visible;
        opacity: 1;
    }

#magazine .magazine-wrapper {
    width: 80%;
    height: 100%;
    background: rgba(238, 238, 238, 0.75);
    margin: auto;
}

    #magazine .magazine-wrapper img {
        width: 100%;
        height: 250px;
    }

#privacy-policy .title {
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: -0.06em;
    color: #444444;
}

#privacy-policy .desc {
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.06em;
    color: #666666;
}
/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
#login .card {
    background: #F8F8F8;
}

    #login .card .card-body {
        padding: 1rem;
    }

    #login .card .card-title {
        font-weight: 700;
    }

#login .btn-login {
    background: var(--background-color);
    border: 1px solid var(--background-color);
    border-radius: 6px;
    font-size: 18px;
    color: #FFFFFF;
    width: 100%;
    height: 50px;
}

#login .login-wrapper {
    position: relative;
    width: 100%;
}

    #login .login-wrapper i {
        position: absolute;
        left: .45rem;
        top: .45rem;
        color: #FFFFFF;
    }

    #login .login-wrapper .btn-fb {
        background: #1877F2;
        border: 1px solid #1877F2;
        border-radius: 3px;
        height: 50px;
        color: #FFFFFF;
        font-size: 18px;
        font-weight: 700;
        width: 100%;
    }

@media (min-width: 992px) {
    #login .card .card-body {
        padding: 4rem;
    }

    #login .login-wrapper {
        width: 310px;
        margin: auto;
    }

    #login .border-right {
        border-right: 1px solid #C4C4C4;
    }
}

/*--------------------------------------------------------------
# Register
--------------------------------------------------------------*/
#register .card {
    background: #F8F8F8;
}

#register .card-title {
    background: #FFAF13;
    height: 50px;
    width: auto;
    padding-left: 33px;
    margin-bottom: 0;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
}

#register .btn-register {
    background: #FFAF13;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 1px 4px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    color: #FFFFFF;
    width: 100%;
}

@media (min-width: 768px) {
    #register .btn-register {
        width: 50%;
    }
}

/*--------------------------------------------------------------
# Menu
--------------------------------------------------------------*/
#menu .card-body {
    background: #F5F5F5;
}

#menu .user-icon {
    color: #FF9530;
    font-size: 80px;
}

#menu .menu-text {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: .15px;
    color: #444;
    border-radius: 5px;
    
}

#menu button.menu-text {
    border: none;
    outline: none;
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
}

/*--------------------------------------------------------------
# Profile
--------------------------------------------------------------*/
    #profile .card {
    background: #F8F8F8;
}

#profile .btn-save {
    background: #FFAF13;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 1px 4px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    color: #FFFFFF;
    width: 100%;
}

@media (min-width: 768px) {
    #profile .btn-save {
        width: 50%;
    }
}

/*--------------------------------------------------------------
# Password
--------------------------------------------------------------*/
#password .card-body {
    background: #F5F5F5;
}

#password .btn-save {
    background: #FFAF13;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 1px 4px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    color: #FFFFFF;
    width: 100%;
}

@media (min-width: 768px) {
    #password .btn-save {
        width: 50%;
    }
}

/*--------------------------------------------------------------
# Reset Password
--------------------------------------------------------------*/
#reset-password .card-body {
    background: #F5F5F5;
}

#reset-password .btn-save {
    background: #FFAF13;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 1px 4px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    color: #FFFFFF;
    width: 100%;
}

@media (min-width: 768px) {
    #reset-password .btn-save {
        width: 50%;
    }
}

#reset-password .section-heading {
    font-size: 32px;
    font-weight: 700;
    color: #444444;
    line-height: 8rem;
    font-style: normal;
    justify-content: center;
    align-content: center;
}

/*--------------------------------------------------------------
# Forgot Password
--------------------------------------------------------------*/
#forgot-password .section-heading {
    font-size: 24px;
    font-weight: 700;
    color: #444444;
    line-height: 50px;
    font-style: normal;
    justify-content: center;
    align-content: center;
}

@media (min-width: 768px) {
    #forgot-password .section-heading {
        font-size: 32px;
        line-height: 96px;
    }
}

#forgot-password .section-subheading {
    font-size: 22px;
    font-weight: 300;
    color: #444444;
    line-height: 36px;
    font-style: normal;
    justify-content: center;
    align-content: center;
}

#forgot-password .btn-submit {
    background: #FFAF13;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 1px 4px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    color: #FFFFFF;
    width: 50%;
}

@media (min-width: 768px) {
    #forgot-password .btn-submit {
        width: 30%;
    }
}


/*--------------------------------------------------------------
# Event Detail
--------------------------------------------------------------*/
#event-detail .event-title {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    margin-bottom: 0;
    letter-spacing: -1.92px;
}

#event-detail .date {
    font-size: 22px;
    letter-spacing: -1.2px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 1rem;
}

#event-detail .desc {
    font-size: 20px;
    color: #666;
    letter-spacing: -1.2px;
    margin-bottom: 1rem;
    height: 120px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

#event-detail .title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -1.2px;
    margin-bottom: 1rem;
}

#event-detail .tnc-text {
    font-size: 20px;
    color: #666;
    letter-spacing: -1.2px;
}

#event-detail .info {
    font-size: 18px;
    color: #666 !important;
    letter-spacing: -1.08px;
}

@media (min-width: 768px) {
    #event-detail .img-wrapper {
        width: 450px;
        height: 600px;
    }
}

#event-detail .link-disabled {
    pointer-events: none;
}

#event-detail .image-poster {
    height: 325px;
    object-fit: cover;
}

@media (min-width: 768px) {
    #event-detail .image-poster {
        width: 425px;
        height: 600px;
    }
}

/*--------------------------------------------------------------
# Product Detail
--------------------------------------------------------------*/
#product-detail .product-title {
    font-family: "Poppins", sans-serif;
}

#product-detail .stock-text {
    color: #888888;
    letter-spacing: -0.03em;
    font-size: 14px;
}

#product-detail .quantity {
    display: inline-block;
}

    #product-detail .quantity .input-text.qty {
        width: 41px;
        height: 41px;
        padding: 0 5px;
        text-align: center;
        background-color: transparent;
        border: 1px solid #efefef;
    }

    #product-detail .quantity .input-text.qty2 {
        width: 50px;
        height: 41px;
        padding: 0 5px;
        text-align: center;
        background-color: transparent;
        border: 1px solid #efefef;
    }


    #product-detail .quantity.buttons_added {
        text-align: left;
        position: relative;
        white-space: nowrap;
        vertical-align: top;
    }

        #product-detail .quantity.buttons_added input {
            display: inline-block;
            margin: 0;
            vertical-align: top;
            box-shadow: none;
            background-color: #F8F8F8;
        }

        #product-detail .quantity.buttons_added .minus,
        #product-detail .quantity.buttons_added .plus {
            padding: 7px 10px 8px;
            width: 41px;
            height: 41px;
            background-color: #F8F8F8;
            border: 1px solid #efefef;
            cursor: pointer;
        }

        #product-detail .quantity.buttons_added .minus {
            border-right: 0;
        }

        #product-detail .quantity.buttons_added .plus {
            border-left: 0;
        }

            #product-detail .quantity.buttons_added .minus:hover,
            #product-detail .quantity.buttons_added .plus:hover {
                background: #eeeeee;
            }

    #product-detail .quantity input::-webkit-outer-spin-button,
    #product-detail .quantity input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        -moz-appearance: none;
        margin: 0;
    }

.quantity.buttons_added .minus:focus,
.quantity.buttons_added .plus:focus {
    outline: none;
}

#product-detail .price-label {
    padding-left: 0;
}

.product-detail {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 1rem;
}

@media (max-width:281px) {
    #product-detail .price-label {
        padding-left: 41px;
    }
}

#product-detail .image-poster {
    height: 325px;
    object-fit: cover;
}

@media (min-width: 768px) {
    #product-detail .image-poster {
        height: 600px;
        width: 425px;
    }
}

/*--------------------------------------------------------------
# Buy Product
--------------------------------------------------------------*/
#buy-product .input-icons i {
    position: absolute;
}

#buy-product .input-icons {
    width: 100%;
    margin-bottom: 10px;
}

#buy-product .minus-icon {
    margin: 10px -100px;
    color: #444444;
    min-width: 50px;
    text-align: center;
}

#buy-product .plus-icon {
    margin: -28px -40px;
    color: #444444;
    min-width: 50px;
    text-align: center;
}

#buy-product .btn-buy {
    background: #DDDDDD;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 1px 4px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    color: #FFFFFF;
    width: 30%;
}

/*--------------------------------------------------------------
# Product List
--------------------------------------------------------------*/
#product-list .magazine-title {
    display: block;
    width: 100%;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.06em;
    color: #444444;
    text-align: center;
}

#product-list .wrapper {
    width: 100%;
    height: 100%;
    margin: auto;
}

#magazine .wrapper img {
    width: 100%;
    height: 256px;
}

/*--------------------------------------------------------------
# Booking Seat
--------------------------------------------------------------*/
#booking-seat {
    padding: 0 0 60px;
}

    #booking-seat .bg-hero {
        max-width: 100%;
        height: 100vh;
        background: url(../img/bgseat.svg) no-repeat top center;
        background-size: cover;
        position: relative;
    }

    #booking-seat .booking-wrapper {
        width: 100%;
        height: 100%;
        background: #DDDDDD;
        position: relative;
        margin-bottom: 5rem;
    }

@media (min-width: 1200px) {
    #booking-seat .booking-wrapper {
        height: 160px;
    }

    #booking-seat #select-container {
        height: 35vh;
    }
}

#booking-seat .booking-wrapper h3 {
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#booking-seat .booking-wrapper .first-column {
    width: 15%;
    padding-top: 1rem;
    padding-right: 1rem;
}

#booking-seat .booking-wrapper img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

#booking-seat .dropdown .custom-dropdown-read {
    /*width: 160px;*/
    height: 140px;
    border-radius: unset;
    cursor: pointer;
    background: #CCCCCC;
}

#booking-seat .dropdown .option {
    position: absolute;
    top: 9rem;
    width: 100%;
    max-height: 160px;
    background: #AAAAAA;
    color: #FFFFFF;
    text-align: center;
    overflow-y: auto;
    display: none;
    z-index: 1080;
}

    #booking-seat .dropdown .option ul li {
        padding: .35rem;
        cursor: pointer;
    }

        #booking-seat .dropdown .option ul li:hover {
            background: rgba(68, 68, 68, 0.8);
        }

#booking-seat .dropdown.active .option {
    display: block;
}

#booking-seat .dropdown .custom-dropdown-read.selected-form {
    background: #6F8770;
    color: #FFFFFF;
    padding: 5rem 0 0;
    text-align: center;
}

#booking-seat .dropdown .custom-dropdown-read.active {
    background: #AAAAAA;
    color: #FFFFFF;
}

#booking-seat .align-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    padding: .8rem;
    width: 100%;
    color: #000000;
    font-weight: 400;
}

    #booking-seat .align-wrapper.selected-form {
        color: #FFFFFF;
    }

#booking-seat .seat-form-control {
    width: 340px;
}

#booking-seat .bg-overlay {
    position: absolute;
    background: rgba(68, 68, 68, 0.8);
    color: #FFFFFF;
    padding: 2rem;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
}

    #booking-seat .bg-overlay .stage-box {
        width: 1000px;
        height: 75px;
        border: 1px solid #FFFFFF;
        background: #DC7144;
        text-align: center;
        padding: 1rem;
        margin: auto;
        margin-bottom: 5rem;
    }

    #booking-seat .bg-overlay .seat {
        display: block;
        width: 30px;
        height: 39px;
        cursor: pointer;
        border: 1px solid #FFFFFF;
        border-radius: 5px;
        margin: .3rem;
        padding: .55rem .2rem;
        text-align: center;
        font-size: 12px;
        font-weight: 600;
        color: #FFFFFF;
        user-select: none;
        -webkit-user-select: none; /* Safari */
        -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
    }

    #booking-seat .bg-overlay .seat-view {
        display: block;
        width: 30px;
        height: 39px;
        border: 1px solid #FFFFFF;
        border-radius: 5px;
        margin: .3rem;
        padding: .55rem .2rem;
        text-align: center;
        font-size: 12px;
        font-weight: 600;
        color: #FFFFFF;
        user-select: none; /* supported by Chrome and Opera */
        -webkit-user-select: none; /* Safari */
        -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
    }

    #booking-seat .bg-overlay .reserve {
        display: block;
        width: 30px;
        height: 39px;
        cursor: not-allowed;
        border: 1px solid #FFFFFF;
        border-radius: 5px;
        margin: .3rem;
        padding: .55rem .2rem;
        text-align: center;
        font-size: 12px;
        font-weight: 600;
        color: #FFFFFF;
        background: #6F8770;
        user-select: none; /* supported by Chrome and Opera */
        -webkit-user-select: none; /* Safari */
        -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
    }

    #booking-seat .bg-overlay .blockSeat {
        width: 30px;
        height: 39px;
        cursor: not-allowed;
        border: 1px solid #FFFFFF;
        border-radius: 5px;
        margin: .3rem;
        padding: .55rem .2rem;
        text-align: center;
        font-size: 12px;
        font-weight: 600;
        color: #FFFFFF;
        background: #AAAAAA;
        user-select: none; /* supported by Chrome and Opera */
        -webkit-user-select: none; /* Safari */
        -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
    }

    #booking-seat .bg-overlay .empty-seat {
        width: 30px;
        height: 39px;
        cursor: not-allowed;
        border-radius: 5px;
        margin: .3rem;
        padding: .55rem .2rem;
        text-align: center;
        font-size: 12px;
        font-weight: 600;
        user-select: none; /* supported by Chrome and Opera */
        -webkit-user-select: none; /* Safari */
        -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
    }

    #booking-seat .bg-overlay #legend {
        border-radius: 16px;
        background: rgba(217, 217, 217, 0.1);
        border: 1px solid #FFFFFF;
        width: 255px;
        padding: 1rem 2rem;
        float: right;
    }

@media (max-width: 992px) {
    #booking-seat .bg-overlay .mobile-legend {
        border-radius: unset;
        background: rgba(0, 0, 0, 0.5);
        border: 1px solid #FFFFFF;
        width: 100%;
        padding: 1rem 2rem;
        position: absolute;
        left: 0;
        right: 0;
        z-index: 990;
    }
}

#booking-seat .dropdown .custom-read {
    /*width: 300px;*/
    height: 140px;
    border-radius: unset;
    background: #CCCCCC;
    padding-top: 5rem;
}

#booking-seat .btn-book-ticket {
    margin: auto 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 1200px) {
    #booking-seat .btn-book-ticket {
        margin-top: 0;
        margin-bottom: 0;
    }
}

#seat-item-list {
    position: absolute;
    bottom: 1.2rem;
    left: 1rem;
    color: #FFFFFF;
    width: 240px;
    height: 65px;
    overflow: auto;
}

#booking-seat .bg-overlay .seat:nth-of-type(14) {
    margin-right: 5rem;
}

#booking-seat .bg-overlay .seat:nth-last-of-type(14) {
    margin-left: 5rem;
}

.tnc {
    border-radius: 6px;
    padding: 8px;
}

.agree {
    background: #FFAF13;
    border: 1px solid #FFAF13;
}

.disagree {
    background: #CCCCCC;
    border: 1px solid #CCCCCC;
}

/* width */
.custom-dropdown ul::-webkit-scrollbar {
    width: 14px;
}

/* Track */
.custom-dropdown ul::-webkit-scrollbar-track {
    border-radius: 12px;
}

/* Handle */
.custom-dropdown ul::-webkit-scrollbar-thumb {
    background: #FFFFFF;
    border-radius: 12px;
    border: 4px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
}

    /* Handle on hover */
    .custom-dropdown ul::-webkit-scrollbar-thumb:hover {
        background: #FFFFFF;
        border-radius: 12px;
        border: 4px solid rgba(0, 0, 0, 0);
        background-clip: padding-box;
    }

.custom-dropdown ul::-webkit-scrollbar-track-piece:end {
    background: transparent;
    margin-bottom: .5rem;
}

.custom-dropdown ul::-webkit-scrollbar-track-piece:start {
    background: transparent;
    margin-top: .5rem;
}

#product-list .wrapper img {
    max-width: 100%;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.btn-imageSection {
    width: 180px;
    height: 41px;
    left: 1642px;
    top: 539px;
    background: #FBA729;
    border-radius: 6px;
    border-color: #FBA729;
}
/*--------------------------------------------------------------
# Event Calendar
--------------------------------------------------------------*/
#calendar img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

#calendar .wrapper {
    width: 100%;
}

#calendar .event-title {
    display: block;
    width: 100%;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.06em;
    color: #444444;
    text-align: center;
}

/*--------------------------------------------------------------
# Merch Payment 
--------------------------------------------------------------*/
#merch-payment {
    position: relative;
}

#merch-payment .product-title {
    font-family: "Poppins", sans-serif;
}

#merch-payment .card-title {
    background: #7FCE4E;
    padding: 5px;
    margin: 0;
    color: #FFFFFF;
    text-align: center;
}

#merch-payment .card-body {
    background: #F8F8F8;
    mix-blend-mode: darken;
    padding: 10px;
}

#merch-payment .detail-header {
    background: #FFAF13;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    padding:1rem;
}

#merch-payment .detail-box {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
}

#merch-payment .order-detail {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #444444;
}

#shipping-detail .label-text {
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.15px;
    color: #AAAAAA;
}

#merch-payment .payment-text {
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    color: #444444;
    margin-bottom: 1rem;
}

#merch-payment .payment-icon {
    width: 2rem;
    float: left;
    margin-left: 30px;
}

#merch-payment .icon {
    margin-left: -65px;
    font-size: 1.5rem;
}

#merch-payment .payment-box {
    display: flex;
    padding: 1rem 2rem;
    border-top: 1px solid #CAC9C9;
    border-bottom: 1px solid #CAC9C9;
    align-items: center;
    cursor: pointer;
    width: 100%;
    margin-bottom: .5rem;
}

/*--------------------------------------------------------------
# Merch Receipt
--------------------------------------------------------------*/
/*#merch-receipt .card-title {
    background: #7FCE4E;
    padding: 5px;
    margin: 0;
    color: #FFFFFF;
    text-align: center;
}*/

#merch-receipt .card-body {
    background: #F8F8F8;
    mix-blend-mode: darken;
}

#merch-receipt .code-box {
    padding: 1rem;
    background: #F8F8F8;
    border: 1px solid #000000;
    border-radius: 12px;
    display: flex;
}

#merch-receipt .upload-box {
    padding: 1rem;
    background: #FFAF13;
    border-radius: 12px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    height: 6.75rem;
    justify-content: space-between;
    cursor: pointer;
}

#merch-receipt .payment-way {
    border: 1px solid #000000;
    border-radius: 12px;
    padding: 1rem;
    margin: auto;
    width: 81%;
}
/*
#merch-receipt .upload-icon {
    font-size: 3rem;
    font-weight: 100;
    color: #FFFFFF;
}

#merch-receipt .icon {
    margin-left: -65px;
    font-size: 1.5rem;
}*/

#merch-receipt .circular-progress {
    position: relative;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

    #merch-receipt .circular-progress:before {
        content: "";
        position: absolute;
        height: 84%;
        width: 84%;
        background-color: #FFAF13;
        border-radius: 50%;
    }

#merch-receipt .upload-box > input {
    display: none;
}

#merch-receipt .upload-box i {
    cursor: pointer;
}

#merch-receipt .btn-pay {
    background: #FFAF13;
    border-radius: 8px;
    color: #FFFFFF;
    width: 250px;
}

#merch-receipt .bx-x {
    display: none;
}



/*--------------------------------------------------------------
# Merch Complete
--------------------------------------------------------------*/
#merch-complete .product-title {
    font-family: "Poppins", sans-serif;
}

#merch-complete .card-title {
    background: #FFAF13;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
    margin: 0;
}

#merch-complete .detail-header {
    background: #FFAF13;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
}

#merch-complete .detail-box {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 0 25px;
    border-radius: 3px;
}

#merch-complete .order-detail {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #444444;
}

#merch-complete .payment-header {
    font-weight: 700;
    font-size: 24px;
    color: #FFFFFF;
}

#merch-complete .email-text {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.15px;
    color: #FFFFFF;
}

#merch-complete .btn-payment {
    border: 1px solid #FFFFFF;
    background: #FFAF13;
    box-shadow: 0px 1px 3px rgb(0 0 0 / 25%);
    color: #FFFFFF;
    border-radius: 12px;
    width: 200px;
}

/*--------------------------------------------------------------
# Event Payment 
--------------------------------------------------------------*/
#event-payment {
    position: relative;
}

#event-payment .card-body {
    background: #F8F8F8;
    mix-blend-mode: darken;
}

#event-payment .header-box {
    background: #FFAF13;
    padding: 1rem;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 700;
}

#event-payment .event-title {
    font-weight: 700;
    letter-spacing: -0.06em;
    margin-bottom: 0;
    font-family: "Poppins", sans-serif;
}

#event-payment .event-detail {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 1rem;
}

#event-payment .date-time-header {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: .15px;
    margin-bottom: 1rem;
}

#event-payment .seat-item {
    font-weight: 400;
}

#event-payment .payment-text {
    font-weight: 700;
    font-size: 18px;
    padding: 1rem 0;
}

#event-payment .payment-box {
    display: flex;
    padding: 1rem 2rem;
    border-top: 1px solid #CAC9C9;
    border-bottom: 1px solid #CAC9C9;
    align-items: center;
    cursor: pointer;
    margin-bottom: .5rem;
}

/*--------------------------------------------------------------
# Event Receipt
--------------------------------------------------------------*/
#event-receipt .card-body {
    background: #F8F8F8;
    mix-blend-mode: darken;
}

#event-receipt .code-box {
    border: 1px solid #000000;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
}

#event-receipt .upload-box {
    padding: 1rem;
    background: #FFAF13;
    border-radius: 12px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 6.7rem;
    cursor: pointer;
    position: relative;
}

    #event-receipt .upload-box > input {
        display: none;
    }

    #event-receipt .upload-box i {
        cursor: pointer;
    }

#event-receipt .btn-pay {
    background: #FFAF13;
    border-radius: 8px;
    color: #FFFFFF;
    width: 50%;
    padding: .5rem;
}

#event-receipt .bx-x {
    display: none;
}

@media (min-width: 768px) {
    #event-receipt .btn-pay {
        width: 30%;
    }
}

#event-receipt .payment-way {
    border: 1px solid #000000;
    border-radius: 12px;
    padding: 1rem;
    margin: auto;
    width: 83%;
}

/*--------------------------------------------------------------
# Event Complete 
--------------------------------------------------------------*/
#event-complete .card {
    background: #F8F8F8;
}

#event-complete .event-title {
    font-family: "Poppins", sans-serif;
}

#event-complete .confirm-box {
    color: #FFFFFF;
    background: #FFA216;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
    letter-spacing: .15px;
    padding: 2rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

    #event-complete .confirm-box h4 {
        font-weight: bold;
    }

#event-complete .item-box {
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 0 1rem;
    border-radius: 6px;
}

#event-complete .item-header {
    background: #FFAF13;
    padding: 1rem 1.5rem;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
}

#event-complete .item-wrapper {
    padding: 1rem 1.5rem;
}

    #event-complete .item-wrapper h3 {
        font-weight: bold;
        letter-spacing: .06em;
    }

    #event-complete .item-wrapper h6 {
        font-weight: 400;
        letter-spacing: .15px;
    }

    #event-complete .item-wrapper .date-time-header {
        font-size: 18px;
        letter-spacing: .15px;
        font-weight: 400;
        margin-bottom: 1rem;
    }

#event-complete .qr-wrapper {
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px -1px 4px rgba(0, 0, 0, 0.25);
    letter-spacing: .15px;
    padding: 1rem;
    margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# Booking History
--------------------------------------------------------------*/
#booking-history .card {
    background: #F5F5F5;
}

#booking-history .card-heading {
    padding: 1rem 1.5rem 0;
    background: #FFAF13;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
    color: #FFFFFF;
}

#booking-history .tabs {
    font-weight: 400;
    color: #FFFFFF;
    border-radius: unset;
}

#booking-history .nav-link.active {
    color: #FFAF13;
    background-color: #FFFFFF;
    border-radius: unset;
}

#booking-history .booking-items {
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 1rem;
}

#booking-history .booking-status {
    color: #FFFFFF;
}

#booking-history .up-panel-header {
    background: #EEEEEE;
}

    #booking-history .up-panel-header .header {
        padding: .5rem 1.5rem;
        cursor: pointer;
    }

#booking-history .past-panel-header {
    background: #EEEEEE;
}

    #booking-history .past-panel-header .header {
        padding: .5rem 1.5rem;
    }

#booking-history .past-panel-item {
    padding: 1rem 1.5rem;
}

#booking-history .up-panel-item {
    padding: 1rem;
}

#booking-history .item-text {
    color: #777777;
    font-size: 14px;
    letter-spacing: .15px;
    font-weight: 400;
}

#booking-history .receipt-text {
    color: #777777;
    letter-spacing: .15px;
    font-weight: 400;
    cursor: pointer;
}

#booking-history .receipt-merc-text {
    color: #777777;
    letter-spacing: .15px;
    font-weight: 400;
    cursor: pointer;
    position: absolute;
    bottom: 1.5rem;
}

#booking-history .booking-detail {
    background: #D9D9D9;
    padding: 1rem;
}

#booking-history .booking-event {
    background: #FFFFFF;
    padding: 1rem;
    margin-bottom: 1rem;
}

#booking-history .title {
    font-weight: 700;
    letter-spacing: .15px;
    width: 267px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#booking-history .content {
    color: #777777;
}

#booking-history .content-detail {
    color: #777777;
    margin-bottom: 1rem;
}

#booking-history .qr-wrapper {
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px -1px 4px rgba(0, 0, 0, 0.25);
    letter-spacing: .15px;
    padding: 1rem;
    margin-bottom: 1rem;
}

#booking-history .qr-style {
    text-align: -webkit-center;
    margin: 1rem 0;
}

#booking-history .btn-pay {
    background: #FF981E;
    color: #FFFFFF;
    width: 160px;
}

#booking-history .product-wrapper {
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    height: 327px;
    width: 100%;
    position: relative;
}

    #booking-history .product-wrapper .product-img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

#booking-history .content {
    font-size: 14px;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    #booking-history .title {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        width: 135px;
    }
}

@media (min-width: 992px) {
    #booking-history .product-wrapper .product-img {
        width: 200px;
    }

    #booking-history .content {
        font-size: 16px;
    }
}

#booking-history .status-box {
    padding: .1rem;
    text-align: center;
    color: #FFFFFF;
}

#booking-history .modal-header {
    padding: 0 1rem;
    border-bottom: unset;
    display: block;
}

#booking-history .header-box {
    background: #FFAF13;
    padding: 1rem 1.5rem;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
}

#booking-history .modal-body {
    padding: 1rem 2.5rem;
}

#booking-history .modal-body-merc-receipt {
    padding: 1rem 1rem 1rem 2.5rem;
}

#booking-history .date-time-header {
    font-size: 18px;
    letter-spacing: .15px;
    font-weight: 400;
    margin-bottom: 1rem;
}

#booking-history .label-text {
    font-size: 12px;
    color: #AAAAAA;
}

#booking-history .padd-right-0 {
    padding-right: unset;
}

#booking-history .btn-merch {
    position: absolute;
    bottom: 1.5rem;
    right: 1rem;
}

@media (max-width: 768px) {
    #merch-receipt .payment-way {
        width: 92%;
    }

    #event-receipt .payment-way {
        width: auto;
    }

    #booking-history .content-detail {
        font-size: 14px;
    }

    #booking-history .receipt-text {
        font-size: 14px;
    }

    #event-receipt .btn-pay {
        width: 100%;
    }

    #merch-receipt .btn-pay {
        width: 100%;
    }

    #merch-complete .btn-payment {
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    #merch-receipt .upload-box {
        height: 8.15rem;
    }

    #event-receipt .upload-box {
        height: 8.15rem;
    }

    #booking-history .content-detail {
        font-size: 14px;
    }

    #booking-history .content-detail {
        margin-bottom: 1rem;
    }

    #booking-history .receipt-text {
        font-size: 14px;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    #merch-receipt .upload-box {
    }

    #event-receipt .upload-box {
        height: 9.45rem;
    }
}

.flatpickr-input[readonly] {
    background-color: #FFFFFF;
}

/*--------------------------------------------------------------
# Search Online Order 
--------------------------------------------------------------*/
.filter-panel {
    background: #FFAF13;
}

.filter-panel {
    padding: 1rem;
}

    .filter-panel .title {
        font-weight: 700;
        font-size: 24px;
        line-height: 28px;
        padding-bottom: 1rem;
        color: #FFFFFF;
    }

    .filter-panel .form-group {
        display: flex;
        margin: 12px 0;
    }

        .filter-panel .form-group label {
            width: 300px;
        }

        .filter-panel .form-group input {
            width: 100%;
        }

.filter-input-panel {
    margin: auto;
    width: 50%;
}

.filter-panel button[type=submit] {
    font-size: 14px;
    line-height: 16px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: 0.15px;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    background: #FFAF13;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
    padding: 20px 80px;
    margin-left: auto;
}

label.result-title-order {
    width: 15%;
}

label.result-title-merch {
    width: 35%;
}

label.result-title-event {
    width: 25%;
}

label.result-title-time {
    width: 15%;
}

label.result-title-ticket {
    width: 10%;
}

label.result-title-amount {
    width: 10%;
}

label.result-title-payment {
    width: 10%;
}

label.result-title-shipping {
    width: 10%;
}


label.result-item-order {
    width: 15%;
}

label.result-item-merch {
    width: 35%;
}

label.result-item-event {
    width: 25%;
}

label.result-item-time {
    width: 15%;
}

label.result-item-ticket {
    width: 10%;
}

label.result-item-amount {
    width: 10%;
}

label.result-item-payment {
    width: 10%;
}

label.result-item-shipping {
    width: 10%;
}

button.result-item-pay {
    width: 10%;
    padding: 6px 10px;
}

.result-panel {
    background: #F8F8F8;
    mix-blend-mode: darken;
    padding: 10px;
    user-select: text;
    -moz-user-select: text;
    -webkit-user-select: text;
}

.result-item-pay {
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    background: #FFAF13;
}

.result-item-body {
    background: #FFFFFF;
    padding: 10px 10px;
    color: black;
}

.result-item-footer {
    background: #EEEEEE;
}

.result-item-footer {
    padding: 10px 10px;
}

.result-header {
    padding: 10px 10px;
    color: black;
}

.result-item-body {
    font-size: 14px;
}

.result-item-footer label {
    margin-right: 10px;
    font-size: 12px;
}


@media (max-width: 400px) {
    .result-panel label.result-title {
        width: 100%;
        text-align: center;
    }

    .result-panel label.result-item {
        width: 100%;
        text-align: center;
    }

    .result-panel button.result-item {
        width: 100%;
        text-align: center;
    }

    .result-panel .result-item-pay {
        width: 100%;
    }

    .result-panel label.result-item-footer {
        width: 100%;
    }

    .filter-input-panel {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
#faq .title {
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: -0.06em;
    color: #444444;
}

#faq .faq-name {
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.06em;
    color: #666666;
    margin: 20px 10px 10px 10px;
}

#faq .bodywrapping {
    background-color: #F4F1EC;
    border-radius: 12px;
    padding: 15px 25px;
}

#faq .accordion {
    background-color: #ffffff;
    color: #444;
    cursor: pointer;
    padding: 10px 25px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-weight: 500;
    font-size: 18px;
    transition: 0.4s;
}

#faq .card{
    border-radius: unset;
}

    #faq .active, .accordion:hover {
        background-color: #ccc;
    }

    #faq .accordion:after {
        content: "\002B";
        color: #777;
        font-weight: bold;
        float: right;
        margin-left: 5px;
    }

#faq .active:after {
    content: "\2212";
    position: absolute;
    right: 1.5rem;
}

#faq .panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

#faq .faq-answer {
    font-weight: 500;
    font-size: 16px;
    margin: 7px;
    white-space: pre-line;
}
}
/*--------------------------------------------------------------
# End Search Online Order 
--------------------------------------------------------------*/