/* === CUSTOM CSS === */
.home_layout .my_participation_link {
  display: none;
}
/* Opciones respuestas del quiz */

/* Respuesta incorrecta */
.js_quizz_question_ko label.m_option_label {
  background-color: #A50000 !important;
}
.control-checks.js_quizz_question_ko input:not(:checked) ~ label.m_option_label,
.control-checks.js_quizz_question_ko input:not(:checked) ~ label.m_option_label:hover {
  background-color: #A50000 !important;
  color: #ffffff !important;
}
 /* Respuesta correcta */
.js_quizz_question_ok label.m_option_label {
  background-color: #1E8361 !important;
}
.control-checks.js_quizz_question_ok input:checked ~ label.m_option_label,
.control-checks.js_quizz_question_ok input:not(:checked) ~ label,
.control-checks.js_quizz_question_ok input:checked ~ label.m_option_label:hover {
  background-color: #1E8361 !important;
  color: #ffffff !important;
}
/* Mensaje feedback */

 /* Respuesta incorrecta */
.js_answer_ko {
  background-color: #A50000 !important;
}
.js_answer_ko p {
  color: #ffffff !important;
}
 /* Respuesta correcta */
.js_answer_ok {
  background-color: #1E8361 !important;
}
.js_answer_ok p {
  color: #ffffff !important;
}