﻿/*-------------- LOADER -------------- */

/* Ajustar tamaño y estilo del popup */
.swal2-popup.loader-popup {
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
}

/* Título más elegante */
.swal2-title.loader-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0d6efd; /* azul tipo bootstrap */
}

/* Texto de ayuda */
.swal2-html-container.loader-html {
    font-size: 0.95rem;
    color: #6c757d;
    margin-top: 10px;
}

/* Animación del loader */
.swal2-loader {
    border: 0.25em solid #e9ecef !important;
    border-top: 0.25em solid #0d6efd !important;
    width: 3rem !important;
    height: 3rem !important;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-top: 15px;
}

/* Efecto de giro */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.navbar .navbar-brand {
    margin-left: 0 !important;
}


.ck.ck-editor__main > .ck-editor__editable {
    height: 300px !important;
    overflow-y: auto !important;
}
