:root {
    /* --purple-light: #6b6bff;
    --purple: #6054ff;
    --purple-text: #7272cd;
    --purple-dark: #4a40d4; */

    --purple-light: #105ec5a1;
    --purple: #004AAD;
    --purple-text: #004AAD;
    --purple-dark: #004AAD;

    --aqua: #3ecbee;
    --aqua-dark: #43bedd;
}

.stepwizard-step p {
    margin-top: 10px;
}
.stepwizard-row {
    display: table-row;
}
.stepwizard {
    display: table;
    width: 100%;
    position: relative;
}
.stepwizard-step button[disabled] {
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
}
.stepwizard-row:before {
    top: 14px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 100%;
    height: 1px;
    background-color: #ccc;
    z-index: 0;
}
.stepwizard-step {
    display: table-cell;
    text-align: center;
    position: relative;
}
.btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
}

.container {
    width: 100% !important;
}

.menu-purple-fixed{
    background-color: var(--purple) !important;
    color: white !important;
}

.menu-purple{
    background-color: var(--purple) !important;
    color: white !important;
}

.menu-purple:hover{
    background-color: var(--purple) !important;
    color: white !important;
}

.menu-item-purple{
    background-color: var(--purple) !important;
    color: white !important;
}

.menu-item-purple:hover{
    background-color: var(--purple-dark) !important;
    color: white !important;
}

.menu-active-purple{
    background-color: var(--purple-dark) !important;
}

.treeview-menu{
    background-color: var(--purple) !important;
}

.treeview-menu:hover{
    background-color: var(--purple) !important;
}

.background-fixed{
    background-color: #ecf0f5 !important;
}

.main-header .sidebar-toggle:before {
    content: "\f053" !important;
    color: white !important;
}

.main-header .sidebar-toggle:hover:before {
    color: white !important;
}

.items-menu{
    text-decoration: none;
    color: var(--purple-text) !important;
    font-size: 16px;
}

.items-menu:hover{
    background-color: var(--purple) !important;
    color: white !important;
}

@media (max-width: 750px) {
    .main-header .sidebar-toggle:before {
        color: var(--purple) !important;
        content: "\f0c9" !important;
    }
}

.box-style{
    background-color: #f1f2fb;
    border-radius: 20px;
    padding: 14px;
}

.edit-bottom{
    font-size: 20px;
    padding: 5px;
    color:#18c7e6;
}

.edit-bottom:hover{
    background-color: #18c7e63d;
    border-radius: 5px;
}

.delete-bottom{
    font-size: 20px;
    padding: 5px;
    color:#e61818;
}

.delete-bottom:hover{
    background-color: #e618183d;
    border-radius: 5px;
    color: red;
}

.delete-bottom{
    font-size: 20px;
    padding: 5px;
    color:#ff0000;
}

.delete-bottom:hover{
    background-color: #f00d0d3d;
    border-radius: 5px;
}

.filas:hover{
    background-color: white;
}

.first-box{
    background-color: white;
    border-radius: 15px;
    padding: 10px 30px;
    margin-bottom: 10px;
}

/* INPUT DE BUSQUEDA */
.input-wrapper {
    position: relative;
    width: 100%;
}

.input {
    box-sizing: border-box;
    color: var(--aqua);
    padding: 7px 10px 7px 35px;
    width: 100%;
    border: 2px solid transparent; /* Establece un borde inicial transparente */
    border-radius: 15px;
    outline: none; /* Para quitar el resaltado al hacer clic */
    transition: border-color 0.3s; /* Agrega una transición suave al cambio de color */
}

.input:focus {
    border-color: var(--aqua); /* Cambia el color del borde cuando se hace clic */
}

.input::placeholder {
    color: var(--aqua);
}

.input-icon {
    color: var(--aqua);
    position: absolute;
    width: 20px;
    height: 20px;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}
/* FIN DE INPUT DE BUSQUEDA */

/* INPUT DE BUSQUEDA PURPLE */
.input-wrapper-purple {
    position: relative;
    width: 100%;
}

