.loader-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.308);
}
.loader {
    width: 3rem;
    height: 3rem;
    border: 6px solid rgba(255,255,255,0.3);
    border-top: 6px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    background: transparent;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


.loading-wrapper {
    z-index: 9999;
}

.spinner-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
}

.spinner-border {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 1.9s linear infinite;
    border-width: 4px;
}

#loading-content {
    width: 120px;
    height: 120px;
    animation-duration: 1.6s;
}

#loading-content1 {
    width: 90px;
    height: 90px;
    animation-duration: 2.1s;
    animation-direction: reverse;
}

#loading-content2 {
    width: 60px;
    height: 60px;
    animation-duration: 2.4s;
}

.contact-loader {
    width: 1rem;
    height: 1rem;
}

@keyframes rotate {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}