.gtxc-auth-main {
    display: flex;
    justify-content: center;
    min-height: 380px;
    perspective: 1000px;
}

.gtxc-auth-card {
    position: relative;
    width: 100%;
    transform-style: preserve-3d;
    transition: 0.8s;
}


.gtxc-auth-card .gtxc-auth-back {
    display: none !important;
}

.gtxc-auth-card.flip .gtxc-auth-back {
    display: block !important;
}

.gtxc-auth-card.flip {
    transform: rotateY(180deg);
}

.gtxc-auth-card.flip .gtxc-auth-front {
    display: none !important;
}

.gtxc-auth-card .gtxc-auth-front {
    display: block !important;
}



.gtxc-auth-face {
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 20px;
    backface-visibility: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gtxc-auth-back {
    transform: rotateY(180deg);
}

.gtxc-auth-face h2 {
    margin-bottom: 25px;
    text-align: center;
}

.gtxc-auth-face input,
.gtxc-auth-face textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.gtxc-auth-face button {
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #000;
    flex: 1;
    height: 50px;
    border-radius: 6px;
    border: 1px solid #c38c38;
    background-color: #c38c38;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    text-transform: uppercase;
}

.gtxc-auth-face button:hover,
.gtxc-auth-face button:focus {
    transform: translateY(-2px);
    background-color: #c38c38;
}


.gtxc-switch-text {
    margin-top: 20px;
    text-align: center;
    color: white;
}

.gtxc-switch-text span {
    color: #c38c38;
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
}

.gtxc-switch-text span:hover {
    text-decoration: unset;
}


.gtxc-register-message,
.gtxc-login-message {
    color: #c38c38ed;
    margin-top: 15px;
    text-align: center;
    position: absolute;
    bottom: -30px;
}


#gtxc-login-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.field-error {
    display: block;
    color: #c38c38ed;
    font-size: 13px;
    margin-top: 5px;
    position: absolute;
}


.gtxc-forgot-password-text {
    margin-top: 10px !important;
}







.gtxc-dashboard-main {
    display: flex;
    min-height: 100vh;
    background: #000;
    color: #fff;
}


/* SIDEBAR */

.gtxc-dashboard-sidebar {
    width: 100%;
    max-width: 300px;
    background: #050505;
    border-right: 1px solid #505050;
    padding: 30px 20px;
    position: sticky;
    top: 0;
    height: 100vh;
}

.gtxc-dashboard-logo {
    margin-bottom: 30px;
    text-align: center;
}

.gtxc-dashboard-logo img {
    width: 80px;
}

.gtxc-sidebar-user {
    text-align: center;
    margin-bottom: 40px;
}

.gtxc-sidebar-user img {
    border-radius: 50%;
    margin-bottom: 15px;
}

.gtxc-sidebar-user h3 {
    margin-bottom: 8px;
}

.gtxc-sidebar-user p {
    color: #999;
    font-size: 14px;
}

.gtxc-dashboard-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 25px;
}


.gtxc-dashboard-menu li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 11px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;

}

.gtxc-dashboard-menu li.active a {
    background: #C38C38;
}

.gtxc-dashboard-menu li a:hover {
    background: #d4a041c4;
}


/* CONTENT */

.gtxc-dashboard-content-outer {
    flex: 1;
}

.gtxc-dashboard-content {
    padding: 20px 40px;

}


/* TOPBAR */

.gtxc-dashboard-topbar {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 30px;
    background-color: #000000;
    position: sticky;
    top: 0;
    border-bottom: 1px solid #505050;
    padding: 20px 40px;
    z-index: 99999;
    align-items: center;
}



.gtxc-sidebar-toggle {
    display: none;
    background: #C38C38;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    font-size: 24px;
    cursor: pointer;
}

.gtxc-sidebar-overlay {
    display: none;
}


.gtxc-dashboard-welcome span {
    color: #FFFFFF;
    font-family: Playfair Display;
    font-weight: 500;
    font-size: 16px;
    line-height: 29px;
    text-transform: capitalize;

}

.gtxc-dashboard-welcome h2 {
    font-family: Inter !important;
    color: #C38C38;
    font-weight: 700;
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.gtxc-dashboard-welcome p {
    font-family: Inter !important;
    font-weight: 500;
    font-size: 14px;
    line-height: 29px;
    text-transform: capitalize;
    margin-bottom: 0px;

}



/* ========================================
   TOPBAR USER DROPDOWN
======================================== */

.gtxc-topbar-user-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.gtxc-topbar-user {
    cursor: pointer;
}

.gtxc-topbar-dropdown {
    position: absolute;
    top: 80px;
    right: 0;
    width: 300px;
    background: #C38C38;
    border: 1px solid #C38C38;
    border-radius: 10px;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s ease;
    z-index: 9999;
}

.gtxc-logout-btn.logout-btn {
    background-color: #ff000099;
    border: 1px solid #ff000099;
}

.gtxc-logout-btn.logout-btn:hover {
    background-color: #ff00004d;
    border: 1px solid #ff000099;
}

.gtxc-logout-btn.logout-btn:hover img {
    filter: brightness(0) saturate(100%) invert(100%);
}

.gtxc-logout-btn.logout-btn:hover {
    color: white;
}

.gtxc-topbar-user-wrapper.active .gtxc-topbar-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gtxc-dropdown-user {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    overflow: hidden;
}

.gtxc-dropdown-user img {
    height: 100% !important;
    object-fit: cover;
}

.gtxc-dropdown-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ffffff;
}

