@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300;400;500;600;700&display=swap');
@font-face {
    font-family: Avenir;
    src: url("../fonts/Avenir LT Std 35 Light.otf") format("opentype");
}

:root {
    --primary-font: Avenir;
    --secondary-font: "Cormorant SC", serif;
    --font16: 16px;
    --primary-color: #152C2A;
    --secondary-color: #FEDA75;
    --text-color: #1E1E1E;
    --text-color-light:rgb(75, 75, 75);
    --accent-color: #FFD700;
    --dark-link-color: #005092;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: var(--primary-font); */
}

body {
    position: relative;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

.navbar-container {
    margin: 0;
    padding: 5px;
    display: flex;
    flex-direction: row;
    background-color: var(--primary-color);
}

.navbar-menu {
    width: 80%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navbar-menu a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--primary-font);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.sidebar-openner-container {
    width: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.open-side-bar svg, .close-side-bar svg {
    color: #ffffff;
    width: 32px;
    height: auto;
    cursor: pointer;
}

.close-side-bar {
    display: none;
}

.navbar-logo {
    padding: 0 0 0 50px;
}

.navbar-logo img {
    width: 180px;
    height: auto;
}

.sidebar-container {
    z-index: 99;
    position: absolute;
    top: 80px;
    left: -220px;
    display: block;
    background-color: #ffffff;
    width: 200px;
    height: calc(100vh - 80px);
    /* padding: 8px; */
    /* box-shadow: 2px 2px 10px #dbdbdb; */
    border: 1px solid #d7d7d7;
}

.sidebar-menus {
    /* background-color: #FEDA75; */
}

.sidebar-menus .sidebar-menus-list {
    list-style: none;
    padding: 14px 20px;
    margin: 5px auto;
    background-color: #ffffff;
    border-radius: 4px;
    /* box-shadow: 2px 2px 5px #dbdbdb; */
    cursor: pointer;
    font-family: var(--primary-font);
    font-size: var(--font16);
}

.sidebar-menus .sidebar-menus-list a {
    text-decoration: none;
    color: var(--text-color);
    /* transition: all 0.2s linear; */
}

/* .sidebar-menus .sidebar-menus-list:hover a {
    transform: scale(1.02);
} */

.sidebar-dropdown {
    position: relative;
}

.sidebar-dropdown a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

.sidebar-dropdown-menu {
    position: absolute;
    width: 185px;
    /* display: none; */
    top: 0;
    right: -185px;
    list-style: none;
    background-color: #ffffff;
    /* box-shadow: 2px 2px 10px #dbdbdb; */
    border: 1px solid #d7d7d7;
    display: none;
}

.dropdown-down-arrow {
    display: none;
}

.sidebar-dropdown:hover .sidebar-dropdown-menu, .sidebar-dropdown:hover .dropdown-down-arrow {
    display: block;
}

.sidebar-dropdown:hover .dropdown-right-arrow {
    display: none;
}

.dropdown-right-arrow {
    display: block;
}

.sidebar-dropdown-menu li {
    padding: 10px 14px;
    margin: 5px auto;
    background-color: #ffffff;
    border-radius: 4px;
    /* box-shadow: 2px 2px 5px #bababa; */
    cursor: pointer;
    border-bottom: 1px solid transparent;
}

.sidebar-dropdown-menu li:hover {
    border-bottom: 1px solid #d7d7d7;
}
.sidebar-dropdown-menu li a {
    transition: all 0.2s linear;
}
.sidebar-dropdown-menu li:hover a {
    transform: scale(1.02);
}

.input-correct {
    outline-style: solid !important;
    outline-color: green !important;
    outline-width: 1px !important;
    box-shadow: 0 0 5px green;
}

.input-error {
    outline-style: solid !important;
    outline-color: red !important;
    outline-width: 1px !important;
    box-shadow: 0 0 5px red;
}

.msg-container {
    width: auto;
    height: 15px;
}

#correct-msg {
    display: none;
    font-family: var(--primary-font);
    font-size: 14px;
    color: green;
    margin: 5px 0;
}

#error-msg {
    display: none;
    font-family: var(--primary-font);
    font-size: 14px;
    color: red;
    margin: 5px 0;
}

.disable-btn {
    opacity: 0.7;
    cursor: not-allowed !important;
}

.resend-otp {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--primary-font);
    font-size: 14px;
}

.grey-color {
    color: #838383 !important;
    cursor: not-allowed;
    font-size: 13px !important;
}

.dark-link-color {
    color: var(--dark-link-color) !important;
    cursor: pointer;
    font-weight: 600 !important;
    font-size: 13px !important;
}

.resend-otp svg {
    width: 14px;
    color: #838383;
    margin: 0 0 0 3px;
}

.form-mandatory-mark {
    color: #ff0000;
}

#count-down-timer {
    padding: 0 0 0 6px;
}

@keyframes rotateInfinite {
    from {
        transform: rotate(0deg);
    }
    
    to {
        transform: rotate(-360deg);
    }
}

.rotate-arrow-infinite {
    animation-name: rotateInfinite;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}




/* html{
font-family: Roboto, Arial, Helvetica, sans-serif;
padding:0;
margin:0;
color:white;
}

*{
box-sizing: border-box;
} */

/* body{
background: #232526;
background: -webkit-linear-gradient(to right, #414345, #232526); 
background: linear-gradient(to right, #414345, #232526);

} */

.link-plain,
.link-plain:hover,
.link-plain:active,
.link-plain:visited {
    text-decoration: none;
}

.link-plain-f,
.link-plain-f:hover,
.link-plain-f:active,
.link-plain-f:focus,
.link-plain-f:visited {
    color: initial;
    text-decoration: none !important;
}

