/* Styles for the loading overlay and spinner */
#loadingOverlay2 {
    display: flex; /* Use Flexbox for centering */
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 9999; /* Ensures it's on top of all content */
    /* Initially hidden. Use JavaScript to show/hide. */
    display: none; 
}

/* Spinner container */
.multi-circle-spinner {
    display: inline-block;
    position: relative;
    width: 80px; 
    height: 80px;
}

/* Base style for all spinner circles */
.multi-circle-spinner div {
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    height: 100%;
    border: 5px solid transparent;
    border-radius: 50%;
    animation: multi-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

/* Specific colors and animation delays for each circle */
.multi-circle-spinner div:nth-child(1) {
    border-color: #f6e58d transparent transparent transparent;
    animation-delay: -0.45s;
}
.multi-circle-spinner div:nth-child(2) {
    border-color: #ff7979 transparent transparent transparent;
    animation-delay: -0.3s;
}
.multi-circle-spinner div:nth-child(3) {
    border-color: #6a89cc transparent transparent transparent;
    animation-delay: -0.15s;
}
.multi-circle-spinner div:nth-child(4) {
    border-color: #badc58 transparent transparent transparent;
    animation-delay: 0s;
}

/* Keyframes for the spinning animation */
@keyframes multi-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loadingOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    text-align: center;
}


#spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}



.gpass_pic_div{
    background-color: grey;
    width: 100%;
}

.gpass_pic_div > div{
    height:40px;
    width: 100%;
    align-content: center;
}


.gpass_pic_img{
    display: block;
    width:100%;
    margin: auto;
    object-fit: contain;
}

.csr-pointer{
    cursor: pointer;
}

.txt-light{
    font-weight: lighter;
}

.btn-std-full{
    width: 100%;
}

.btn-std{
    width: 120px;
    //text-transform: uppercase;
    //letter-spacing: 3px;
}

.btn-std-large{
    width: 160px;
    //text-transform: uppercase;
    //letter-spacing: 3px;
}

.btn-std-larger{
    width: 200px;
    //text-transform: uppercase;
    //letter-spacing: 3px;
}


@media only screen and (min-width: 768px) {
    .my-flex{
        display:flex;
        justify-content: space-between;
    }
    .my-btn {
        width: 120px;
    }
    .my-btn2 {
        width:auto;
    }
    .display-full{
        display: block;
    }
    .display-mobile{
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .my-btn, .my-btn2 {
        display: block;
        width: 100%;
        margin-top: 0px;
        margin-bottom: 20px;
    }
    .display-full{
        display: none;
    }
    .display-mobile{
        display: block;
    }
}