.gtxc-dropdown-user-info img {
    border-radius: 50%;
}

.gtxc-dropdown-user-info h4 {
    margin: 0 0 5px;
    font-size: 18px;
    color: #fff;
}

.gtxc-dropdown-user-info p {
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    word-break: break-word;
}

.gtxc-topbar-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.gtxc-topbar-dropdown ul li {
    margin-bottom: 10px;
}

.gtxc-topbar-dropdown ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 10px;
    /* background: #1a1a1a; */
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid;
}

.gtxc-topbar-dropdown ul li a:hover {
    color: #C38C38;
    background-color: white;
}

.gtxc-topbar-dropdown ul li a:hover img {
    filter: brightness(0) saturate(100%) invert(61%) sepia(43%) saturate(560%) hue-rotate(357deg) brightness(92%) contrast(88%);
}

.gtxc-dropdown-logout {
    display: block;
    width: 100%;
    text-align: center;
    background: #c0392b;
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.gtxc-dropdown-logout:hover {
    background: #e74c3c;
}


.gtxc-topbar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    height: fit-content;
}


.gtxc-topbar-user .gtxc-user-avatar {
    border-radius: 50px !important;
    width: 42px;
    height: 42px !important;
    object-fit: cover;
    border: 2px solid #ffffff !important;
}

.gtxc-topbar-user-inner {
    display: flex;
    gap: 15px;
    align-items: center;
}


/* STATS */

.gtxc-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 30px;
}

.gtxc-stat-card {
    background: #050505;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 25px 35px;
    text-align: center;
}

.gtxc-stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.gtxc-stat-card h2 {
    font-size: 40px;
    color: #d4a041;
}

.gtxc-dashboard-box {
    background: #050505;
    border-radius: 20px;
    margin-bottom: 50px;
}


/* FORM */


#gtxcAuthCard label {
    display: block;
    margin-bottom: 10px;
}

#gtxcAuthCard input {
    width: 100%;
    background: #111 !important;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 10px 20px 10px 55px;
    color: #fff !important;
}

#gtxcAuthCard textarea {
    color: #fff !important;
    background: #111 !important;

}

.gtxc-profile-btn {
    background: #d4a041;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
}

.gtxc-success {
    background: green;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}



.gtxc-membership-status-box {
    display: flex;
    justify-content: space-between;
    border: 1px solid #4B330F;
    padding: 30px;
    margin-bottom: 50px;
    border-radius: 10px;
}


.gtxc-membership-status-box h2 {
    font-weight: 600;
    font-size: 22px;
    text-transform: capitalize;
    color: #C38C38;
}

.gtxc-membership-status-box h3 {
    font-family: Playfair Display;
    font-weight: 600;
    font-size: 28px;
    text-transform: capitalize;
    color: #C38C38;
    margin: 0px;
}

.gtxc-renew-btn {
    font-family: Inter;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #C38C38;
    border-radius: 10px;
}

.gtxc-membership-right {
    display: flex;
    gap: 45px;
    align-items: center;
}


.gtxc-membership-status-box p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    text-transform: capitalize;
    color: #FFFFFF;
    margin-bottom: 0px;
}


.gtxc-membership-status-box p span {
    font-family: Inter;
    font-weight: 700;
    font-size: 16px;
    line-height: 29px;
    text-transform: capitalize;
    color: #C38C38;
}


.gtxc-membership-days span {
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    line-height: 29px;
    text-transform: capitalize;
    color: #FFFFFF;
}



/* MOBILE */

@media(max-width:1300px) {

    .gtxc-dashboard-content {
        padding: 20px;
    }
}


@media(max-width:991px) {

    .gtxc-dashboard-main {
        flex-direction: column;
    }

    .gtxc-dashboard-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .gtxc-dashboard-stats {
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px) {
    .gtxc-membership-status-box {
        margin-bottom: 20px;
        padding: 20px;
    }

}

/* <dashboard styling end  */



/* profile styling start  */

.gtxc-profile-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
}

.gtxc-profile-card {
    background: #050505;
    border: 1px solid #5b3d12;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    height: fit-content;
}

.gtxc-profile-image {
    width: 140px;
    height: 140px;
    margin: auto;
    margin-bottom: 25px;
}

