/* prettier-ignore */
/*# sourceMappingURL=user.css.map */

/* FullCalendar */
/* Que los colores de fin de semana aparezcan en sábado y domingo y no en viernes y sábado. No es necesario a partir de Phoenix 1.19.
.fc.fc-theme-standard .fc-daygrid-day.fc-day-fri {
    color: var(--phoenix-body-color) !important;
}

.fc.fc-theme-standard .fc-daygrid-day.fc-day-sun {
    color: var(--phoenix-warning-dark) !important;
}
*/
/* Mostrar la hora de inicio y final en cada evento del calendario */
.fc .fc-dayGridMonth-view .fc-event-time {
    display: inline;
}

/* Form Labels */
/* Que los labels de los formularios no tengan el padding que se tiene por defecto */
.form-label {
    padding-left: 0;
}

/* Choice Select */
form .choices {
    margin-bottom: 0;
}
form .choices .choices__inner {
    font-size: 0.8rem;
}form .choices .choices__list--dropdown .choices__item--selectable {
     background-color: white !important;
     font-size: 0.8rem !important;
     padding: 0.5rem;
 }
form .choices .choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: var(--phoenix-primary-light) !important;
    font-size: 0.8rem !important;
}

/* Challenge Evaluations */
.evaluation-surface--not-achieved,
.evaluation-badge--not-achieved {
    background-color: #BC0C17 !important;
    color: white !important;
}

.evaluation-surface--in-progress,
.evaluation-badge--in-progress {
    background-color: #F5F403 !important;
    color: #5a3a00 !important;
}

.evaluation-surface--achieved,
.evaluation-badge--achieved {
    background-color: #148412 !important;
    color: white !important;
}

.evaluation-surface--advanced,
.evaluation-badge--advanced {
    background-color: #0808FF !important;
    color: white !important;
}

.evaluation-text--not-achieved {
    color: white !important;
}

.evaluation-text--in-progress {
    color: #5a3a00 !important;
}

.evaluation-text--achieved {
    color: white !important;
}

.evaluation-text--advanced {
    color: white !important;
}
