/* Reset ================================================================================= */

:root {
    --primary-color: #FDB913;
    --primary-light: #FFF8E8;
    --secondary-color: #2C1F00;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --black: #000000;
    --white: #ffffff;
    --gray-100: #F1F1F1;
    --gray-200: #D0D0D0;
    --gray-300: #EBEBEB;
    --gray-700: #727272;
    --mulish-font: 'Mulish';
    --font-54: 54px;
    --font-42: 38px;
    --font-36: 34px;
    --font-30: 30px;
    --font-28: 28px;
    --font-22: 22px;
    --font-20: 20px;
    --font-18: 18px;
    --font-16: 16px;
    --font-14: 14px;
    --font-12: 12px;
    --clip-box: polygon(0% 0%, calc(100% - 40px) 0%, 100% 40px, 100% 100%, 40px 100%, 0% calc(100% - 40px));
    --clip-box-inner: polygon(0% 0%, calc(100% - 30px) 0%, 100% 30px, 100% 100%, 30px 100%, 0% calc(100% - 30px));
}

* {
    margin: 0;
    padding: 0
}

body {
    font-family: var(--mulish-font);
    font-weight: 400;
    font-size: 14px;
    color: var(--black);
    line-height: 1.2;
    overflow: hidden;
}

a {
    text-decoration: none;
    background-color: transparent;
    color: inherit;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
    border: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

:focus {
    outline: none;
}

a:focus {
    outline: none;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.none {
    display: none !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    line-height: normal;
}

h1, .h1 {
    font-size: var(--font-36);
    font-weight: normal;
}

h2, .h2 {
    font-size: var(--font-30);
    font-weight: normal;
}

h3, .h3 {
    font-size: var(--font-28);
    font-weight: normal;
}

h4, .h4 {
    font-size: var(--font-22);
    font-weight: normal;
}

h5, .h5 {
    font-size: var(--font-18);
    font-weight: normal;
}

h6, .h6 {
    font-size: var(--font-16);
    font-weight: normal;
}

/* Forms */
form {
    display: inline;
}

fieldset {
    border: 0;
}

legend {
    display: none;
}

/* Table */
table {
    border: 0;
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    font-size: 100%;
}

caption, th, td {
    vertical-align: top;
    text-align: left;
    font-weight: normal;
}

/* Lists */
ul, ol {
    list-style: none;
    margin: 0;
}


/* Global Styles ========================================================================= */
.footer {
    padding: 16px 0;
}

    .footer .copyright p {
        font-size: var(--font-16);
    }

        .footer .copyright p a {
            color: var(--primary-color);
            font-weight: 800;
        }

            .footer .copyright p a:hover {
                text-decoration: underline;
            }

.whatsapp-link a span {
    font-size: var(--font-16);
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    background-color: var(--white);
    border-radius: 50%;
}

    .social-media a:hover {
        background-color: var(--primary-color);
    }

.main-body {
    background-image: url('../images/bg-image.png');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #C08D10;
    height: calc(100vh - 144px);
    height: calc((var(--vh, 1vh) * 100) - 144px);
    padding-bottom: 40px;
    padding-top: 40px;
    overflow-y: auto
}

.page-title h2, .page-title h1 {
    font-size: var(--font-42);
    font-weight: 800;
}

.page-title .highlight {
    color: var(--primary-color)
}

.page-title .sub-title {
    font-size: var(--font-18);
    margin-top: 18px;
    color: var(--gray-700);
}

.page-title {
    margin-bottom: 30px;
}

.input-group-text button {
    line-height: 1;
}

.form-box {
    padding: 42px;
}

.form-group .form-label {
    margin-bottom: 8px;
    font-weight: 800;
}

.form-group .input-group {
    background-color: var(--gray-100);
}

    .form-group .input-group .iti__flag-container + .form-control {
        padding-left: 102px !important;
    }

    .form-group .input-group .form-control {
        background-color: var(--gray-100);
        border-radius: 0;
        box-shadow: none;
        outline: none;
        height: 42px;
        padding: 12px;
        font-size: var(--font-14);
        font-weight: 600;
    }

    .form-group .input-group .input-group-text {
        background-color: var(--gray-100);
        border-radius: 0 !important;
    }

.input-group .iti {
    width: calc(100% - 42px);
}

.forgot-password a {
    color: var(--gray-700);
    font-weight: 600;
}

    .forgot-password a:hover {
        color: var(--black);
        text-decoration: underline;
    }

.reset-content h2 {
    font-weight: 800;
    font-size: var(--font-22);
}

.reset-content p {
    color: var(--gray-700);
    font-size: var(--font-16);
}

    .reset-content p span {
        color: var(--primary-color)
    }

    .reset-content p a {
        color: var(--primary-color)
    }

.otp-input {
    width: 100%;
    background-color: var(--gray-100);
    border-radius: 0;
    box-shadow: none;
    outline: none;
    height: 42px;
    padding: 12px;
    font-size: var(--font-14);
    font-weight: 600;
    font-size: 18px;
}

    .otp-input:focus {
        box-shadow: none;
        outline: none;
        border-color: var(--primary-color);
        background-color: var(--primary-light);
    }

.theme-modal .modal-body {
    padding: 32px;
    border: 0;
    border-radius: 0;
}

.theme-modal .modal-content {
    border: 0;
    border-radius: 0;
}

.modal-backdrop.show {
    --bs-backdrop-opacity: 0.7;
}

body.modal-open .main-body,
body.modal-open header,
body.modal-open footer {
    filter: blur(3px);
    transition: filter 0.3s ease-in-out;
}

.theme-modal .modal-body .popup-icon {
    margin-bottom: 30px
}

.content-box {
    padding: 0;
    line-height: 1.3;
    margin-bottom: 30px
}

    .content-box ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .content-box ul li {
            font-size: 15px;
            color: var(--gray-700);
            display: flex;
            gap: 16px;
            font-size: var(--font-16);
            line-height: 18px;
        }

            .content-box ul li + li {
                margin-top: 16px;
            }

            .content-box ul li::before {
                content: url("../images/arrow-right.svg");
                left: 0;
                top: 0;
            }

.booking-box {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 24px;
    border-bottom: 3px solid var(--primary-color);
}

    .booking-box .theme-btn .cta-button {
        min-width: 280px;
    }

.booking-content {
    margin-bottom: 30px;
}

    .booking-content ul li {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .booking-content ul li + li {
            margin-top: 10px;
        }

        .booking-content ul li label {
            font-size: var(--font-16);
            font-weight: 600;
            color: var(--black)
        }

            .booking-content ul li label b {
                font-weight: 800;
            }

        .booking-content ul li span {
            font-weight: 900;
            color: var(--primary-color);
            font-size: var(--font-22);
            display: flex;
            align-items: center;
            gap: 10px;
        }

            .booking-content ul li span small {
                font-size: var(--font-16);
                font-weight: 600;
                color: var(--black)
            }

.book-ticket-list .match-item .super-cup-img img {
    max-height: 68px;
    object-fit: contain;
}

.book-ticket-list .stadium-info {
    position: static;
    justify-content: center;
}

.book-ticket-list .match-content {
    margin-bottom: 14px;
}

.cart-info {
    background-color: var(--primary-color);
    padding: 10px 12px;
    margin: 30px 0;
    border-radius: 4px;
}

    .cart-info .theme-btn .cta-button {
        min-width: auto;
    }

.tickets-info .total-tickets span {
    font-size: var(--font-18);
    font-weight: 700;
}

.tickets-info p {
    font-size: var(--font-18);
}

.fill-ticket-box {
    margin-top: 30px;
}

    .fill-ticket-box .match-item::after {
        z-index: -1;
    }

    .fill-ticket-box .match-item {
        margin-bottom: 30px;
        z-index: auto;
    }

    .fill-ticket-box .fill-ticket-title {
        margin-bottom: 18px
    }

        .fill-ticket-box .fill-ticket-title h2 {
            font-weight: 800;
            font-size: var(--font-18);
        }

            .fill-ticket-box .fill-ticket-title h2 small {
                font-size: var(--font-14);
            }

.ticket-form .form-group .input-group .input-group-text,
.ticket-form .form-group .input-group .form-control {
    background-color: var(--white);
    border: 0;
}

.ticket-form .form-group .input-group:has(.form-control.disabled) .input-group-text,
.ticket-form .form-group .input-group:has(.form-control.disabled) .form-control,
.ticket-form .form-group .input-group:has(.form-control[disabled]) .input-group-text,
.ticket-form .form-group .input-group:has(.form-control[disabled]) .form-control {
    background-color: #d7d7d7;
    border: 0;
    pointer-events: none;
}

.ticket-form .form-group .input-group:has(.form-control.disabled) .iti__flag-container,
.ticket-form .form-group .input-group:has(.form-control[disabled]) .iti__flag-container {
    pointer-events: none;
}

.ticket-form .form-group .input-group .iti .form-control {
    padding-left: 97px !important;
}

/* Hide spinners in Chrome, Safari, Edge */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide spinners in Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.user-ticket-box {
    margin-bottom: 18px;
    min-width: 320px;
    max-width: 320px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 12px;
    border-bottom: 3px solid var(--primary-color);
}

    .user-ticket-box li {
        position: relative;
        text-align: center;
        width: 33.33%
    }

        .user-ticket-box li + li::before {
            content: "";
            width: 1px;
            height: 100%;
            background-color: var(--gray-200);
            display: block;
            position: absolute;
        }

        .user-ticket-box li span {
            font-size: var(--font-14);
            width: 100%;
        }

        .user-ticket-box li label {
            font-size: var(--font-16);
            width: 100%;
            font-weight: 700
        }

.checkbox-group {
    margin-top: 18px;
}

.custom-checkbox {
    display: inline-flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 16px;
    color: #555;
    user-select: none;
}

    .custom-checkbox input {
        display: none;
    }

    .custom-checkbox .checkmark {
        width: 20px;
        min-width: 20px;
        height: 20px;
        border: 2px solid #ccc;
        margin-right: 8px;
        display: inline-block;
        position: relative;
        background: #fff;
        transition: all 0.3s ease;
    }

    .custom-checkbox input:checked + .checkmark {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }

        .custom-checkbox input:checked + .checkmark::after {
            content: "";
            position: absolute;
            left: 5px;
            top: 1px;
            width: 6px;
            height: 12px;
            border: solid #000;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

.total-tickets-summary {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--gray-200);
}

    .total-tickets-summary .total-amount span {
        font-size: var(--font-16);
    }

.payment-title p {
    font-size: var(--font-22);
    font-weight: 800;
    color: var(--black);
}

.payment-box-item {
    padding: 12px 24px;
    background-color: transparent !important;
}

    .payment-box-item.clip-tournament-box-inner {
        --clip-box-inner: polygon(0% 0%, calc(100% - 18px) 0%, 100% 18px, 100% 100%, 18px 100%, 0% calc(100% - 18px));
    }

        .payment-box-item.clip-tournament-box-inner span {
            color: var(--black) !important;
        }

    .payment-box-item span {
        font-size: var(--font-16);
        font-weight: 700
    }

    .payment-box-item .btn-link {
        height: 30px;
        width: 30px;
        background-color: var(--black);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease-in-out;
    }

        .payment-box-item .btn-link img {
            filter: brightness(0) saturate(100%) invert(78%) sepia(28%) saturate(3383%) hue-rotate(349deg) brightness(105%) contrast(98%);
        }

    .payment-box-item:hover .btn-link {
        background-color: var(--primary-color);
    }

        .payment-box-item:hover .btn-link img {
            filter: none
        }

.failed-content {
    margin-bottom: 30px
}

    .failed-content li:first-child {
        border-top: 1px solid var(--gray-200);
    }

    .failed-content li {
        border-bottom: 1px solid var(--gray-200);
        padding: 12px 0;
        display: flex;
        align-items: center
    }

        .failed-content li label {
            font-weight: 700;
            width: 50%;
            font-size: var(--font-16);
            color: var(--black);
        }

        .failed-content li span {
            font-weight: 500;
            width: 50%;
            font-size: var(--font-16);
            color: var(--gray-700);
        }

.booking-box-list-items {
    border-top: 1px solid var(--gray-200);
    padding-top: 16px;
    margin-top: 16px;
    margin-bottom: 16px;
}

    .booking-box-list-items:last-child {
        margin-bottom: 0
    }

.booking-box-items {
    position: relative;
    z-index: 2;
}

    .booking-box-items:after {
        left: -10px;
    }

    .booking-box-items:before {
        right: -10px;
    }

    .booking-box-items:after,
    .booking-box-items:before {
        content: '';
        position: absolute;
        top: 30px;
        bottom: 30px;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='11' cy='11' r='6' fill='%23ffffff'/%3e%3c/svg%3e ");
        width: 21px;
        background-repeat: repeat-y;
        background-position: top left;
        background-size: 100% auto;
        z-index: 9;
        pointer-events: none;
    }

    .booking-box-items .booking-box-items-info:before {
        content: '';
        position: absolute;
        top: 30px;
        left: -10px;
        bottom: 30px;
        z-index: -1;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='11' cy='11' r='6' fill='%23ffffff'/%3e%3c/svg%3e ");
        width: 21px;
        background-repeat: repeat-y;
        background-position: top left;
        background-size: 100% auto;
        pointer-events: none;
    }

    .booking-box-items .booking-box-items-info::after,
    .booking-box-items .booking-box-items-list::after {
        --clip-box-inner: polygon(30px 0%, calc(100% - 30px) 0%, 100% 30px, 100% calc(100% - 30px), calc(100% - 30px) 100%, 30px 100%, 0% calc(100% - 30px), 0% 30px);
    }

    .booking-box-items .booking-box-items-info {
        padding: 24px;
        width: 25%;
        /* border-left: 8px dotted black;  */
    }


    .booking-box-items .booking-box-items-list {
        padding: 24px;
        width: 75%;
    }

.booking-box-items-info-inner {
    padding: 18px;
}

    .booking-box-items-info-inner::after {
        --clip-box-inner: polygon(16px 0%,
        /* top-left cut */
        calc(100% - 16px) 0%,
        /* before top-right cut */
        100% 16px,
        /* top-right cut */
        100% calc(100% - 16px),
        /* before bottom-right cut */
        calc(100% - 16px) 100%,
        /* bottom-right cut */
        16px 100%,
        /* before bottom-left cut */
        0% calc(100% - 16px),
        /* bottom-left cut */
        0% 16px
        /* back to top-left cut */
        );
    }

.booking-box-items-info-title h6 {
    font-size: var(--font-16);
    font-weight: 700;
}

.booking-box-items-info-title p {
    font-size: var(--font-14);
    font-weight: 700
}

.booking-box-items-info-user-list {
    margin-top: 18px;
}

.user-list-info + .user-list-info {
    margin-top: 12px
}

.user-list-info span {
    font-weight: 500;
    color: var(--black);
}

.booking-box-items-list .match-detail-compare {
    max-width: 360px;
}

    .booking-box-items-list .match-detail-compare .team-name {
        font-size: var(--font-16);
        font-weight: 700;
    }

    .booking-box-items-list .match-detail-compare .team-home .team-logo {
        height: 70px;
        width: auto;
    }

    .booking-box-items-list .match-detail-compare .match-vs-logo {
        width: auto;
        height: auto;
    }

        .booking-box-items-list .match-detail-compare .match-vs-logo .vs-logo {
            height: 44px
        }

    .booking-box-items-list .match-detail-compare .team-away .team-logo {
        height: 70px;
        width: auto;
    }

.booking-box-items-list .match-detail-wrap {
    position: static;
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-top: 30px;
}

    .booking-box-items-list .match-detail-wrap .match-detail-box {
        width: auto;
    }

.booking-details-control {
    width: 75%;
}

.booking-details-actions {
    width: 23%;
    margin-left: 2%;
    display: flex;
    flex-direction: column;
}

    .booking-details-actions .theme-btn {
        margin-top: auto
    }

    .booking-details-actions .super-logo .super-cup {
        max-width: 100%;
        max-height: 70px;
        object-fit: contain;
    }

.booking-details-control .match-detail-box i {
    min-width: 36px;
    width: 36px;
    height: 36px;
}

.booking-box-list-items .booking-title {
    margin-bottom: 12px
}

    .booking-box-list-items .booking-title h6 {
        font-size: var(--font-16);
        font-weight: 700;
    }

        .booking-box-list-items .booking-title h6 span {
            color: var(--primary-color)
        }

.iti__country-list {
    z-index: 5;
}

.swal2-title {
    font-size: var(--font-18) !important;
    font-weight: 500 !important;
    color: var(--black) !important;
}

.swal2-popup {
    border-radius: 0 !important;
    clip-path: var(--clip-box-inner) !important;
}

@media (min-width: 992px) {
    #ResetPasswordPopup .modal-dialog {
        max-width: 700px;
    }
}

.input-group-text button.toggle-password {
    background: transparent !important;
    border: none;
    padding: 0;
    cursor: pointer;
}

.modal {
    --bs-modal-margin: 15px
}

form a.cta-button:before,
form a.cta-button:after,
form button.cta-button:before,
form button.cta-button:after {
    z-index: auto !important;
}

body:has(.stadium-tickets) footer.footer {
    display: none !important;
}

body:has(.stadium-tickets) .main-body {
    height: calc((var(--vh, 1vh) * 100) - 80px);
}

.arrow-back-btn {
    display: inline-flex;
}

.arrow-back-btn {
    color: var(--black);
}

    .arrow-back-btn:hover {
        color: var(--primary-color);
    }

    .arrow-back-btn svg {
        width: 42px;
        height: auto;
    }

input,
input {
    -webkit-text-security: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    user-select: none;
}

    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus {
        -webkit-box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0);
        -webkit-text-fill-color: black;
        transition: background-color 5000s ease-in-out 0s;
    }

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}



.match-header-icon.match-header {
    justify-content: space-between !important;
}

    .match-header-icon.match-header .match-title {
        width: auto !important;
    }

.match-header-icon .super-cup-img img {
    width: auto;
    height: auto;
    max-height: 40px;
    object-fit: contain;
}

body:has(.spinner-border) .booking-box-items:after,
body:has(.spinner-border) .booking-box-items:before {
    display: none;
}



.spinner-items {
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    width: 100%;
    left: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .spinner-items .spinner-border {
        height: 20px;
        width: 20px;
    }
