.content-wrapper {
    background-color: #DBDFE2
}


#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    position: absolute;
    left: 48%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




:root {
    --color-primary: #2F2A60;
    --color-primary-hover: #4a467b;
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #fff;
}

.label-error {
    color: red;
    font-size: 0.9em;
}

body {
    font-family: 'Helvetica', sans-serif;
    font-size: 0.9rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica', sans-serif;
}

a {
    color: #2F2A60;
}

a:hover {
    color: var(--color-primary-hover);
}

.sidebar-dark-primary {
    background-color: var(--color-primary);
}

.brand-text {
    color: #fff;
}

.botonera-inferior {
    padding: 1em;
    margin: 1em;
}

.control-label {
    font-size: 0.8rem;
}

.no-form-control {
    width: auto !important;
    display: inline-block !important;
}

.label-error {
    color: red;
}

.select2-selection--single {
    height: 38px !important;
}

.line-with-text {
    display: flex;
    align-items: center;
    width: 100%;
}

.line-with-text h4 {
    margin: 0;
    padding-right: 10px; /* Espacio entre el texto y la línea */
}

.line {
    flex-grow: 1;
    border-bottom: 1px solid #626364;
}

.user-panel {
    border-top: 2px solid #4f5962;
    border-bottom: 2px solid #4f5962 !important;
    padding-top: 10px;
}

.barra-busqueda {
    background-color: #2F2A60;
    border-radius: 10px;
    margin: 1px;
    height: 80px;
    padding-top: 20px;
    padding-left: 10px;
}