.gtxc-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #d4a041;
}

.gtxc-profile-card h2 {
    color: #fff;
    margin-bottom: 10px;
}

.gtxc-profile-card p {
    color: #999;
    word-break: break-word;
}

.gtxc-profile-form-box {
    background: #ffffff;
    border: 1px solid #5b3d12;
    border-radius: 20px;
    padding: 40px;
}

.gtxc-profile-form-box h2 {
    color: #d4a041;
    margin-bottom: 30px;
    font-size: 32px;
}



.gtxc-form-group label {
    display: block;
    margin-bottom: 10px;
    color: #000000;
    font-weight: 600;
}

.gtxc-profile-wrapper .gtxc-form-group input {
    padding: 10px 20px;
    color: #636363;
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 33px;
}


.gtxc-profile-btn {
    background: #d4a041;
    color: #fff;
    border: none;
    padding: 16px 30px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.gtxc-profile-btn:hover {
    opacity: 0.9;
}

.gtxc-success {
    background: #103a1e;
    color: #5fff9d;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #1d6f39;
}




/* profile styling start  */





/* popup styling start  */

/* LOGOUT MODAL */
/* =========================================
   LOGOUT MODAL
========================================= */

.gtxc-logout-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
    z-index: 99999999;
    padding: 20px;
}

.gtxc-logout-modal.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================
   MODAL BOX
========================================= */

.gtxc-logout-modal-inner {
    width: 100%;
    max-width: 460px;
    background: linear-gradient(145deg,
            #101010 0%,
            #060606 100%);
    border: 1px solid rgba(212, 160, 65, 0.25);
    border-radius: 10px;
    padding: 45px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 40px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(212, 160, 65, 0.08);
    transform: translateY(30px) scale(0.95);
    transition: 0.35s ease;
}

.gtxc-logout-modal.active .gtxc-logout-modal-inner {
    transform: translateY(0) scale(1);
}


/* GOLD GLOW */

.gtxc-logout-modal-inner::before {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    background: rgba(212, 160, 65, 0.12);
    border-radius: 50%;
    top: -120px;
    right: -120px;
    filter: blur(40px);
}


/* =========================================
   ICON
========================================= */

.gtxc-logout-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            #d4a041,
            #8a631e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #fff;
    box-shadow:
        0 10px 30px rgba(212, 160, 65, 0.35);
}


/* =========================================
   TEXT
========================================= */

.gtxc-logout-modal-inner h3 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.gtxc-logout-modal-inner p {
    color: #9d9d9d;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 35px;
}


/* =========================================
   BUTTONS
========================================= */

.gtxc-logout-actions {
    display: flex;
    gap: 16px;
}

.gtxc-cancel-logout,
.gtxc-confirm-logout {
    flex: 1;
    height: 58px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}


/* CANCEL BUTTON */

.gtxc-cancel-logout {
    background: #181818;
    color: #fff;
    border: 1px solid #2d2d2d;
}

.gtxc-cancel-logout:hover {
    background: #232323;
    transform: translateY(-2px);
}


/* LOGOUT BUTTON */

.gtxc-confirm-logout {
    background: linear-gradient(135deg,
            #d4a041,
            #b88422);
    color: #fff;
    box-shadow:
        0 10px 25px rgba(212, 160, 65, 0.3);
}

.gtxc-confirm-logout:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 35px rgba(212, 160, 65, 0.4);
}


/* SHINE EFFECT */

.gtxc-confirm-logout::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent);
    transition: 0.6s;
}

.gtxc-confirm-logout:hover::before {
    left: 100%;
}


/* =========================================
   MOBILE
========================================= */

@media(max-width:600px) {

    .gtxc-logout-modal-inner {
        padding: 35px 25px;
    }

    .gtxc-logout-actions {
        flex-direction: column;
    }

}

/* popup styling end  */







/* ////////////////////////////////////////////////////////// */
/* event card styling start */

.gtxc-event-card {
    display: flex;
    gap: 30px;
    background: #050505;
    border: 1px solid #8b6a2c;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 30px;
    color: #fff;
    align-items: stretch;
    flex-direction: column;
    max-width: 500px;
}


.gtxc-ticket-number {
    padding: 10px;
    background-color: #C38C38;
    border-radius: 5px;
}

.gtxc-events-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.gtxc-event-image {
    position: relative;
    border: 1px solid #4B330F;
    border-radius: 10px;
    height: 258px;
}

.gtxc-event-image img {
    object-fit: contain;
    border-radius: 10px !important;
    border: 1px solid #4B330F !important;
    height: 258px !important;
}

.gtxc-event-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #8b6a2c;
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 4px;
}

.gtxc-event-title {
    font-size: 24px;
    line-height: 1.25;
    margin: 0 0 12px;
    color: #ffffff;
    font-weight: 700;
}