.div-center {
    display: inline-block;
    width: 100%;
    text-align: center;
}
.div-left {
    display: inline-block;
    width: 100%;
    text-align: left;
    padding: 10px 0 0px 0;
}
#va_container {
    position: relative;
    width: 100%;
    margin: auto;
}

.va-thumbnail {
    border-radius: 5px;
    border: 0px;
    max-width: 100%;
    box-shadow: 2px 2px 12px #808080;
}

.va-title {
    margin-top: 0px;
    margin-bottom: 10px;
    font-weight: 700;
}

.va-carrousel-flexbox {
    padding: 0 10px;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.va-carrousel-flexbox .va-card {
    flex: 0 0 auto;
    padding-left: 15px;
}

.va-carrousel-flexbox .va-card:last-child {
    margin-right: 15px;
}

.va-carrousel-flexbox .va-card:last-child::after {
    content: ' ';
    display: inline-block;
}

.va-card {
    margin-top: 5px;
    position: relative;
    display: flex;
    align-items: center;
    width: 100px;
    cursor: pointer;
    user-select: none;
    outline: none;
    overflow: hidden;
}

.banner-ribbon {
    position: absolute;
    top: 34px;
    right: -30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 22px;
    background-color: #005092;
    font-family: var(--primary-font);
    font-size: 14px;
    color: #ffffff;
    transform: rotate(45deg);
    box-shadow: 0 0 10px #000000;
}

.va-card:hover {
    user-select: none;
    outline: none;
}

.va-card a {
    display: block;
}

@media (min-width: 768px) {
    .va-card {
        width: 400px;
        height: 250px;
    }
}

.va-carrousel,
.va-carrousel-flexbox {
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.va-carrousel::-webkit-scrollbar,
.va-carrousel-flexbox::-webkit-scrollbar {
    display: none;
}

.va-carrousel-title {
    display: inline-block;

    color: white;
    font-weight: 700;
    padding-bottom: 8px;

    margin-bottom: 18px;
}

.va-title {
    margin-top: 8px;
    font-size: 11px;
    max-height: 3em;
    overflow: hidden;
    color: var(--text-color);
    font-weight: 700;
}

@media (min-width: 768px) {
    .va-title {
        font-size: 13px;
    }
}

.va-start-from {
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-color);
}

.va-points {
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    color: white;
}

.deals-paddle {
    height: 24px;
    width: 24px;
    color: white;
    background-color: #0000005c;
    border-radius: 50%;
    border: 0px solid;
    margin: auto;
    position: absolute;

    display: flex;
    justify-content: center;
    align-items: center;
    cursor:pointer;
}


.deals-paddle svg {
    width: 10px;
}

.deals-paddle:focus {
    outline: none;
}

.deals-paddle:active {
    border-style: solid;
    outline: none;
    user-select: none;
}

@media (min-width: 768px) {
    .other-game-button {
        width: 300px;
    }
}

.deals-scroll-left {
    top: 0;
    left: -6px;
    bottom: 0;
}

.deals-scroll-right {
    top: 0;
    bottom: 0;
    right: -6px;
}

.va-carrousel-section {
    font-family: "Roboto";
    padding: 0px;
    position: relative;
}


















/* Desktop CSS */
@media screen and (min-width: 769px) {
    .container1 {
        width: 100%;
        margin: 0;
        padding: 10px;
        display: flex;
        background-color: #ffffff;
    }
    .container-flex-column {
        width: 100%;
        margin: 0;
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        background-color: #f0f0f0;
    }

    .inner-container-flex-column {
        width: 100%;
        padding: 30px;
        background-color: #ffffff;
        border-radius: 4px;
    }

    .va-carrousel-section {
        /* padding-left: 15px;
        padding-right: 15px; */
    }

    .va-whitewrap {
        /* background-color: white; */
        padding-top: 15px;
        margin-top: 15px;
    }

    .va-seeall {
        display: block;
        font-size: 18px;
        font-weight: 700;
        border-top: 1px solid #DDDDDD;
        text-align: center;
        padding: 10px;
    }


    .event-details-container {
        padding: 25px;
        background-color: #e4e4e4;
    }

    .register-sticky-bottom-box{
        width: 100%;
        position: fixed;
        display: flex;
        justify-content: space-between;
        align-items: center;
        left: 0;
        bottom: 0;
        /* padding: 10px 15px; */
        background-color: #ffffff;
    }

    .sticky-event-pricing-h2 {
        padding: 0 0 0 10px;
    }

    .sticky-event-register-btn {
        padding: 15px 15px;
        background-color: var(--primary-color);
        color: #ffffff;
        text-decoration: none;
        font-family: var(--primary-font);
    }

    .event-banner-container {
        background-color: #ffffff;
        border-radius: 35px 35px 0 0;
    }

    .event-banner-container img {
        width: 100%;
        height: 400px;
        border-radius: 35px 35px 0 0;
    }

    .event-about-container {
        padding: 35px;
        background-color: #ffffff;
        border-radius: 0 0 35px 35px;
    }

    .event-about-container2 {
        margin: 20px 0 0 0;
        /* padding: 35px; */
        /* background-color: #ffffff; */
        border-radius: 35px;
        display: flex;

    }
    /* .event-about-container2 {
        margin: 20px 0 0 0;
        padding: 35px;
        background-color: #ffffff;
        border-radius: 35px;
    } */

    .event-about {
        padding: 8px 0 25px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        border-bottom: 2px solid #eeeeee;
    }

    .event-about-box-1 {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .event-about-box-2 {
        width: 50%;
        display: flex;
        /* flex-direction: row;
        justify-content: flex-end;
        align-items: center; */
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
    }

    .event-register-btn {
        font-family: var(--primary-font);
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
        color: var(--primary-color);
        border: 1px solid var(--primary-color);
        padding: 10px 25px;
        margin: -45px 0 25px 0;
        border-radius: 25px;
        transition: all 0.2s linear;
    }

    .event-register-btn:hover {
        color: #ffffff;
        background-color: var(--primary-color);
    }

    .event-date-time-p {
        font-family: var(--primary-font);
        font-size: 16px;
        color: #838383;
        font-weight: 600;
        display: flex;
        align-items: center;
        padding: 5px 0 0 0;
    }

    .event-location-p {
        font-family: var(--primary-font);
        font-size: 16px;
        color: #838383;
        font-weight: 600;
        display: flex;
        align-items: center;
        padding: 5px 0 0 0;
    }

    .venue-update-soon {
        font-size: 12px;
        font-weight: 400;
        color: var(--dark-link-color);
        padding: 0 0 0 5px;
    }

    .event-location-map-link {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
        color: var(--dark-link-color);
        padding: 5px 15px;
        border: 1px solid var(--dark-link-color);
        border-radius: 25px;
        margin: 0 0 0 8px;
        transition: all 0.2s linear;
    }

    .event-location-map-link svg {
        width: 18px;
        height: 18px;
        margin: -1px 0 0 5px;
    }

    .event-location-map-link:hover {
        color: #ffffff;
        background-color: var(--dark-link-color);
    }

    .event-pricing-h2 {
        font-family: var(--primary-font);
        font-size: 36px;
        color: var(--primary-color);
        /* margin: -25px; */
    }

    .event-pricing-mrp {
        font-family: var(--primary-font);
        font-size: 22px;
        color: #ff0000;
        text-decoration: line-through;
    }

    .event-pricing-sale-price {
        /* margin: 0 0 0 -5px;
        font-family: var(--primary-font);
        font-size: 18px; */
        color: #004a00;
    }
    .event-pricing-percentage-off {
        margin: 0 0 0 -5px;
        font-family: var(--primary-font);
        font-size: 18px;
        color: #009300;
    }

    .event-about-text-container {
        padding: 25px 0 0 0;
    }

    .event-about-text-container2 {
        width: 50%;
        padding: 35px;
        background-color: #ffffff;
        /* margin: 0 10px 0 10px; */
        border-radius: 35px;
    }

    .tr-border {
        border-radius: 35px 35px 0 0;
    }

    .ml-10 {
        margin-left: 10px;
    }

    .mr-10 {
        margin-right: 10px;
    }

    .event-about-h3 {
        font-family: var(--primary-font);
        color: var(--text-color);
        font-size: 20px;
        margin: 0 0 10px 0;
    }

    .event-about-p {
        font-family: var(--primary-font);
        color: var(--text-color-light);
        font-size: 16px;
        font-weight: 400;
    }

    .jc-start {
        justify-content: flex-start;
    }

    .heading-1 {
        font-family: var(--primary-font);
        font-size: 32px;
        color: var(--text-color);
        font-weight: 900;
    }

    .heading-3 {
        font-family: var(--primary-font);
        font-size: 26px;
        color: var(--text-color);
        font-weight: 600;
    }

    .heading-4 {
        font-family: var(--primary-font);
        font-size: 19px;
        color: var(--text-color);        
    }

    .left-container {
        width: 50%;
        min-height: 650px;
        /* background-repeat: no-repeat;
        background-position: center;
        background-image: url("../../assets/img/Artist Login Banner.webp");
        background-color: #ffffff; */
        border-radius: 25px;
        padding: 0 15px 0 0;
    }

    .register-page {
        background-repeat: no-repeat;
        /* background-attachment: fixed; */
        background-size: cover;
        background-position: center;
        background-image: url("../../assets/img/Artist Registration Banner_result.webp");
        background-color: #ffffff;
    }
    
    .login-page {
        background-repeat: no-repeat;
        /* background-attachment: fixed; */
        background-size: cover;
        background-position: center;
        background-image: url("../../assets/img/Artist-Login-Banner_result.webp");
        background-color: #ffffff;
    }

    .right-container {
        width: 50%;
        padding: 100px 0 0 0;
        border-radius: 25px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        background-color: #ffffff;
    }

    .inner-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 50%;
    }

    .inner-container form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .heading-2 {
        font-family: var(--secondary-font);
        font-size: 40px;
        color: var(--text-color);
    }

    .para-1 {
        font-family: var(--primary-font);
        font-size: 15px;
        color: var(--text-color-light);
    }

    /* Login Page CSS */
    /* .login-img {
        width: auto;

    } */

    .login-form {
        width: 100%;
        padding: 25px 0;
        margin: 15px 0;
    }

    .login-form label {
        font-family: var(--primary-font);
        font-weight: 500;
        font-size: var(--font15);
        color: var(--text-color-light);
        margin: 0 0 5px 0;
    }

    .login-form input, .login-form select {
        width: 100%;
        font-family: var(--primary-font);
        font-weight: 500;
        font-size: var(--font15);
        color: var(--text-color-light);
        padding: 10px 10px;
        border-radius: 1px;
        outline: none;
        border: 0;
        background-color: #f8f5ff;
    }

    #email, .inputs  {
        margin: 0 0 25px 0;
    }

    .remember-forget-container {
        margin: 10px auto;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .remember-me {
        /* width: 100%; */
        /* height: 10px; */
        display: flex;
        flex-direction: row;
        justify-content: start;
        align-items: center;
    }

    .remember-me input {
        width: 12px;
        color: #838383;
    }

    .remember-me label {
        /* width: 1px; */
        margin: 0;
        padding: 0 0 0 5px;
        font-size: 14px;
        color: #838383;
    }

    .forget-password a {
        font-family: var(--primary-font);
        font-size: 14px;
        text-decoration: none;
        color: var(--dark-link-color);
    }

    .signin-btn {
        width: 100%;
        font-family: var(--primary-font);
        font-size: 16px;
        padding: 8px;
        margin: 20px auto;
        border-radius: 1px;
        outline: none;
        border: none;
        background-color: var(--primary-color) !important;
        color: #f8f5ff;
        cursor: pointer;
        transition: all 0.2s linear;
    }

    .signin-btn:hover {
        box-shadow: 0 0 5px var(--primary-color);
    }

    .inner-container p {
        font-family: var(--primary-font);
        font-size: 14px;
        color: var(--text-color);
    }

    .inner-container p a {
        text-decoration: none;
        color: var(--dark-link-color);
    }

    .form {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .form-field {
        display: flex;
        flex-direction: column;
        margin: 0 20px 20px 0;
    }

    .form-field label {
        font-family: var(--primary-font);
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 5px;
        color: var(--text-color);
    }
    
    .form-field input {
        font-family: var(--primary-font);
        padding: 15px 25px;
        font-size: 17px;
        color: var(--primary-color);
        border-radius: 25px;
        outline: none;
        border: none;
        background-color: #f8f5ff;
    }

    .form-field select {
        font-family: var(--primary-font);
        padding: 15px 25px;
        font-size: 17px;
        color: var(--primary-color);
        border-radius: 25px;
        outline: none;
        border: none;
        background-color: #f8f5ff;
    }

    .additional-person-container {
        display: flex;
    }

    .additional-person-container label {
        font-family: var(--primary-font);
        font-weight: 800;
        color: #797979;
        margin-top: 5px;
    }
    

    .sub-price-btn {
        font-family: var(--primary-font);
        font-weight: 800;
        color: #797979;
        margin-bottom: 5px;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-family: var(--primary-font);
        font-size: 17px;
        color: #ffffff;
        border-radius: 25px;
        outline: none;
        border: none;
        background-color: var(--primary-color);
    }

    .submit-btn:hover {
        cursor: pointer;
        background-color: #214340;
    }

    .review-details-p {
        font-family: var(--primary-font);
        color: #3c3c3c;
        font-size: 17px;
        padding: 2px 0;
    }

    .edit-btn svg {
        width: 18px;
    }
    
    .edit-btn {
        padding: 5px 0 0 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        font-size: 17px;
        font-family: var(--primary-font);
        text-decoration: none;
    }

    .underline-mb-10 {
        text-decoration: underline;
        margin-bottom: 20px;
    }

    .payment-h3 {
        width: 100%;
        text-align: center;
        font-size: 20px;
        font-family: var(--primary-font);
    }

    .coupon-form-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* background-color: #ffffff; */
    }

    .coupon-code-form {
        width: 50%;
        background-color: #ffffff;
        padding: 50px;
        margin: 25px 0 0 0;
        border-radius: 3px;
        border: 1px solid #d7d7d7;
        display: flex;
        flex-direction: column;
    }

    .coupon-code-form label {
        font-family: var(--primary-font);
        font-size: 16px;
        margin-bottom: 10px;
    }

    .coupon-code-form input {
        font-family: var(--primary-font);
        font-size: 18px;
        margin-bottom: 10px;
        padding: 5px;
        text-transform: uppercase;
        outline: none;
    }

    .coupon-code-form button {
        font-family: var(--primary-font);
        font-size: 16px;
        margin-bottom: 10px;
        padding: 5px 20px;
        outline: none;
        cursor: pointer;
        width: fit-content;
        background-color: transparent;
        color: var(--primary-color);
        border: 1px solid var(--primary-color);
        transition: all 0.2s linear;
    }

    .coupon-code-form button:hover {
        background-color: var(--primary-color);
        color: #ffffff;
    }

    .flex-row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 0 10px 0;
    }

    .fee-details-title {
        font-family: var(--primary-font);
        font-weight: 600;
        font-size: 17px;
        color:rgb(37, 37, 37);
    }

    .fee-details-desc {
        font-family: var(--primary-font);
        /* font-weight: 600; */
        font-size: 17px;
        color:rgb(103, 103, 103);
    }

    .discount-span {
        color: red;
        font-size: 15px;
    }

    .green {
        color: green;
        font-weight: 600;
    }

    .mt-10 {
        margin-top: 10px;
    }
    
    .ui-state-error {
        color: red !important;
    }

    .shine {
        background: #222 -webkit-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff)) 0 0 no-repeat;
        -webkit-background-size: 150px;
        position: absolute;
        top: 22px;
        left: 92px;
        display: flex;
        font-size: 12px;
        margin: 0 auto;
        margin-bottom: 1em;
        font-weight: bold;
        color: red;
        -webkit-background-clip: text;
        -webkit-animation-name: shine;
        -webkit-animation-duration: 2s;
        -webkit-animation-iteration-count: infinite;
        text-shadow: 0 0px 0px rgba(255, 255, 255, 0.5);
    }

    @-webkit-keyframes shine {
        0%, 10% {
            background-position: -1000px;
        }
        20% {
            background-position: top left;
        }
        90% {
            background-position: top right;
        }
        100% {
            background-position: 1000px;
        }
    }
    
    #additional-person-div1, #additional-person-div2 {
        display: none;
    }

    #username-error {
        margin-top: -15px !important;
        margin-bottom: 16px;
    }
    
    #fullname-error {
        margin-top: -15px !important;
        margin-bottom: 16px;
    }
    
    #email-error {
        margin-top: -15px !important;
        margin-bottom: 16px;
    }
    
    #dob-error {
        margin-top: -15px !important;
        margin-bottom: 16px;
    }
    
    #phone-error {
        margin-top: -15px !important;
        margin-bottom: 16px;
    }
    
    #password-error {
        margin-top: -15px !important;
        margin-bottom: 16px;
    }
    
    .modal-bg {
        display: none;
        position: fixed;
        top:0;
        left:0;
        width: 100vw;
        height: 100vh;
        background-color: #00000051;
        backdrop-filter: blur(5px);
        z-index: 9999;
    }

    .event-register-modal {
        background-color: #ffffff;
        width: 50%;
        height: auto;
        padding: 30px;
        border-radius: 12px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .event-register-modal h4 {
        font-family: var(--primary-font);
        font-size: 20px;
        padding: 0 0 12px 0;
    }

    .event-register-modal svg {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 20px;
        height: 20px;
        color: #9a9a9a;
        cursor: pointer;
    }

    .modal-content-container {
        margin: 10px 0 0 0;
    }

    .modal-content-list {
        display: flex;
        justify-content: space-between;
        margin: 0 0 10px 0;
    }

    .modal-content-list p {
        width: 100%;
        border: 1px solid #c8c8c8ff;
        padding: 15px;
        font-family: var(--primary-font);
        font-weight: 600;
    }
    .modal-content-list a {
        width: 100%;
        text-align: center;
        border: 1px solid #c8c8c8ff;
        padding: 15px;
        font-family: var(--primary-font);
        /* font-weight: 600; */
        text-decoration: none;
        background-color: var(--primary-color);
        color: #ffffff;
        transition: all 0.2s linear;
    }

    .modal-content-list a:hover {
        /* background-color: var(--primary-color);
        color: #ffffff; */
        /* transform: scaleX(1.1) */
        box-shadow: 0 0 4px var(--primary-color);
    }

    .pay-now-h3 {
        display: flex;
        margin: 25px 0 0 0px;
        justify-content: center;
        align-items: center;
    }

    .cashfree-btn {
        margin: 15px 0 0 0px;
        display: flex;
        width: 50%;
        background-color: #1F074F;
        padding: 10px 0 10px 0;
        justify-content: center;
        align-items: center;
        font-family: var(--primary-font);
        color: #fff;
        font-size: 20px;
        font-weight: 800;
        border-radius: 4px;
        cursor: pointer;
        border: 2px solid #1F074F;
        transition: all 0.1s linear;
    }

    .cashfree-btn img {
        width: 130px;
        margin: 0 0 0 15px;
    }

    #cashfree-dark-logo {
        display: none;
    }

    .cashfree-btn:hover {
        background-color: #ffffff;
        padding: 10px 0 10px 0;
        justify-content: center;
        align-items: center;
        font-family: var(--primary-font);
        color: #1F074F;
        font-size: 20px;
        font-weight: 800;
        border-radius: 4px;
        cursor: pointer;
    }

    .cashfree-btn:hover #cashfree-dark-logo {
        display: block;
    }

    .cashfree-btn:hover #cashfree-light-logo {
        display: none;
    }

    .payment-confirmation-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }


    .payment-details-table {
        width: 40%;
        /* border: 1px solid #797979; */
        border-radius: 2px;
        text-align: left;
        border-spacing: 0;
        border-collapse: collapse;
    }
    
    .payment-details-table tr th, td {
        padding: 5px 15px;
        border: 1px solid #797979;
        font-family: var(--primary-font);
    }

    .payment-successfull-icon {
        color: #009d00;
        width: 150px;
        height: 150px;
    }

    .payment-pending-icon {
        color: #ff9b00;
        width: 150px;
        height: 150px;
    }

    .payment-failed-icon {
        color: #c50000ff;
        width: 150px;
        height: 150px;
    }


    /* WhatsApp Button */
    a{
        text-decoration:none;
    }
    .floating_btn {
        position: fixed;
        bottom: 80px;
        right: 30px;
        width: 70px;
        height: 70px;
        display: flex;
        flex-direction: column;
        align-items:center;
        justify-content:center;
        z-index: 1000;
    }

    @keyframes pulsing {
        to {
            box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
        }
    }

    .contact_icon {
        background-color: #42db87;
        color: #fff;
        width: 60px;
        height: 60px;
        font-size:30px;
        border-radius: 50px;
        text-align: center;
        box-shadow: 2px 2px 3px #999;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translatey(0px);
        animation: pulse 1.5s infinite;
        box-shadow: 0 0 0 0 #42db87;
        -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
        -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
        -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
        animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
        font-weight: normal;
        font-family: sans-serif;
        text-decoration: none !important;
        transition: all 300ms ease-in-out;
    }


    .text_icon {
        margin-top: 8px;
        color: #707070;
        font-size: 11px;
    }

    /* WhatsApp Button */

    .sub-light-text {
        color: #a3a3a3;
        font-size: 10px;
        font-weight: 500;
    }

    #banner-desktop {
        display: block;
    }

    #banner-mobile {
        display: none;
    }

    .partial-payment-details {
        padding: 10px;
        border: 1px solid #000000;
        background-color: #f6ff008a;
    }

    .partial-payment-label {
        font-family: var(--primary-font);
        cursor: pointer;
    }

    #part-pay-container {
        display: none;
    }
}



