/* Tide template custom CSS style v1.0 */
/* Using the examples, provide your own styling */

/*
.bg-primary {
     background-color: #your-color !important;
}
.text-primary {
     color: #your-color !important;
}
.btn-primary {
     background-color: #your-color !important;
     border-color: #your-color !important;
}
.btn-primary:hover {
     background-color: #your-hover-color !important;
     border-color: #your-hover-color !important;
}
.btn-primary:focus {
     background-color: #your-focus-color !important;
     border-color: #your-focus-color !important;
     box-shadow: 0 0 0 0.2rem rgba(#your-color, 0.5) !important;
}
.btn-primary:active {
     background-color: #your-active-color !important;
     border-color: #your-active-color !important;
}
.btn-primary:disabled {
     background-color: #your-disabled-color !important;
     border-color: #your-disabled-color !important;
}
*/

/* IMPORTAR FUENTE CHIVO */
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700&display=swap');


body {
    font-family: 'Be Vietnam Pro', sans-serif !important;
    font-size: 14px;
    font-weight: 400;
}

/* Forzamos encabezados para que tengan el peso correcto de Chivo */
h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
    font-family: 'Be Vietnam Pro', sans-serif !important;
    font-weight: 700;
}

.toast {
    border-radius: 10px;
    background: #fff;
    border: 1px solid #0000 !important;
    box-shadow: rgba(24, 36, 51, .04) 0 2px 4px 0;
}