.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    /* Светлая часть */
    border-top: 4px solid white;
    /* Цвет верхней части */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

/* Анимация вращения */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.adminjs_MessageBox {
    position: fixed;
}