* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Interphases', sans-serif !important;
}

.loader-login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000cc;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-login {
    border: 6px solid #3498db;
    border-top: 6px solid #ccc;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

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

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

.item_disable {
    opacity: 0.7;
    pointer-events: none;
}