.gtxc-event-description {
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.7;
}

.gtxc-event-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.gtxc-meta-box {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.gtxc-meta-icon {
    width: 50px;
    height: 50px;
    background: #362814;
    color: #d4a041;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 20px;
}

.gtxc-meta-box span {
    color: #C38C38;
    font-size: 13px;
    display: block;
    margin-bottom: 5px;
}

.gtxc-meta-box h4 {
    color: #fff;
    margin: 0;
    font-size: 18px;
}

.gtxc-meta-box p {
    color: #C38C38;
    margin-top: 5px;
    font-size: 13px;
}

.gtxc-event-btn {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #d4a041;
    color: #fff;
    text-decoration: none;
    padding: 18px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}



button.gtxc-event-btn.gtxc-purchase-ticket-btn {
    font-family: 'Inter';
    background: #d4a041;
    color: white;
    border-color: #777;
    width: 100%;
}


.gtxc-event-btn:hover {
    background: #b6842f;
}


button.gtxc-event-btn.gtxc-event-disabled {
    color: white;
    border: 1px solid #ccc;
}

@media(max-width: 991px) {

    .gtxc-event-card {
        flex-direction: column;
    }

    .gtxc-event-image,
    .gtxc-event-content {
        width: 100%;
    }

}

@media(max-width: 468px) {


    .gtxc-events-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }


    .gtxc-meta-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .gtxc-event-title {
        font-size: 18px;
    }

    .gtxc-event-card {
        gap: 20px;
    }


}

/* event card styling end */
/* ////////////////////////////////////////////////////////// */




/* profile  styling end */
/* ////////////////////////////////////////////////////////// */

.gtxc-profile-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.gtxc-profile-card,
.gtxc-danger-box {
    background: #0A0A0A;
    border: 1px solid #4B330F;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 50px;
    text-align: left;
}

form.gtxc-profile-card .gtxc-user-avatar {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.gtxc-profile-left .gtxc-remove-image {
    border: 1px solid #C38C38;
    border-radius: 50%;
    width: 30px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #C38C38;
    color: white;
    font-weight: 700;
}


.gtxc-profile-left .gtxc-remove-image:focus {
    background-color: #C38C38;
}





.gtxc-profile-left .gtxc-profile-image-wrap {
    position: relative;
    max-width: fit-content;
}


.gtxc-profile-left .gtxc-remove-image:hover {
    background-color: #b47d29;
}




.gtxc-card-title {
    font-family: Playfair Display;
    color: #d4a041;
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
    align-items: center;

    font-weight: 600;
    font-size: 22px;
    line-height: 65px;
    text-transform: capitalize;

}

.gtxc-form-group label {
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 33px;
    color: #ffffff;
    margin-bottom: 5px;
}

.gtxc-profile-wrapper .gtxc-form-group,
.gtxc-password-sidebar .gtxc-form-group {
    margin-bottom: 30px;
}


.gtxc-primary-btn,
.gtxc-danger-btn,
.gtxc-confirm-delete-btn,
.gtxc-cancel-btn {
    border: none;
    cursor: pointer;
    height: 54px;
    padding: 0 30px;
    border-radius: 8px;
    font-weight: 600;
}

.gtxc-dashboard-box .gtxc-primary-btn {
    background: linear-gradient(90deg, #986d2c 0%, #e3a343 44.5%, #986d2c 100%) !important;
    color: #fff;
    border: 1px solid #C38C38;
    height: 50px;
}

.gtxc-dashboard-box .gtxc-primary-btn:hover {
    background: #C38C38 !important;
}

.gtxc-danger-btn,
.gtxc-confirm-delete-btn {
    background: #920909;
    color: #fff;
}


button#gtxcDeleteBtn {
    font-family: Inter;
    border: 1px solid #770001;
    background-color: #5C0000;
    border-radius: 5px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    height: 50px;
}

.gtxc-membership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.gtxc-membership-grid span {
    color: #777;
    display: block;
    margin-bottom: 6px;
}

.gtxc-membership-grid h4 {
    color: #fff;
    font-size: 24px;
}

.gtxc-benefits-box {
    background: #0d0d0d;
    padding: 20px;
    border-radius: 10px;
}

.gtxc-benefits-box h5 {
    color: #d4a041;
    margin-bottom: 15px;
}

.gtxc-benefits-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    color: #fff;
}

.gtxc-profile-card .gtxc-setting-item {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 15px;
    width: 100% !important;
    font-weight: 600;
}

