.sunpics_back_loader{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(58 58 58 / 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    z-index: 999999;
}

.sunpics_back_loader .loader-message {
    font-size: 20px;
    color: var(--sunWhite);
    font-weight: 600;
}

.sunpics_back_loader .loader-progress {
    margin-top: 25px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

.sunpics_inner_loader {
    width: 75px;
    height: 75px;
    border: 3px solid transparent;
    border-top-color: var(--wp-admin-theme-color, var(--sunDefault));
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.sunpics_inner_loader_small {
    width: 30px !important;
    height: 30px !important;
}

.sunpics_inner_loader_small::before {
    content: none !important;
}

.sunpics_inner_loader::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid transparent;
    border-top-color: #fff;
    border-radius: 50%;
    -webkit-animation: spin 6s linear infinite;
    animation: spin 6s linear infinite;
    opacity: 1;
}

.sunpics_inner_loader::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid transparent;
    border-top-color: #364055;
    border-radius: 50%;
    -webkit-animation: spin 5s linear infinite;
    animation: spin 5s linear infinite;
    opacity: 1;
}

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

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