.input-purple {
    box-sizing: border-box;
    color: white;
    padding: 7px 10px 7px 35px;
    width: 100%;
    border: 2px solid transparent; /* Establece un borde inicial transparente */
    border-radius: 15px;
    outline: none; /* Para quitar el resaltado al hacer clic */
    transition: border-color 0.3s; /* Agrega una transición suave al cambio de color */
    background-color: var(--purple-light);
}

.input-purple:focus {
    border-color: white; /* Cambia el color del borde cuando se hace clic */
}

.input-purple::placeholder {
    color: white;
}

.input-icon-purple {
    color: white;
    position: absolute;
    width: 20px;
    height: 20px;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}
/* FIN DE INPUT DE BUSQUEDA PURPLE*/


.centrar-vertical{
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-item a {
    border-color: var(--purple);
    color: var(--purple);
}

.pagination .page-item a:hover {
    border-color: var(--purple);
    color: var(--purple);
}

.pagination .page-item.active a {
    border-color: var(--purple);
    color: var(--purple);
}


.box-style-form{
    background-color: white;
    border-radius: 20px;
    padding: 20px;
}

.input-group-addon{
    background-color: var(--purple) !important;
    border-color: var(--purple) !important;
    color: white !important;
    border-radius: 10px 0px 0px 10px !important;
}

.final{
    background-color: var(--purple) !important;
    border-color: var(--purple) !important;
    color: white !important;
    border-radius: 0px 10px 10px 0px !important;
}

.form-control{
    border-color: var(--purple);
    color: gray;
    border-radius: 0px 10px 10px 0px;
}

.normal{
    border-radius: 0px !important
}

.btn-purple{
    background-color: var(--purple);
    border-color: var(--purple);
    color: white;
}

.btn-purple:hover{
    background-color: var(--purple-dark);
    color: white;
}

.btn-aqua{
    background-color: var(--aqua);
    border-color: var(--aqua);
    color: white;
}

.btn-aqua:hover{
    background-color: var(--aqua-dark);
    color: white;
}

.centrar-horizontal{
    display: flex;
    align-items: center;
    justify-content: center;
}

.imagen-estudiante{
    width: 200px;
    height: 200px;
    border: 3px solid white;
    overflow: hidden;
    border-radius: 20px;
}

.imagen-colegio{
    width: 200px !important;
    border: 3px solid white;
    overflow: hidden;
    border-radius: 20px;
}


.choose-imagen-colegio{
    width: 150px;
    height: 150px;
    border: 3px solid white;
    overflow: hidden;
    border-radius: 20px;
}

.badge-purple{
    background-color: var(--purple);
    border-radius: 5px;
    color: white;
    padding: 5px;
}

/* iNICIO CSS DE LOGIN  */
.login-background{
    background-color: #3d3dba;
}
.login-page{
    background-image: url('../img/fondo1.jpg'); /* Cambia 'ruta/a/tu/imagen.jpg' a la URL de tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    margin: 0;
}
.login-box-body{
    padding: 10%;
    background: #4949cc17 !important;
    border-radius: 5%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    color: #FFF!important;
}

.login-box, .register-box {
    width: 485px!important;
}
.login-box-body input.form-control{
    background: #5757ee!important;
    border-radius: 10px;
    border-color: transparent;
    color: #FFF;
}

.login-box-body .has-feedback a{
    background-color: #18c7e6!important;
    border-radius: 15px;
    width: 80%;
    margin: auto;
}

.login-box-body .has-feedback button{
    background-color: #18c7e6!important;
    border-radius: 15px;
    width: 80%;
    margin: auto;
}
.label-footer a{
    color: #FFFF;
    padding-right: 5px;
}

.label-footer{
    text-align: center;
    font-size: 17px;
}
.label-footer a.register-new-label{
    color:#d2d900;
}
.line-login{

    border-radius: 15px;
    padding: 5px;
    text-align: center;
    border: solid 2px transparent;
    position: relative;
    background-color: #4242c2;
}

.line-login i.fa{
    color:#d2d900;
    position: relative;
    font-size: 20px;
}
.line-login:hover{

    border: solid 2px #d2d900!important;
}


.line-login span{
    color: #FFF;
}

.link-buttom{
    padding-top: 30px;
    padding-bottom: 30px;
}
.login-box-body input::placeholder{
    color:#FFF!important;
}

.login-box-body .checkbox{
    padding-top: 30px;
    padding-bottom: 30px;
}
.icheckbox_square-blue input{
    border-color: #18C7E6;
}

.titulo-school{
    color: var(--purple);
    font-size: 17px;
}

.bottom-fixed{
    position: absolute;
    bottom: 0;
}

.custom-swal {
    font-size: 16px !important; /* Ajusta el tamaño de fuente según tus preferencias */
    width: 500px !important; /* Ajusta el ancho de la ventana emergente según tus necesidades */
}


.basic-box{
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    margin: 15px 10px;
}

.centrar-vertical-box{
    display: inline-block;
    vertical-align: middle;
}

.centrar-horizontal-box{
    display: flex;
    flex-wrap: wrap; /* Esto permite que los elementos se envuelvan a una segunda línea */
    justify-content: space-around; /* Esto centrará los elementos horizontalmente */
}

.fila-green{
    background-color: #59ee6048;;
}

.fila-yellow{
    background-color: #eebf594d;;
}

.fila-danger{
    background-color: #ee595950;;
}


/* tabla responsive */
.table-responsive {
    border: none; /* Elimina el borde gris alrededor de la tabla */
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #adadad;
}
/* fin tabla responsive */

.activee{
    background-color: var(--purple-light) !important;
}

.activee a{
    background-color: var(--purple-light) !important;
}

.activee_2 a{
    background-color: #6b6bff !important;
}

.fc-event {
    cursor: pointer;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Fondo semitransparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Asegura que el loader esté encima de todo */
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.2); /* Borde gris */
    border-top-color: #4a40d4; /* Color del spinner */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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


   /*  ===================================
        CSS PARA RESPONSIVE
       ====================================
   */


/* Tablets */
@media (max-width: 992px) {
    body {
        font-size: 16px;
    }

    .login-box-body {
        margin-top: 50%;
    }

    .main-header{
        margin-bottom: 50px;
    }
    #conAjaxGradeActivity .col-md-10{
        padding: 35px!important;
    }

    #conAjaxGradeActivity2 .col-md-10{
        padding: 35px!important;
    }

    .btn-purple span {

        color: #666666!important;
    }
}