.gtxc-profile-card .gtxc-setting-item span {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gtxc-profile-card .gtxc-setting-item:hover {
    background-color: white;
    color: #333;
}

.gtxc-profile-card .gtxc-setting-item:focus {
    background-color: white;
    color: #333;
}

.gtxc-danger-box {
    background: #1C0000;
    border-color: #770001;
}

.gtxc-success-msg {
    background: #14532d;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.gtxc-delete-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9999999999;
}

.gtxc-delete-modal.active {
    opacity: 1;
    visibility: visible;
}

.gtxc-delete-modal-content {
    width: 400px;
    background: #050505;
    border: 1px solid #4B330F;
    border-radius: 12px;
    padding: 30px;
    margin: 20px;
    text-align: center;
}

.gtxc-delete-modal-content h3 {
    color: #fff;
    margin-bottom: 15px;
}

.gtxc-delete-modal-content p {
    color: #aaa;
    margin-bottom: 25px;
}

.gtxc-delete-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    justify-content: center;
}

.gtxc-delete-actions button {
    width: 100%;
}



.gtxc-delete-actions .gtxc-confirm-delete-btn {
    color: white;
    font-weight: 500;
    border: 1px solid #770001;
    background-color: #5C0000;
    height: 50px;
}

.gtxc-delete-actions .gtxc-confirm-delete-btn:hover {
    background-color: rgb(160, 0, 0);
    border-color: rgb(160, 0, 0);

}

.gtxc-delete-actions .gtxc-cancel-btn {
    background: #222;
    color: #fff;
    border: 1px solid white;
    font-weight: 600;
    height: 50px;
}

.gtxc-delete-actions .gtxc-cancel-btn:hover,
.gtxc-delete-actions .gtxc-cancel-btn:focus {
    background: white;
    color: #222;
    border: 1px solid white;
}


@media(max-width:1300px) {

    .gtxc-profile-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}


@media(max-width:991px) {

    .gtxc-membership-grid,
    .gtxc-benefits-box ul {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .gtxc-profile-wrapper {
        grid-template-columns: 1fr;
    }

    .gtxc-profile-card,
    .gtxc-danger-box {
        margin-bottom: 0px;
    }

    .gtxc-profile-right {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

}

/* profile styling end */
/* ////////////////////////////////////////////////////////// */



/* change pass  styling end */
/* ////////////////////////////////////////////////////////// */

.gtxc-password-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: #050505;
    z-index: 99999;
    transition: .4s;
    padding: 30px;
    border-left: 1px solid #3b2a09;
    overflow-y: auto;
}

.gtxc-password-sidebar.active {
    right: 0;
}

.gtxc-password-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.gtxc-password-sidebar-header h3 {
    color: #d4a041;
}

.gtxc-password-sidebar-header button {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.gtxc-password-sidebar-header button:hover {
    background: #d4a041;
}

.gtxc-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.gtxc-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.gtxc-password-form {
    margin-top: 20px;
}

.gtxc-error-msg {
    background: #5f0000;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* change pass  styling end */
/* ////////////////////////////////////////////////////////// */


/* //////////////////////////////////////////////////////////
   GTXC PREMIUM COURSE CARD DESIGN
////////////////////////////////////////////////////////// */

.gtxc-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* =========================================
   COURSE CARD
========================================= */

.gtxc-course-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #0d0d0d;
    border: 1px solid #4B330F;
    border-radius: 10px;
    overflow: hidden;
    transition: all .4s ease;
    height: 100%;
    padding: 20px;
}

/* glow effect */

.gtxc-course-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(212, 160, 65, .06);
    pointer-events: none;
}

/* hover */

.gtxc-course-card:hover {
    border-color: #d4a041;
}

/* =========================================
   COURSE IMAGE
========================================= */

.gtxc-course-image {
    position: relative;
    overflow: hidden;
    height: 260px;
    border-radius: 10px;
    border: 1px solid #4B330F;
}

.gtxc-course-image img {
    width: 100%;
    height: 260px !important;
    object-fit: cover;
    transition: transform .6s ease;
}

.gtxc-course-card:hover .gtxc-course-image img {
    transform: scale(1.08);
}

/* image overlay */

.gtxc-course-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .05));
}

/* =========================================
   CONTENT
========================================= */

.gtxc-course-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0px;
    margin-top: 20px;
}

/* =========================================
   TITLE
========================================= */

.gtxc-course-content h2 {
    font-size: 24px;
    line-height: 1.25;
    margin: 0 0 12px;
    color: #ffffff;
    font-weight: 700;
}

/* =========================================
   META TAGS
========================================= */

.gtxc-course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.gtxc-course-meta span {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    color: #d4a041;
    padding: 8px 14px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    transition: .3s ease;
}

.gtxc-course-meta span:hover {
    background: rgba(212, 160, 65, .08);
    border-color: rgba(212, 160, 65, .2);
    transform: translateY(-2px);
}

/* =========================================
   DESCRIPTION
========================================= */

.gtxc-course-content p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 24px;
}

/* =========================================
   FOOTER
========================================= */

.gtxc-course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}


/* button */
.gtxc-course-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4a041, #f0b44f);
    color: #fff;
    padding: 14px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all .3s ease;
    letter-spacing: .3px;
}

