.global-loader--hide {
    display: none !important;
    z-index: -1 !important;
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    border: 3px solid #f3f3f3;  /* Light grey border */
    border-top: 3px solid #3498db;  /* Blue top border */
    border-radius: 50%;
    /*width: 1em;*/
    /*height: 1em;*/
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

/* Animation for the spinner */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.skip {
    min-width: 200px;
    position: fixed;
    top: 50px;
    left: 20px;
    text-align: center;
    padding: 13px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    text-shadow: rgb(39, 39, 45) 0 0;
    opacity: 0;
    pointer-events: none;
    z-index: 2147483647;
    font-family: Arial, Helvetica, sans-serif;
    direction: ltr;
    transition: top 0.22s ease 0s;
}