/* Smartphones */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    .link-buttom .col-md-6{
        padding-bottom: 15px!important;

    }

    .btn-movil a{
        width: 100%;
        margin-bottom: 5px;
    }


}

/* Pantallas muy pequeñas */
@media (max-width: 576px) {
    body {
        font-size: 12px;
    }

    .login-box, .register-box {
        width: 300px !important;
    }
}

.login-new{
    color: white;
    margin-top: 10%;
}

.cajones {
    display: flex;
    flex-wrap: wrap;  /* Permite que las columnas se ajusten en múltiples líneas */
    justify-content: center;
    gap: 2%; /* Espaciado entre las columnas */
    padding: 1% 5%;
}

.link-rol {
    height: 150px;
    width: 150px;
    margin: 2%;
    border-radius: 5%;
    background: #4949cc17;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s, border 0.3s, box-shadow 0.3s;
    /* Ancho máximo y tamaño responsivo */
    flex: 1 1 20%;  /* Los elementos ocupan el 20% del ancho disponible, pero pueden crecer o reducirse */
    max-width: 150px;  /* Limita el ancho máximo para evitar que se estiren demasiado */
}

.link-rol:hover {
    border: 2px solid yellow;
    transform: scale(1.1);
}

.icono-grande {
    color: yellow;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.link-a{
    margin: 1%;
}

.score{
    cursor: pointer;
}

.score:hover {
    background-color: #81e0f8 !important;
}

.card-subject-hover {
    transition: background-color 0.1s ease-in-out, border 0.3s ease-in-out;
    border: 2px solid transparent; /* Borde inicial transparente */
}

.card-subject-hover:hover {
    background-color: #e3f2fd; /* Azul claro */
    border: 2px solid #2196f3; /* Azul */
}


.progress-container {
    width: 55px; /* Reducimos el tamaño general */
    height: 55px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: conic-gradient(#00c3ff var(--progress, 0%), #ddd 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 0 6px #ddd; /* Ajuste para un mejor efecto */
}

.progress-inner {
    width: 45px; /* Hacemos el interior más grande para reducir grosor */
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-text {
    font-size: 12px; /* Reducimos el tamaño del texto para que encaje bien */
    font-weight: bold;
    color: #00c3ff;
}


/* CSS PARA LAS PREGUNTAS */
.flex-center {
    display: flex;
    align-items: center;
}

.card-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.card-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Estilo base para la caja de la pregunta */
.question-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    margin-bottom: 3rem;
}


.question-title {
    color: black;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 500;
    text-align: justify;
}

.form-check {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 1.8rem;
    margin-bottom: 1.2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    display: flex;
    align-items: center; /* Alineamos todo en el eje vertical */
}

.form-check:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.form-check-label {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 1.2rem;
    gap: 1rem; /* Añadimos espacio entre el radio y el texto */
}

.option-letter {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 0.7rem;
    border-radius: 50%;
    width: 3rem; /* Tamaño fijo de la esfera */
    height: 3rem; /* Asegura que la esfera sea un círculo perfecto */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem; /* Ajustamos el tamaño de la letra */
    flex-shrink: 0; /* Evita que la esfera se deforme */
}

.option-text {
    flex-grow: 1;
    font-size: 18px;
    font-weight: 500;
    margin-right: 1.5rem;
    text-align: justify;
    cursor: pointer;
}

.form-check-input {
    margin-left: auto;
}

.selected {
    background-color: #8ffca8 !important; /* Fondo verde cuando la tarjeta está seleccionada */
}

/* Aseguramos que el botón esté oculto al principio */
#submit-btn {
    display: none;
    opacity: 0; /* Inicialmente no visible */
    transition: opacity 0.5s ease-in-out; /* Animación suave */
}

/* Cuando el botón se hace visible */
#submit-btn.show {
    display: inline-block;
    opacity: 1; /* Se vuelve visible */
}
/* FIN CSS PARA LAS PREGUNTAS */


