body {
    font-size: .875rem;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);

}

.vue-feather {
    width: 16px;
    height: 18px;
    vertical-align: text-bottom;
    margin-right: 5px;
}



/* === СПИННЕР === */

.loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    /*z-index: 9999; багает*/
    z-index: 3;
}

.loader--fullscreen {
    position: fixed;
}

.loader__spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-container {
    position: relative;
}

.loader__text {
    position: absolute;
    top: calc(50% + 40px);
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
}

.loader__dot {
    animation: loader__blink 1.4s infinite both;
}

.loader__dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loader__dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loader__blink {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    40% {
        transform: translateY(-5px);
        opacity: 0.5;
    }
}

.page-loader__progress {
    height: 100%;
    width: 100%;
}

.page-loader__bar {
    height: 100%;
    width: 0%;
    background-color: #1DB954;
    transition: width 0.2s ease;
}

/* === КОНЕЦ СПИННЕР === */


/* === СТИЛИ ДЛЯ СТРАНИЦЫ АВТОРИЗАЦИИ === */

.auth-error {
    display: none; /* Скрываем по умолчанию */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 1000;
}

.auth-error h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.auth-error p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.auth-error .btn {
    font-size: 1rem;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
}

.auth-error .btn:hover {
    background-color: #0056b3;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}