.gtxc-course-footer a:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(212, 160, 65, .25);
}




.gtxc-download-pdf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 12px 22px;
    margin-top: 15px;

    background: linear-gradient(90deg,
            #986d2c 0%,
            #e3a343 44.5%,
            #986d2c 100%) !important;
    color: #fff !important;

    border: none;
    border-radius: 5px;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    cursor: pointer;
    transition: all 0.3s ease;

    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
}

.gtxc-download-pdf-btn:hover {
    color: #fff !important;

}

.gtxc-download-pdf-btn:active {
    transform: translateY(0);
}


.gtxc-download-pdf-btn:visited {
    color: #fff !important;
}

/* =========================================
   DANGER BOX
========================================= */

.gtxc-danger-box {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-left: 4px solid #D20001;
    border-radius: 18px;
    padding: 22px;
}

.gtxc-danger-box h3 {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    color: #ff4d4f;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.gtxc-danger-box p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.9;
    color: #d1d5db;
    margin: 0;
}

/* =========================================
   TOPBAR USER
========================================= */

.gtxc-topbar-user h3 {
    font-size: 15px;
    color: #fff;
    margin: 0;
    font-weight: 600;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px) {

    .gtxc-courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media(max-width:768px) {


    .gtxc-course-image {
        height: 220px;
    }

    .gtxc-course-content h3 {
        font-size: 24px;
    }

    .gtxc-course-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .gtxc-course-footer a {
        width: 100%;
    }

    .gtxc-course-meta span {
        padding: 5px 5px;
    }

    .gtxc-courses-grid {
        grid-template-columns: 1fr;
    }

}


@media(max-width:500px) {

    .gtxc-password-sidebar {
        width: 90%;
        padding: 20px;
    }

    .gtxc-password-sidebar-header h3 {
        font-size: 22px;
    }

}

/* //////////////////////////////////////////////////////////
   COURSE CARD STYLING END
////////////////////////////////////////////////////////// */


@media (max-width: 1024px) {

    .gtxc-dashboard-main {
        flex-direction: column;
    }

    /* SIDEBAR */

    .gtxc-dashboard-sidebar {
        position: fixed;
        left: -320px;
        top: 0;
        width: 300px;
        max-width: 300px;
        height: 100vh;
        z-index: 999999999999;
        transition: 0.4s ease;
        overflow-y: auto;
    }

    .gtxc-dashboard-sidebar.active {
        left: 0;
    }

    /* OVERLAY */

    .gtxc-sidebar-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 9999;
    }

    .gtxc-sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* TOGGLE BUTTON */

    .gtxc-sidebar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gtxc-dashboard-welcome-outer {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        flex-direction: row;
    }

    /* TOPBAR */

    .gtxc-dashboard-topbar {
        gap: 20px;
        padding: 20px;
        align-items: center;
    }

    .gtxc-topbar-user {
        gap: 10px;
    }


    .gtxc-topbar-user p {
        font-size: 12px;
    }

    /* CONTENT */

    .gtxc-dashboard-content {
        padding: 20px;
    }

    /* STATS */

    .gtxc-dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

}

@media (max-width: 767px) {

    .gtxc-dashboard-topbar {
        flex-wrap: wrap;
        margin-bottom: 10px;
    }

    .gtxc-dashboard-welcome h2 {
        font-size: 18px;
    }

    .gtxc-dashboard-stats {
        grid-template-columns: 1fr;
    }

    .gtxc-stat-card {
        padding: 20px;
    }

    .gtxc-dashboard-logo {
        margin: 20px 20px 25px;
    }

    .gtxc-dashboard-welcome span {
        display: none;
    }

    .gtxc-topbar-dropdown {
        top: 50px;
    }
}



@media (max-width: 468px) {


    .gtxc-dashboard-sidebar {
        width: 90%;
    }

    .gtxc-topbar-user h3 {
        display: none;
    }

    .gtxc-membership-status-box h3 {
        font-size: 24px;
    }

    .gtxc-danger-box p {
        font-size: 14px;
    }

    .gtxc-delete-modal-content h3 {
        margin-bottom: 15px;
        font-size: 18px;
    }

    .gtxc-profile-card,
    .gtxc-danger-box {
        padding: 20px;
    }

    .gtxc-danger-box h3 {
        font-size: 18px;
    }


}



/* //////////////////////////////////////////////////////////////// */

.gtxc-membership-required {
    background: #0a0a0a;
    border: 1px solid rgba(212, 160, 55, 0.35);
    border-radius: 18px;
    padding: 40px;
    max-width: 700px;
    margin: 30px auto;
    box-shadow: 0 0 30px rgba(212, 160, 55, 0.08);
    position: relative;
    overflow: hidden;
}

.gtxc-membership-required::before {
    content: "🔒";
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 70px;
    opacity: 0.08;
}