.header-space {
    height: 6vh; /* Altura por defecto en pantallas grandes */
}

@media (max-width: 768px) { /* Para pantallas más pequeñas */
    .header-space {
        height: 0vh; /* Ajusta la altura para móviles */
    }
}
/* FIN CSS PARA LAS PREGUNTAS */

.input-normal{
    border-radius: 10px;
}

.input-error {
    border: 1px solid red;
    border-radius: 10px;
}

.destacado {
    background-color: #e6f0ff; /* Azul claro */
    border-left: 4px solid #3399ff; /* Azul medio */
    padding: 15px;
    border-radius: 8px;
}

.destacado label {
    color: #1a73e8;
    font-weight: bold;
}

.destacado textarea {
    border-color: #3399ff;
    background-color: #f0f8ff; /* Otro azul muy claro */
}

   .pdf-mini-card {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    padding: 12px 20px !important;
    background: #ffffff !important;
    border: 1px solid #e1e1e1 !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    max-width: fit-content !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.pdf-mini-card:hover {
    /* Borde más grueso y color pastel */
    border: 2.5px solid #ff8a80 !important;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05) !important;
    transform: translateX(8px) !important;
}

.pdf-icon-side {
    /* Rojo Pastel */
    color: #ff8a80 !important;
    font-size: 2.2rem !important;
    margin-right: 18px !important;
    flex-shrink: 0 !important;
}

