.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);
    }
}