.gtxc-membership-required h2 {
    margin: 0 0 15px;
    color: #d4a037;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.gtxc-membership-required p {
    margin: 0 0 25px;
    color: #b5b5b5;
    font-size: 16px;
}

.gtxc-membership-required ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 1fr;
}

.gtxc-membership-required li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    background: rgba(212, 160, 55, 0.06);
    border: 1px solid rgba(212, 160, 55, 0.15);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: all .3s ease;
}

.gtxc-membership-required li::before {
    content: "✦";
    color: #d4a037;
    font-size: 18px;
    font-weight: bold;
}

.gtxc-membership-required li:hover {
    transform: translateX(6px);
    border-color: rgba(212, 160, 55, 0.4);
    background: rgba(212, 160, 55, 0.12);
}

.gtxc-membership-required .gtxc-primary-btn,
.gtxc-membership-required a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 14px 30px;
    background: #d4a037;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .3s ease;
}

.gtxc-membership-required .gtxc-primary-btn:hover,
.gtxc-membership-required a:hover {
    background: #e0ad46;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 160, 55, 0.3);
}

/* /////////////////////////////////////////////////////////////// */





/* //////////////////////////////////////////////////////////////////////////////////////////////////////////// */



/* =========================================
   GTXC PREMIUM STRIPE MODAL
========================================= */

/* ================= MODAL WRAPPER ================= */

#gtxcStripeModal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(6px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: gtxcFadeIn .3s ease;
}

/* ================= MODAL BOX ================= */

#gtxcStripeModal>div {
    position: relative;
    width: 100%;
    max-width: 560px;
    background: #0d0d0d !important;
    border: 1px solid #4B330F;
    border-radius: 10px !important;
    padding: 30px !important;
    overflow: hidden;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, .65),
        0 0 0 1px rgba(212, 160, 65, .05);
    animation: gtxcModalUp .35s ease;
}

/* glow effect */

#gtxcStripeModal>div::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(212, 160, 65, .06);
    pointer-events: none;
}

/* ================= ANIMATIONS ================= */

@keyframes gtxcFadeIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes gtxcModalUp {

    from {
        transform: translateY(40px) scale(.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* ================= CLOSE BUTTON ================= */

#gtxcCloseStripeModal {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, .05);
    color: #9ca3af !important;
    font-size: 24px !important;
    transition: all .3s ease;
    position: absolute !important;
    right: 20px;
    top: 20px;
}

#gtxcCloseStripeModal:hover {
    background: #d4a041;
    color: #fff !important;
}

/* ================= TITLE ================= */

#gtxcModalTitle {
    font-family: Playfair Display;
    color: #ffffff !important;
    font-size: 32px !important;
    font-weight: 700;
    margin-bottom: 12px !important;
    letter-spacing: -.5px;
}

/* ================= PLAN NAME ================= */

#gtxcModalPlanName {
    color: #d1d5db !important;
    font-size: 16px;
    margin-bottom: 26px !important;
    line-height: 1.7;
}

#gtxcModalPlanName strong {
    color: #d4a041;
    font-weight: 700;
}

/* ================= STRIPE FIELD ================= */

#gtxcStripeCardElement {
    background: #ffffff !important;
    border: 1px solid rgb(255 255 255 / 21%) !important;
    border-radius: 5px !important;
    padding: 15px !important;
    transition: .3s ease;

}

#gtxcStripeCardElement:focus-within {
    border-color: #d4a041 !important;
    box-shadow: 0 0 0 4px rgba(212, 160, 65, .12);
}

/* ================= ERROR ================= */

#gtxcStripeCardErrors {
    color: #f87171 !important;
    margin: 14px 0 !important;
    font-size: 13px !important;
    line-height: 1.6;
}

/* ================= PAY BUTTON ================= */

#gtxcStripePayButton {
    width: 100%;
    height: 50px;
    border: none !important;
    border-radius: 5px !important;
    background: linear-gradient(135deg, #d4a041, #f0b44f) !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: .4px;
    cursor: pointer;
    transition: all .35s ease;
    margin-top: 12px !important;
    box-shadow: 0 15px 35px rgba(212, 160, 65, .2);
}

#gtxcStripePayButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(212, 160, 65, .28);
}

/* disabled */

#gtxcStripePayButton:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ================= FOOTER INFO ================= */

#gtxcStripeModal p {
    color: #9ca3af !important;
}

#gtxcStripeModal p img {
    vertical-align: middle;
    margin-right: 4px;
}

/* ================= TEST MODE BOX ================= */