.pdf-info-side {
    display: flex !important;
    flex-direction: column !important;
}

.pdf-title-inline {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    line-height: 1.2 !important;
    margin: 0 !important;
}

.pdf-subtitle-inline {
    /* Estilo 'Small' mejorado */
    font-family: 'Segoe UI', system-ui, sans-serif !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    color: #95a5a6 !important; /* Gris suave */
    text-transform: none !important; /* Quitamos mayúsculas para que sea más natural */
    letter-spacing: 0.2px !important;
    margin-top: 3px !important;
    line-height: 1.4 !important;
    display: block !important;
}


/* Estilos específicos para WORD */
.word-mini-card {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    padding: 12px 20px !important;
    background: #ffffff !important;
    border: 1px solid #e1e1e1 !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    max-width: fit-content !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.word-mini-card:hover {
    /* Borde azul pastel más grueso */
    border: 2.5px solid #80b3ff !important;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05) !important;
    transform: translateX(8px) !important;
}

.word-icon-side {
    /* Azul Pastel Word */
    color: #80b3ff !important;
    font-size: 2.2rem !important;
    margin-right: 18px !important;
    flex-shrink: 0 !important;
}

.word-info-side {
    display: flex !important;
    flex-direction: column !important;
}

.word-title-inline {
    font-family: 'Segoe UI', system-ui, sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    line-height: 1.2 !important;
    margin: 0 !important;
}

.word-subtitle-inline {
    font-family: 'Segoe UI', system-ui, sans-serif !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    color: #95a5a6 !important;
    text-transform: none !important;
    letter-spacing: 0.2px !important;
    margin-top: 3px !important;
    line-height: 1.4 !important;
    display: block !important;
}

/* Estilos específicos para EXCEL */
.excel-mini-card {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    padding: 12px 20px !important;
    background: #ffffff !important;
    border: 1px solid #e1e1e1 !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    max-width: fit-content !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.excel-mini-card:hover {
    /* Borde verde pastel más grueso */
    border: 2.5px solid #81c784 !important;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05) !important;
    transform: translateX(8px) !important;
}

.excel-icon-side {
    /* Verde Pastel Excel */
    color: #81c784 !important;
    font-size: 2.2rem !important;
    margin-right: 18px !important;
    flex-shrink: 0 !important;
}

.excel-info-side {
    display: flex !important;
    flex-direction: column !important;
}

.excel-title-inline {
    font-family: 'Segoe UI', system-ui, sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    line-height: 1.2 !important;
    margin: 0 !important;
}

.excel-subtitle-inline {
    font-family: 'Segoe UI', system-ui, sans-serif !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    color: #95a5a6 !important;
    text-transform: none !important;
    letter-spacing: 0.2px !important;
    margin-top: 3px !important;
    line-height: 1.4 !important;
    display: block !important;
}


/* Estilos para CUALQUIER OTRO ARCHIVO */
.gen-mini-card {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    padding: 12px 20px !important;
    background: #ffffff !important;
    border: 1px solid #e1e1e1 !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    max-width: fit-content !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.gen-mini-card:hover {
    /* Borde gris neutro más grueso */
    border: 2.5px solid #b0bec5 !important;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05) !important;
    transform: translateX(8px) !important;
}

.gen-icon-side {
    /* Gris Pastel Neutro */
    color: #b0bec5 !important;
    font-size: 2.2rem !important;
    margin-right: 18px !important;
    flex-shrink: 0 !important;
}

.gen-info-side {
    display: flex !important;
    flex-direction: column !important;
}

.gen-title-inline {
    font-family: 'Segoe UI', system-ui, sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    line-height: 1.2 !important;
    margin: 0 !important;
}

.gen-subtitle-inline {
    font-family: 'Segoe UI', system-ui, sans-serif !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    color: #95a5a6 !important;
    text-transform: none !important;
    letter-spacing: 0.2px !important;
    margin-top: 3px !important;
    line-height: 1.4 !important;
    display: block !important;
}