/* Mobile CSS Starts */
@media screen and (max-width: 769px) {

    #part-pay-container {
        display: none;
    }
    
    .partial-payment-details {
        padding: 10px;
        border: 1px solid #000000;
        background-color: #f6ff008a;
    }

    .partial-payment-label {
        font-family: var(--primary-font);
        cursor: pointer;
    }
    
    #banner-desktop {
        display: none;
    }

    #banner-mobile {
        display: block;
    }

    .navbar-logo {
        padding: 0 0 0 20px;
    }

    .navbar-menu {
        width: 80%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .navbar-menu a {
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: var(--primary-font);
        color: #ffffff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
    }

    .navbar-menu a svg {
        width: 20px;
        padding: 0 5px 0 0;
    }



    .container1 {
        width: 100%;
        margin: 0;
        padding: 10px;
        display: flex;
        flex-direction: column-reverse;
    }

    .container-flex-column {
        width: 100%;
        margin: 0;
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        background-color: #f0f0f0;
    }

    .inner-container-flex-column {
        width: 100%;
        padding: 15px;
        background-color: #ffffff;
        border-radius: 4px;
    }

    .va-carrousel-section {
        /* padding-left: 15px;
        padding-right: 15px; */
    }

    .va-whitewrap {
        /* background-color: white; */
        padding-top: 10px;
        margin-top: 0px;
    }

    .va-seeall {
        display: block;
        font-size: 18px;
        font-weight: 700;
        border-top: 1px solid #DDDDDD;
        text-align: center;
        padding: 10px;
    }

    
    .deals-paddle {
        display: none;
        /* height: 16px;
        width: 16px;
        color: white;
        background-color: #0000005c;
        border-radius: 50%;
        border: 0px solid;
        margin: auto;
        position: absolute;

        display: flex;
        justify-content: center;
        align-items: center;
        cursor:pointer; */
    }

    .va-card {
        display: flex;
        align-items: center;
        width: 100%;
        cursor: pointer;
        user-select: none;
        outline: none;
    }

    .va-carrousel-flexbox .va-card {
        flex: 0 0 auto;
        padding-left: 5px;
        padding-right: 5px;
        padding-top: 10px;

    }


    .deals-paddle svg {
        width: 8px;
    }


    .event-details-container {
        position: relative;
        padding: 15px;
        background-color: #e4e4e4;
    }

    .register-sticky-bottom-box{
        width: 100%;
        position: fixed;
        display: flex;
        justify-content: space-between;
        align-items: center;
        left: 0;
        bottom: 0;
        /* padding: 10px 15px; */
        background-color: #ffffff;
    }

    .sticky-event-pricing-h2 {
        padding: 0 0 0 10px;
    }

    .sticky-event-register-btn {
        padding: 15px 15px;
        background-color: var(--primary-color);
        color: #ffffff;
        text-decoration: none;
        font-family: var(--primary-font);
    }

    .event-banner-container {
        background-color: #ffffff;
        border-radius: 35px 35px 0 0;
    }

    .event-banner-container img {
        width: 100%;
        height: 200px;
        border-radius: 10px 10px 0 0;
    }

    .event-about-container {
        padding: 20px;
        background-color: #ffffff;
        border-radius: 0 0 10px 10px;
    }

    .event-about-container2 {
        margin: 20px 0 0 0;
        /* padding: 35px; */
        /* background-color: #ffffff; */
        border-radius: 35px;
        /* display: flex; */

    }
    /* .event-about-container2 {
        margin: 20px 0 0 0;
        padding: 35px;
        background-color: #ffffff;
        border-radius: 35px;
    } */

    .event-about {
        padding: 8px 0 25px 0;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        border-bottom: 2px solid #eeeeee;
    }

    .event-about-box-1 {
        /* width: 50%; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .event-about-box-2 {
        /* width: 50%; */
        display: flex;
        margin: 15px 0 0 0;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .event-register-btn {
        font-family: var(--primary-font);
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
        color: #ffffff;
        background-color: var(--primary-color);
        border: 1px solid var(--primary-color);
        padding: 8px 20px;
        margin: 15px 0 0 0;
        border-radius: 25px;
        transition: all 0.2s linear;
    }

    .event-register-btn:hover {
        color: var(--primary-color);
        background-color: transparent;
    }

    .event-date-time-p {
        font-family: var(--primary-font);
        font-size: 14px;
        color: #838383;
        font-weight: 600;
        display: flex;
        align-items: center;
        padding: 5px 0 0 0;
    }

    .event-date-time-p svg {
        width: 18px;
    }

    .event-location-p {
        font-family: var(--primary-font);
        font-size: 14px;
        color: #838383;
        font-weight: 600;
        display: flex;
        align-items: center;
        padding: 5px 0 0 0;
    }

    .venue-update-soon {
        font-size: 12px;
        font-weight: 400;
        color: var(--dark-link-color);
        padding: 0 0 0 5px;
    }

    .event-location-map-link {
        /* display: none; */
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
        color: var(--dark-link-color);
        padding: 5px 15px;
        border: 1px solid var(--dark-link-color);
        border-radius: 25px;
        margin: 0 0 0 8px;
        transition: all 0.2s linear;
    }

    .event-location-map-link:hover {
        color: #ffffff;
        background-color: var(--dark-link-color);
    }

    .event-pricing-h2 {
        font-family: var(--primary-font);
        font-size: 36px;
        color: var(--primary-color);
        /* margin: -25px; */
    }

    .event-pricing-mrp {
        font-family: var(--primary-font);
        font-size: 16px;
        color: #ff0000;
        text-decoration: line-through;
    }

    .event-pricing-sale-price {
        /* margin: 0 0 0 -5px;
        font-family: var(--primary-font);
        font-size: 18px; */
        font-size: 18px;
        color: #004a00;
    }
    .event-pricing-percentage-off {
        margin: 0 0 0 -5px;
        font-family: var(--primary-font);
        font-size: 18px;
        color: #009300;
    }

    .event-about-text-container {
        padding: 25px 0 0 0;
    }

    .event-about-text-container2 {
        width: 100%;
        overflow: scroll;
        padding: 20px;
        margin-bottom: 10px;
        background-color: #ffffff;
        /* margin: 0 10px 0 10px; */
        border-radius: 10px;
    }

    .tr-border {
        border-radius: 10px;
    }

    .mlm-10 {
        margin-left: 10px;
    }

    .mrm-10 {
        margin-right: 10px;
    }

    .event-about-h3 {
        font-family: var(--primary-font);
        color: var(--text-color);
        font-size: 20px;
        margin: 0 0 10px 0;
    }

    .event-about-p {
        font-family: var(--primary-font);
        color: var(--text-color-light);
        font-size: 16px;
        font-weight: 400;
    }

    .jc-start {
        justify-content: flex-start;
    }

    .heading-1 {
        font-family: var(--primary-font);
        font-size: 22px;
        color: var(--text-color);
        font-weight: 900;
    }

    .heading-3 {
        font-family: var(--primary-font);
        font-size: 22px;
        color: var(--text-color);
        font-weight: 600;
    }

    .heading-4 {
        position: relative;
        font-family: var(--primary-font);
        font-size: 16px;
        color: var(--text-color);        
    }

    .left-container {
        width: 100%;
        min-height: 450px;
        /* background-repeat: no-repeat; */
        /* background-attachment: fixed; */
        /* background-position: center; */
        /* background-image: url("../../assets/img/Artist Login Banner.webp"); */
        /* background-color: #ffffff; */
        border-radius: 25px;    
        padding: 0 15px 0 0;
    }

    .register-page {
        background-repeat: no-repeat;
        /* background-attachment: fixed; */
        background-size: cover;
        background-position: center;
        background-image: url("../../assets/img/Artist Registration Banner_result.webp");
        background-color: #ffffff;
    }
    
    .login-page {
        background-repeat: no-repeat;
        /* background-attachment: fixed; */
        background-size: cover;
        background-position: center;
        background-image: url("../../assets/img/Artist-Login-Banner_result.webp");
        background-color: #ffffff;
    }

    .right-container {
        width: 100%;
        padding: 40px 10px 40px 10px;
        border-radius: 25px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        background-color: #ffffff;
    }

    .inner-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 80%;
    }

    .inner-container form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .heading-2 {
        font-family: var(--secondary-font);
        font-size: 30px;
        color: var(--text-color);
    }

    .para-1 {
        font-family: var(--primary-font);
        font-size: 13px;
        color: var(--text-color-light);
        text-align: center;
    }

    /* Login Page CSS */
    /* .login-img {
        width: auto;

    } */

    .login-form {
        width: 100%;
        padding: 10px 0;
        /* margin: px 0; */
    }

    .login-form label {
        font-family: var(--primary-font);
        font-weight: 500;
        font-size: var(--font15);
        color: var(--text-color-light);
        margin: 0 0 5px 0;
    }

    .login-form input {
        width: 100%;
        font-family: var(--primary-font);
        font-weight: 500;
        font-size: var(--font15);
        color: var(--text-color-light);
        padding: 10px 10px;
        border-radius: 1px;
        outline: none;
        border: 0;
        background-color: #f8f5ff;
    }

    #email, .inputs {
        margin: 0 0 25px 0;
    }

    .remember-forget-container {
        margin: 10px auto;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .remember-me {
        /* width: 100%; */
        /* height: 10px; */
        display: flex;
        flex-direction: row;
        justify-content: start;
        align-items: center;
    }

    .remember-me input {
        width: 12px;
        color: #838383;
    }

    .remember-me label {
        /* width: 1px; */
        margin: 0;
        padding: 0 0 0 5px;
        font-size: 14px;
        color: #838383;
    }

    .forget-password a {
        font-family: var(--primary-font);
        font-size: 14px;
        text-decoration: none;
        color: var(--dark-link-color);
    }

    .signin-btn {
        width: 100%;
        font-family: var(--primary-font);
        font-size: 16px;
        padding: 8px;
        margin: 20px auto;
        border-radius: 1px;
        outline: none;
        border: none;
        background-color: var(--primary-color) !important;
        color: #f8f5ff;
        cursor: pointer;
        transition: all 0.2s linear;
    }

    .signin-btn:hover {
        box-shadow: 0 0 5px var(--primary-color);
    }

    .inner-container p {
        font-family: var(--primary-font);
        font-size: 14px;
        color: var(--text-color);
    }

    .inner-container p a {
        text-decoration: none;
        color: var(--dark-link-color);
    }

    .form {
        /* display: grid;
        grid-template-columns: 1fr 1fr 1fr; */
    }

    .form-field {
        display: flex;
        flex-direction: column;
        margin: 15px 0 15px 0;
    }

    .form-field label {
        font-family: var(--primary-font);
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
        color: var(--text-color);
    }
    
    .form-field input {
        font-family: var(--primary-font);
        padding: 10px 20px;
        font-size: 16px;
        color: var(--primary-color);
        border-radius: 25px;
        outline: none;
        border: none;
        background-color: #f8f5ff;
    }

    .form-field select {
        font-family: var(--primary-font);
        padding: 10px 20px;
        font-size: 16px;
        color: var(--primary-color);
        border-radius: 25px;
        outline: none;
        border: none;
        background-color: #f8f5ff;
    }
    
    .submit-btn {
        width: 100%;
        margin: 10px 0 0 0;
        padding: 10px 25px;
        font-family: var(--primary-font);
        font-size: 16px;
        color: #ffffff;
        border-radius: 25px;
        outline: none;
        border: none;
        background-color: var(--primary-color);
    }

    .submit-btn:hover {
        cursor: pointer;
        background-color: #214340;
    }


    .modal-bg {
        display: none;
        position: fixed;
        top:0;
        left:0;
        width: 100vw;
        height: 100vh;
        background-color: #00000051;
        backdrop-filter: blur(5px);
        z-index: 9999;
    }

    .event-register-modal {
        background-color: #ffffff;
        width: 90%;
        height: auto;
        padding: 20px;
        border-radius: 12px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .event-register-modal h4 {
        font-family: var(--primary-font);
        font-size: 20px;
        padding: 0 0 12px 0;
    }

    .event-register-modal svg {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 20px;
        height: 20px;
        color: #9a9a9a;
        cursor: pointer;
    }

    .modal-content-container {
        margin: 10px 0 0 0;
    }

    .modal-content-list {
        display: flex;
        justify-content: space-between;
        margin: 0 0 10px 0;
    }

    .modal-content-list p {
        width: 100%;
        border: 1px solid #c8c8c8ff;
        padding: 10px;
        font-family: var(--primary-font);
        font-weight: 600;
        font-size: 14px;
    }
    .modal-content-list a {
        width: 100%;
        text-align: center;
        border: 1px solid #c8c8c8ff;
        padding: 15px;
        font-family: var(--primary-font);
        /* font-weight: 600; */
        text-decoration: none;
        background-color: var(--primary-color);
        color: #ffffff;
        transition: all 0.2s linear;
    }

    .modal-content-list a:hover {
        /* background-color: var(--primary-color);
        color: #ffffff; */
        /* transform: scaleX(1.1) */
        box-shadow: 0 0 4px var(--primary-color);
    }

     /* WhatsApp Button */
    a{
        text-decoration:none;
    }
    .floating_btn {
        position: fixed;
        bottom: 80px;
        right: 30px;
        width: 70px;
        height: 70px;
        display: flex;
        flex-direction: column;
        align-items:center;
        justify-content:center;
        z-index: 1000;
    }

    @keyframes pulsing {
        to {
            box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
        }
    }

    .contact_icon {
        background-color: #42db87;
        color: #fff;
        width: 60px;
        height: 60px;
        font-size:30px;
        border-radius: 50px;
        text-align: center;
        box-shadow: 2px 2px 3px #999;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translatey(0px);
        animation: pulse 1.5s infinite;
        box-shadow: 0 0 0 0 #42db87;
        -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
        -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
        -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
        animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
        font-weight: normal;
        font-family: sans-serif;
        text-decoration: none !important;
        transition: all 300ms ease-in-out;
    }


    .text_icon {
        margin-top: 8px;
        color: #707070;
        font-size: 11px;
    }

    /* WhatsApp Button */

    .sub-price-btn {
        font-family: var(--primary-font);
        font-weight: 800;
        font-size: 14px;
        color: #797979;
        margin-bottom: 5px;
    }

    .review-details-p {
        font-family: var(--primary-font);
        color: #3c3c3c;
        font-size: 16px;
        padding: 2px 0;
    }

    .edit-btn svg {
        width: 18px;
    }
    
    .edit-btn {
        padding: 5px 0 0 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        font-size: 17px;
        font-family: var(--primary-font);
        text-decoration: none;
    }

        .payment-h3 {
        width: 100%;
        text-align: center;
        font-size: 20px;
        font-family: var(--primary-font);
    }

    .coupon-form-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* background-color: #ffffff; */
    }

    .coupon-code-form {
        width: 100%;
        background-color: #ffffff;
        padding: 20px 10px 10px 10px;
        margin: 20px 0 30px 0;
        border-radius: 3px;
        border: 1px solid #d7d7d7;
        display: flex;
        flex-direction: column;
    }

    .coupon-code-form label {
        font-family: var(--primary-font);
        font-size: 16px;
        margin-bottom: 10px;
    }

    .coupon-code-form input {
        font-family: var(--primary-font);
        font-size: 18px;
        margin-bottom: 10px;
        padding: 5px;
        text-transform: uppercase;
        outline: none;
    }

    .coupon-code-form button {
        font-family: var(--primary-font);
        font-size: 16px;
        margin-bottom: 10px;
        padding: 5px 20px;
        outline: none;
        cursor: pointer;
        width: fit-content;
        background-color: transparent;
        color: var(--primary-color);
        border: 1px solid var(--primary-color);
        transition: all 0.2s linear;
    }

    .coupon-code-form button:hover {
        background-color: var(--primary-color);
        color: #ffffff;
    }

    .flex-row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 0 10px 0;
    }

    .fee-details-title {
        font-family: var(--primary-font);
        font-weight: 600;
        font-size: 15px;
        color:rgb(37, 37, 37);
    }

    .fee-details-desc {
        font-family: var(--primary-font);
        /* font-weight: 600; */
        font-size: 15px;
        color:rgb(103, 103, 103);
    }

    .cashfree-btn {
        margin: 15px 0 0 0px;
        display: flex;
        width: 100%;
        background-color: #1F074F;
        padding: 10px 0 10px 0;
        justify-content: center;
        align-items: center;
        font-family: var(--primary-font);
        color: #fff;
        font-size: 20px;
        font-weight: 800;
        border-radius: 4px;
        cursor: pointer;
        border: 2px solid #1F074F;
        transition: all 0.1s linear;
    }

    .cashfree-btn img {
        width: 130px;
        margin: 0 0 0 15px;
    }

    #cashfree-dark-logo {
        display: none;
    }

    .cashfree-btn:hover {
        background-color: #ffffff;
        padding: 10px 0 10px 0;
        justify-content: center;
        align-items: center;
        font-family: var(--primary-font);
        color: #1F074F;
        font-size: 20px;
        font-weight: 800;
        border-radius: 4px;
        cursor: pointer;
    }

    .cashfree-btn:hover #cashfree-dark-logo {
        display: block;
    }

    .cashfree-btn:hover #cashfree-light-logo {
        display: none;
    }

    .payment-confirmation-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }


    .payment-details-table {
        width: 100%;
        /* border: 1px solid #797979; */
        border-radius: 2px;
        text-align: left;
        border-spacing: 0;
        border-collapse: collapse;
    }
    
    .payment-details-table tr th, td {
        padding: 5px 15px;
        border: 1px solid #797979;
        font-family: var(--primary-font);
    }

    .payment-successfull-icon {
        color: #009d00;
        width: 150px;
        height: 150px;
    }

    .payment-pending-icon {
        color: #ff9b00;
        width: 150px;
        height: 150px;
    }

    .payment-failed-icon {
        color: #c50000ff;
        width: 150px;
        height: 150px;
    }
}