

/* Start:/local/components/laparet/vue.wrapper/templates/.default/style.css?17721364571356*/
.vue-app-container {
    position: relative;
}

.vue-app-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    color: #666;
}

.loader-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #766DCF;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

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

.vue-app-loader p {
    margin-top: 16px;
    font-size: 14px;
}

.vue-app-loader--skeleton {
    display: block;
    min-height: auto;
}

.skeleton {
    height: 40px;
    width: 200px;
    border-radius: 8px;

    background: linear-gradient(
            90deg,
            #e5e7eb 25%,
            #f3f4f6 37%,
            #e5e7eb 63%
    );

    background-size: 400% 100%;
    animation: skeleton-loading 1.4s ease infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: 0 0;
    }
}

/* Скрываем прелоадер когда Vue приложение загружено */
.vue-app-container[data-vue-loaded="true"] .vue-app-loader {
    display: none;
}
/* End */
/* /local/components/laparet/vue.wrapper/templates/.default/style.css?17721364571356 */
