.w-blocker-spinner {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 5000;
    line-height: 600px;
    vertical-align: middle;
    text-align: center;
}

.w-blocker-spinner .text {
    position: absolute;
    margin-top: 2rem;
    color: white;
    font-family: 'Dosis';
    text-transform: uppercase;
    text-align: center;
    left: 0;
    right: 0;
    font-size: 2rem;
    font-weight: 600;
    user-select: none;
}

.w-blocker-spinner .loader {
    display: inline-block;
    border: 14px solid rgba(255, 255, 255, 0.2); /* Light grey */
    border-top: 14px solid rgba(255, 255, 255, 0.5); /* Blue */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
}

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