#gtxcStripeModal p:last-child {
    margin-top: 20px !important;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    font-size: 12px !important;
    line-height: 1.8;
    text-align: center;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px) {

    #gtxcStripeModal {
        padding: 16px;
    }

    #gtxcStripeModal>div {
        padding: 22px !important;
        border-radius: 10px !important;
    }

    #gtxcModalTitle {
        font-size: 18px !important;
    }

    #gtxcModalPlanName {
        font-size: 14px;
    }

    #gtxcStripePayButton {
        font-size: 15px !important;
    }


    .gtxc-membership-required {
        padding: 20px;
    }


    .gtxc-membership-required h2 {
        font-size: 28px;
    }


}

@media(max-width:468px) {

    .gtxc-membership-required h2 {
        font-size: 24px;
    }

    .gtxc-membership-required ul {
        grid-template-columns: 1fr;
    }

}


/* /////////////////////////////////////////////////////////////////////////////////////////////////////// */



/* ================= MODAL OVERLAY ================= */

#gtxcBuyEntriesModal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(6px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* ================= MODAL BOX ================= */

#gtxcBuyEntriesModal>div {
    width: 100% !important;
    max-width: 560px !important;

    background: #0d0d0d !important;
    border: 1px solid #4B330F !important;
    border-radius: 10px !important;
    padding: 30px !important;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .65),
        0 0 0 1px rgba(212, 160, 65, .05);

    overflow: hidden;
}

#gtxcBuyEntriesModal>div::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(212, 160, 65, .06);
    pointer-events: none;
}

/* ================= CLOSE ================= */

#gtxcCloseBuyEntriesModal {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 42px;
    height: 42px;

    display: flex !important;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .05);
    color: #9ca3af !important;

    font-size: 24px !important;
    transition: .3s ease;
}


#gtxcCloseBuyEntriesModal:hover {
    background: #d4a041;
    color: #fff !important;
}

/* ================= TITLE ================= */

#gtxcBuyEntriesModal h3 {
    font-family: Playfair Display, serif;
    color: #fff !important;
    font-size: 32px !important;
    font-weight: 700;
    margin-bottom: 10px !important;
}

/* ================= SUBTITLE ================= */

#gtxcEntryPriceNote {
    color: #9ca3af !important;
    font-size: 15px !important;
    margin-bottom: 24px !important;
}

/* ================= LABEL ================= */

#gtxcBuyEntriesModal label {
    color: #fff !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}

/* ================= INPUT ================= */

#gtxcEntriesInput {
    width: 100% !important;
    height: 52px !important;

    background: #fff !important;
    border: 1px solid rgba(255, 255, 255, .15) !important;
    border-radius: 5px !important;

    padding: 0 15px !important;
    font-size: 16px !important;

    transition: .3s ease;
}

#gtxcEntriesInput:focus {
    outline: none;
    border-color: #d4a041 !important;
    box-shadow: 0 0 0 4px rgba(212, 160, 65, .12);
}

/* ================= CALC BOX ================= */

#gtxcEntryCalcResult {
    background: rgba(255, 255, 255, .04) !important;
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff !important;
    border-radius: 8px !important;
    padding: 15px !important;
}

#gtxcCalcTotal {
    color: #d4a041;
}

#gtxcCalcEntries {
    color: #d4a041;
}

/* ================= STRIPE FIELD ================= */

#gtxcBuyEntriesCardElement {
    background: #fff !important;
    border: 1px solid rgba(255, 255, 255, .15) !important;
    border-radius: 5px !important;
    padding: 15px !important;
    transition: .3s ease;
}

#gtxcBuyEntriesCardElement:focus-within {
    border-color: #d4a041 !important;
    box-shadow: 0 0 0 4px rgba(212, 160, 65, .12);
}

/* ================= ERROR ================= */

#gtxcBuyEntriesCardErrors {
    color: #f87171 !important;
    font-size: 13px !important;
    margin-top: 12px !important;
}

/* ================= BUTTON ================= */

#gtxcBuyEntriesPayBtn {
    width: 100% !important;
    height: 54px !important;

    border: none !important;
    border-radius: 5px !important;

    background: linear-gradient(135deg,
            #d4a041,
            #f0b44f) !important;

    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;

    cursor: pointer;
    transition: .35s ease;

    margin-top: 12px !important;

    box-shadow:
        0 15px 35px rgba(212, 160, 65, .20);
}

#gtxcBuyEntriesPayBtn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 45px rgba(212, 160, 65, .28);
}

/* ================= FOOTER ================= */

#gtxcBuyEntriesModal p:last-child {
    margin-top: 20px !important;
    padding-top: 18px !important;
    border-top: 1px solid rgba(255, 255, 255, .06);

    color: #9ca3af !important;
    font-size: 12px !important;
    text-align: center;
}

/* ================= MOBILE ================= */

@media (max-width:768px) {

    #gtxcBuyEntriesModal {
        padding: 16px;
    }

    #gtxcBuyEntriesModal>div {
        padding: 22px !important;
    }

    #gtxcBuyEntriesModal h3 {
        font-size: 24px !important;
    }
}