@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100;1,200;1,300;1,400;1,600&display=swap');



/*-- Variables globales --*/
:root {
    --blanco: #f2f7f9;
    --negro: #1b2222;
    --gris: #525a5a;
    /*Colores principales*/
    --color1: #45706f;
    --color2: #c2000c;
    /*//Colores principales*/
    --color3: #dfe8eb; /*Color para inputs*/

    --color5: #dfe8eb; /*Otro color para botones*/
    --color6: #34504f; /*Color para focus de algunos botones*/
    --color8: #d1dadd; /*Color para focus de algunos botones*/
    --color9: #86060e; /*Color para focus de algunos botones*/

    --color4: #dbbf1d; /*Color para enlaces y subtítulos*/
    --color7: #b9a21e; /*Color para enlaces y subtítulos en hover*/

    --parrafos: #3e3e3e;

    --respuesta_test_correcta: green;
    --repsuesta_test_incorrecta: red;
  }
/*-- //Variables globales --*/



/*-- Reset code --*/
body {
    padding: 0;
    margin: 0;
    background: var(--blanco);
    font-family: 'Montserrat', 'sans-serif';
}

input[type="button"],
input[type="submit"] {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', 'sans-serif';
}

p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.9;
    color: var(--parrafos);
}

ul,
ol {
    margin: 0;
    margin-top: 3%;
    margin-bottom: 2%;
}

label {
    margin: 0;
    color: var(--blanco);
}

a {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    text-decoration: none;
}

a:focus,
a:hover {
    text-decoration: none;
    outline: none;
    color: var(--gris);
    cursor: pointer !important;
}
/*-- //Reset code --*/



/*-- Generales --*/
.container-fluid {
    padding: 0;
}

.row {
    margin: 0;
}

#toTop {
    display: none;
    text-decoration: none;
    position: fixed;
    bottom: 20px;
    right: 2%;
    overflow: hidden;
    z-index: 999;
    width: 32px;
    height: 32px;
    border: none;
    text-indent: 100%;
    background: url(../images/arrow.png) no-repeat 0px 0px;
}

#toTopHover {
    width: 32px;
    height: 32px;
    display: block;
    overflow: hidden;
    float: right;
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
}

.body_dark_img {
    background-color: var(--color3);
}

.body_light_img {
    background-color: var(--color3);
}

.title_side {
    background-color: var(--color1);
    color: var(--blanco);
    font-size: 1.6em;
    font-weight: bold;
    padding-left: 5%;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0px 30px 30px 0px;
    -moz-border-radius: 0px 30px 30px 0px;
    -webkit-border-radius: 0px 30px 30px 0px;
    border: 0px solid var(--gris);
}

.btn-success {
    background-color: var(--color1);
    border-color: var(--color1);
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    color: var(--blanco) !important;
    background-color: var(--color6) !important;
    border-color: var(--color6) !important;
    box-shadow: none !important;
}

.btn_rojo {
    background-color: var(--color2);
    border-color: var(--color2);
}

.btn_rojo:hover,
.btn_rojo:focus,
.btn_rojo:active {
    background-color: var(--color9) !important;
    border-color: var(--color9) !important;
}

.color_links {
    color: var(--color4);
}

.color_rojo {
    color: var(--color2);
}

.color_negro {
    color: #000;
}

.modales_curso .modal-content {
    background-color: var(--blanco);
    padding: 10px 10px 20px 10px;
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
}

.modal-header h2,
.modal-header h5 {
    color: var(--color2);
    font-weight: normal;
}

.modal-body {
    color: #000;
    font-weight: 500;
    text-align: justify;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.titulo_vista {
    text-align: center;
    color: var(--negro);
    font-size: 1.8em;
    font-weight: 500;
}

input[type='radio']:after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: -2px;
    left: -1px;
    position: relative;
    background-color: #d1d3d1;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}

input[type='radio']:checked:after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: -2px;
    left: -1px;
    position: relative;
    background-color: var(--color1);
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}

.nombre_navegador {
    color: #00006b;
    font-weight: bold;
}
/*-- //Generales --*/



/*-- Header --*/
header {
    top: 0;
    z-index: 9;
    width: 100%;
}

#main_header {
    width: 100%;
    background-color: var(--blanco);
    cursor: pointer;
}

.contenedor_img_header {
    padding: 0; 
    width: 100%;
}

.contenedor_img_header a {
    margin: 0;
    padding: 0;
    width: 100%;
}

#navbarNav {
    z-index: 100;
}

#navbarNav ul {
    width: 100%;
    margin: auto;
}

.division_header {
    width: 100%; 
    margin: 0;
    padding: 0;
    height: 8px;
    background-color: var(--color1);
}
/*-- //Header --*/



/*-- Nav --*/
.navbar {
    padding: 0px !important;
    width: 100%;
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
    color: var(--negro);
    background-color: var(--color3);
    padding-top: 20px;
    height: 70px;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: var(--negro);
    background-color: var(--color3);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--blanco);
    font-family: 'Montserrat';
    font-size: 1.2em;
    font-weight: bold;
    padding-top: 20px;
    height: 70px;
    background-color: var(--color1);
    border-top: 1px solid rgba(0,0,0,.1);
    border-bottom: 1px solid rgba(0,0,0,.1);
}
/*-- //Nav --*/



/*-- Inicio --*/
.bloque_inicio {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.cont_txt_cert {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--blanco);
    font-size: 1.35em;
}

.cont_txt_contacto {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--negro);
    font-size: 1.35em;
    font-weight: 500;
}

.cont_btn_temario {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cont_btn_cert {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cont_btn_contacto {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btns_inicio {
    background-color: var(--blanco);
    color: var(--negro);
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border: 0px solid var(--blanco);
    padding: 10px 80px;
    font-size: 1.1em;
    font-weight: 600;
}

.btns_inicio:hover {
    background-color: var(--color3);
}

#acordeonTemas {
    background-color: #fff;
}

#acordeonTemas .card {
    border: none;
    border-bottom: 1px solid rgba(0,0,0,.125);
    background-color: #fff;
}

#acordeonTemas .card-header {
    border: none;
    background-color: #fff;
}

#acordeonTemas .card-body {
    padding-left: 50px;
}

.cabecera_acordeon_titulos {
    color: #000;
    font-weight: bold;
    font-size: 1.3em;
}

.cabecera_acordeon_icono {
    color: var(--color1);
    font-size: 25px;
}

.subtitulo_acordeon {
    font-size: 1.3em;
}

/*-- //Inicio --*/



/*-- Footer --*/
.footer_section {
    background: var(--color1);
}

.footer {
    padding: 2em 1em 0em 1em;
}

.footer p {
    color: var(--blanco) !important;
}

.footer_bottom {
    height: 100%;
    margin-top: 0px;
}

.footer_bottom  p {
    color: var(--blanco) !important;
}

.footer_policies {
    color: var(--color4);
    font-size: 1.1rem;
    margin-top: 4%;
}

.footer_policies:hover {
    color: var(--color7);
}

.organizadores {
    color: var(--blanco);
    font-weight: bold;
    font-size: 0.9em;
    margin-left: 60px;
}

.logo_boeh img {
    width: 50%;
}

.logo_lilly img {
    width: 40%;
}

.info_cuquerella {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.logo_cuque {
    width: 5%;
}

.division_footer {
    width: 100%; 
    margin: 20px 0;
}

.division_fotter hr {
    border: 1px solid var(--color3);
}
/*--//Footer--*/



/*-- Login --*/
.body_img_login {
    background-color: var(--color3);
    min-height: 600px;
}

.login_background {
    left: 0;
    right: 0;
    margin: 0 auto;
    background: var(--blanco);
    width: 90%;
    padding: 40px 80px;
    -webkit-border-radius: 20px 20px;
    -webkit-box-shadow: -2px 5px 32px -10px rgba(0,0,0,0.75);
    -moz-box-shadow: -2px 5px 32px -10px rgba(0,0,0,0.75);
    box-shadow: -2px 5px 32px -10px rgba(0,0,0,0.75);
}

.div_login {
    margin: 0 auto;
    width: 80%;
    padding-top: 30px;
}

.div_login legend {
    color: var(--negro);
    font-size: 1.6em;
    font-weight: bold;
}

.div_login label {
    color: var(--negro);
}

.form_button_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form_buttons {
    margin: auto;
    width: 60%;
    padding: 13px 0px;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    font-weight: 500;
}

.form_field {
    width: 100%;
    border-left-color: var(--color3);
    background-color: var(--color3);
    border-color: var(--color3);
    padding: 15px 0px;
    font-size: 1em;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
}

.form_field:disabled {
    background: var(--gris);
    color: var(--blanco);
}

.form_icon {
    background-color: var(--color3);
    border-color: var(--color3);
    width: 50px;
    padding: 0;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
}

.form_icon i {
    margin: auto;
    color: var(--gris);
}

.form_field::placeholder {
    color: var(--gris);
    font-size: 1em;
    font-weight: 500;
}

.form_field:focus {
    border-color:  var(--color3);
    background-color: var(--color3);
    border-left-color: var(--color3);
    color: var(--gris);
    box-shadow: none;
    -webkit-box-shadow: none;
}

.form_login_pass {
    border-top-right-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
}

.contenedor_ver_contrasena {
    cursor:pointer; 
    position: absolute; 
    color: var(--gris); 
    right: 2%; 
    bottom: 20%;
}

.contenedor_ver_contrasena i {
    color: var(--gris);
}

.texto_fondo_login {
    color: var(--negro); 
    font-size: 14px;
}

.btn_camb_contr {
    background-color: var(--color5);
    color: var(--negro);
    border: 0px solid var(--blanco);
    padding: 13px 40px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

.btn_camb_contr:hover {
    background-color: var(--color8);
}
/*-- //Login --*/



/*-- Registro --*/
.body_img_register {
    background-color: var(--color3);
    min-height: 800px;
}

.div_register {
    margin: 0 auto;
    width: 95%;
    padding-top: 30px;
}

.register_title {
    color: var(--negro);
    font-size: 1.6em;
    font-weight: bold;
    padding-top: 10px;
}

.register_subtitle {
    color: var(--negro); 
    font-size: 0.9em;
}

.register_text_bottom {
    font-size: 0.9em;
}

.div_register label {
    color: var(--negro);
}

.select_field {
    height: 55px !important;
}

.btn_registro {
    color: var(--blanco);
    font-weight: 500;
    width: 350px;
    margin: auto;
    padding: 13px 0px;
    background-color: var(--color2);
    border-color: var(--color2);
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    
}

.btn_registro:hover,
.btn_registro:focus,
.btn_registro:active {
    color: var(--blanco) !important;
    background-color: var(--color9) !important;
    border-color: var(--color9) !important;
    box-shadow: none !important;
}

.div_check {
    width: 100%;
    margin: 5% 2% 6% 2%;
}

.desc_codigo {
    font-size: .9em;
}
/*-- //Registro --*/



/*-- Políticas --*/
.policies_text_container {
    margin: 30px 60px;
}

.policies_text_container a {
    cursor: auto;
}

.policies_content {
    text-align: justify;
    padding: 15px 30px 15px 0px;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1.5;
    color: #3e3e3e;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.policies_topics {
    margin: 20px 0px;
    text-align: justify;
}

.policies_topics span {
    background-color: var(--color1);
    color: #fff;
    border: 0px solid #ccc;
    font-weight: 200;
    padding: 1% 2%;
    font-size: 1.2em;
    font-weight: bold;
}
/*-- //Políticas --*/



/*-- Contacto --*/
.titulo_contacto {
    font-size: 1.8rem;
}

.descripcion_contacto {
    color: var(--color2);
    text-align: center;
    line-height: 1.2;
    font-size: 1em;
}

.politicas_contacto {
    font-size: 12px
}
/*-- //Contacto --*/



/*-- Presentación --*/
.cont_presentacion {
    background-color: #fff;
    height: 100%;
    padding: 40px;
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    -webkit-border-radius: 20px 20px;
    -webkit-box-shadow: -2px 5px 32px -10px rgba(0,0,0,0.75);
    -moz-box-shadow: -2px 5px 32px -10px rgba(0,0,0,0.75);
    box-shadow: -2px 5px 32px -10px rgba(0,0,0,0.75);
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1.5;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.cont_img_presentacion {
    text-align: center;   
}

.medico_nombre {
    font-weight: bold;
}

.medico_desc {
    text-align: justify;
    color: #000;
    margin-bottom: 20px;
}

.division {
    width: 100%; 
    margin: 40px 0;
}

.division hr {
    border: 1px solid var(--color3);
}

.titulo_presentacion {
    text-align: center;
}

.lista_contenido {
    color: #000;
    text-align: justify;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.9;
}
/*-- //Presentación --*/



/*-- Docentes --*/
.tarjeta_docente {
    width: 100%;
}
/*-- //Docentes --*/



/*-- Módulos --*/
#nav-tab {
    width: 100%;
}

#nav-tab a {
    width: 25%;
    color: var(--negro);
    background-color: #c4dae1;
    font-size: 1.2em;
    text-align: center;
    font-weight: bold;
    padding-top: 15px;
    padding-bottom: 15px;
    border: none;
}

#nav-tab .active>.nav-link,
#nav-tab .nav-link.active,
#nav-tab .nav-link.show,
#nav-tab .show>.nav-link {
    color: var(--negro);
    background-color: var(--blanco);
}

#nav-tab a:focus,
#nav-tab a:hover {
    color: var(--negro);
    background-color: var(--color3);
}

.titulo_modulo {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    align-items: flex-start;
    padding: 5px 5%;
}

.video-container .main-video {
    background: #fff;
    border-radius: 5px;
    padding: 10px;
}

.video-container .main-video video {
    width: 100%;
    border-radius: 5px;
}

.video-container .main-video .title {
    color: #333;
    font-size: 23px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.video-container .video-list {
    margin-top: 20px;
    background: #fff;
    border-radius: 5px;
    height: 450px;
    overflow-y: scroll;
}

.video-container .video-list::-webkit-scrollbar {
    width: 7px;
}

.video-container .video-list::-webkit-scrollbar-track {
    background: #ccc;
    border-radius: 50px;
}

.video-container .video-list::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 50px;
}

.video-container .video-list .vid video {
    width: 100px;
    border-radius: 5px;
}

.video-container .video-list .vid {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f7f7f7;
    border-radius: 5px;
    margin: 10px;
    padding: 10px;
    border: 1px solid rgba(0,0,0,.1);
    cursor: pointer;
}

.video-container .video-list .vid:hover {
    background: #eee;
}

.video-container .video-list .vid.active {
    background: var(--color2);
}

.video-container .video-list .vid.active .title,
.video-container .video-list .vid.active .time {
    color: #fff;
}

.video-container .video-list .vid .title,
.video-container .video-list .vid .time {
    color: #333;
    font-size: 17px;
}

.txt_descargas {
    color: #000;
    font-size: 1.1em;
    margin-left: 10px;
    font-weight: 600;
    text-decoration: underline;
}
/*-- //Módulos --*/



/*-- Módulos interactivos --*/
#pregunta_interactiva {
    display: none;
}

.pi_txt_pregunta {
    color: #c5000b;
    text-align: start;
    font-weight: 600;
}

.letra_respuesta {
    color: #c5000b;
    font-weight: 600;
}

.pi_texto_respuestas {
    margin:0 auto; 
    color: var(--negro);
    font-size: 1em;
    font-weight: 600;
}
/*-- Módulos interactivos --*/



/*-- Teorías --*/
.fondo_teoria {
    background-color: #fff;
}

.btn_atras_teoria {
    background-color: #f5d410;
    color: #063e44;
    border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    border: 0px solid #ccc;
    padding: 1% 3% 1% 3%;
}

.nombre_modulo {
    color: var(--color1);
}

.titulo_tema {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.linea_tema {
    height: 1px;
    background-color: var(--color1);
    width: 100%;
    margin: 0;
}

.doctor_tema {
    color: var(--color1);
}

.subtema_teoria {
    color: var(--color1);
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.3em;
    padding: 20px 0px 10px 0px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
    margin-bottom: 10px;
}

.subtema_teoria a, .subtema_teoria a:visited {
    color: var(--color1);
}



.parrafo_tema {
    text-align: justify;
    text-justify: inter-word;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.5em;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.color_rojo_teoria {
    color: #ff0000;
}

.desc_teoria {
    color: #000;
    font-size: 0.9em;
    line-height: 1.5em;
    padding: 10px 0px 10px 0px;
}

.tabla_teoria > tbody > tr > td {
    vertical-align: middle;
}

.lista_teoria {
    counter-reset: list;
    display: table;
}

.lista_teoria li { 
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.5em;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
    list-style: none;
    counter-increment: list;
    display: table-row;
}

.lista_teoria li:before {
    content: counter(list, lower-alpha) ") ";
    display: table-cell;
    text-align: right;
    padding-right: 1em;
    width: 50px;
}

.lista_biblio { 
    counter-reset: list;
    display: table;
}

.lista_biblio li { 
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.5em;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
    list-style: none;
    counter-increment: list;
    display: table-row;
}

.lista_biblio li:before {
    content: counter(list) ".";
    display: table-cell;
    text-align: right;
    padding-right: 1em;
    color: #ff0000;
    width: 50px;
}

.lista_ul_roja {
    list-style: none;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.5em;
    margin-top: 0px; 
    margin-left: 30px !important; 
    margin-bottom: 30px;
    text-align: justify;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.lista_ul_roja li::before {
    content: "\2022";
    color: var(--color2);
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1.3em;
    font-size: 1.6em;
    height: 5px;
}

.lista_ul_azul {
    list-style: none;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.5em;
    margin-top: 0px; 
    margin-left: 15px !important; 
    margin-bottom: 5px;
}

.lista_ul_azul li {
    color: #000;
    font-size: 0.9em;
    line-height: 1.5em;
    padding: 0px;
}

.lista_ul_azul li::before {
    content: "\2022";
    color: rgb(8, 8, 80);
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
    font-size: 1.6em;
    height: 5px;
}

.contenedor_parrafo_tabulado {
    display: flex;
}

.parrafo_tabulado {
    margin-left: 8px;
}

.lista_roja_2 {
    list-style: none;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.5em;
    margin: 0;
    padding-left: 25px;
}

.lista_roja_2 li::before {
    content: "\2022";
    color: var(--color2);
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
    font-size: 1.6em;
    height: 5px;
}

.lista_ul_negra {
    list-style-type: disc;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.5em;
    margin-left:26px;
    margin-top:5px;
    margin-bottom: 5px;
}

.lista_ul_negra li {
    margin-bottom: 5px;
}
/*-- //Teorías --*/



/*-- Test --*/
.test_background {
    top: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: var(--gris);
    width: 700px;
    height: 550px;
    -webkit-border-radius: 20px 20px;
}

.div_test {
    top: 35px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 800px;
}

.test {
    width: 100%;
}

.btn_volver {
    background-color: var(--color2);
    color: #fff;
    padding: 5px 50px;
    font-size: 1.2em;
    border-radius: 10px;
    -webkit-border-radius: 10px;
}

.btn_volver:focus,
.btn_volver:hover {
    background-color: var(--color9);
    color: #fff;
}

.cuadro_superior_1, .cuadro_superior_2 {
    color: #000;
}

#pregunta_texto {
    color: #000;
    font-weight: bold;
    font-size: 1.4em;
}

.texto_respuestas {
    margin:0 auto; 
    color: #000;
    font-size: 1em;
}

#pregunta_explicacion {
    text-align: justify; 
    font-size: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word; 
}

#marcador_pregunta {
    font-weight: bold;
}

.spanCorrecto {
    color: var(--respuesta_test_correcta) !important;
}

.spanIncorrecto {
    color: var(--repsuesta_test_incorrecta) !important;
}

#contenedor_loader {
    position: absolute;
    width: 100%;
    height:100%;
    left: 0;
    top: 0;
    display: none;
    align-items: center;
    background-color: #000;
    z-index: 999;
    opacity: 0.5;
}

.loader_pregunta{ 
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	width: 120px;
	height: 120px;
	margin: -76px 0 0 -76px;
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid var(--color1);
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

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

.cabecera_modal {
    border: none; 
    background-color: var(--color2);
}

.cabecera_modal button span {
    color: var(--blanco);
}

.cuerpo_modal {
    text-align: center;
}

.fondo_modal {
    border: none;
}

#color_progreso {
    background-color: var(--color1);
}
/*-- //Test --*/



/*-- Gestión usuarios --*/
.titulo_tabla {
    text-align: center;
    color: var(--gris);
}

.fondo_tabla {
    background-color: var(--color1);
    color: var(--blanco);
}

.thead_tabla {
    background-color: var(--blanco);
}

.thead_tabla tr {
    color: var(--negro)
}

.btn_autorizar {
    background-color: var(--color4); 
    color: var(--blanco)
}

.btn_limpiar {
    background-color: var(--color3); 
    color: var(--negro);
}

.btn_limpiar:hover {
    background-color: var(--color8); 
    color: var(--blanco);
}

.btn_baja {
    background-color: var(--color2); 
    color: var(--blanco)
}

.btn_baja:hover {
    background-color: var(--color9); 
    color: var(--blanco)
}

.descripcion_tabla {
    color: var(--negro); 
    font-size: 14px; 
    text-align: center;
}

.btn_reporte {
    background-color: var(--color1); 
    color: var(--blanco);
}

.btn_reporte:hover {
    background-color: var(--color6); 
    color: var(--blanco);
}

.btn_reporte a {
    color: var(--blanco);
}
/*-- //Gestión usuarios --*/



/*-- Webinar --*/
.fw_title {
    text-align: center;
    color: var(--blanco);
}

.fw_subtitle {
    color: var(--color4); 
    text-align: center; 
    line-height: 1.2; 
    font-size: 0.9em; 
    margin-top: 5px;
}

.webinar_form_label {
    padding: 10px; 
    text-align: left;
}

.webinar_form_submit {
    -webkit-border-radius: 20px 20px; 
    width: 95%;
}
/*-- //Webinar --*/



/*-- Responsive design --*/

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .cont_btn_cert {
        top: 50%;
    }
    .cont_btn_contacto {
        top: 50%;
    }
    .btns_inicio {
        padding: 5px 20px;
        font-size: 0.7em;
        font-weight: 600;
    }
    .cont_txt_cert, .cont_txt_contacto { 
        display: none;
    }
    .logo_cuque img {
        width: 30%;
    }
    .webinar_form {
        padding: 40px;
    }
    .login_background {
        padding: 40px 0px;
    }
    .btn_camb_contr {
        padding: 13px 0px;
    }
    .btn_registro {
        width: 150px;
    }
    .policies_text_container {
        margin: 30px 0;
    }
    .cabecera_acordeon_titulos {
        font-size: 0.8em;
    }
    .cont_presentacion {
        padding: 40px 10px;
    }
    .logo_boeh {
        text-align: center;
    }
    .logo_lilly {
        text-align: center;
    }
    .logo_boeh img {
        width: 50%;
        margin-bottom: 30px;
    }
    .logo_lilly img {
        width: 50%;
    }
    .logo_cuque {
        width: 25%;
    }
    #nav-tab a {
        font-size: 0.7em;
    }
    .titulo_modulo {
        font-size: 1.1em;
    }
    .video-container {
        grid-template-columns: 1fr;
    }
    .video-container .video-list .vid {
        flex-wrap: wrap;
    }
    .txt_descargas {
        font-size: 0.8em;
    }
    .btn_test {
        width: 100%;
    }
    .btn_volver {
        width: 75%;
        font-size: 0.9em;
    }
    .cuadro_superior_1 {
        font-size: 1.4em;
    }
    .cuadro_superior_2 {
        font-size: 1.2em;
    }
    .boeh_teoria {
        width: 50%;
        margin-top: 5px;
        margin-bottom: 10px;
    }
    .lilly_teoria {
        width: 40%;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .logo_cuque img {
        width: 25%;
    }
    .cont_txt_cert, .cont_txt_contacto { 
        display: none;
    }
    .webinar_form {
        padding: 50px;
    }
    .cont_presentacion {
        padding: 80px;
    }
    .logo_boeh {
        text-align: center;
    }
    .logo_lilly {
        text-align: center;
    }
    .logo_boeh img {
        width: 30%;
        margin-bottom: 30px;
    }
    .logo_lilly img {
        width: 30%;
    }
    .logo_cuque {
        width: 20%;
    }
    .video-container {
        grid-template-columns: 1fr;
    }
    .btn_test {
        width: 90%;
    }
    .img_metodologia {
        width: 250px;
    }
    .boeh_teoria {
        width: 25%;
        margin-top: 5px;
        margin-bottom: 10px;
    }
    .lilly_teoria {
        width: 15%;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .logo_cuque img {
        width: 20%;
    }
    .cont_txt_cert { 
        display: block;
        font-size: 0.7em;
        top: 25%;
    }
    .cont_txt_contacto { 
        display: block;
        font-size: 0.8em;
        top: 30%;
    }
    .webinar_form {
        padding: 0;
    }
    .login_background {
        padding: 40px 0px;
    }
    .btn_camb_contr {
        padding: 13px 0px;
    }
    .cont_presentacion {
        padding: 40px 10px;
    }
    .video-container {
        grid-template-columns: 1fr;
    }
    .logo_boeh {
        text-align: center;
    }
    .logo_lilly {
        text-align: center;
    }
    .logo_boeh img {
        width: 50%;
    }
    .logo_lilly img {
        width: 40%;
    }
    .logo_cuque {
        width: 5%;
    }
    .info_cuquerella {
        flex-wrap: nowrap;
    }
    .img_metodologia {
        width: 100%;
    }
    .boeh_teoria {
        width: 70%;
    }
    .lilly_teoria {
        width: 60%;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .logo_cuque img {
        width: 15%;
    }
    .cont_txt_cert { 
        font-size: 0.9em;
        top: 25%;
    }
    .cont_txt_contacto { 
        font-size: 0.9em;
        top: 30%;
    }
    .cont_presentacion {
        padding: 40px;
    }
    .video-container {
        grid-template-columns: 1.5fr 1fr;
        padding: 10px;
    }
    .btn_test {
        width: 100%;
    }
    .boeh_teoria {
        width: 50%;
    }
    .lilly_teoria {
        width: 40%;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .cont_txt_cert { 
        font-size: 1.35em;
        top: 40%;
    }
    .cont_txt_contacto { 
        font-size: 1.35em;
        top: 40%;
    }
    .login_background {
        padding: 40px 80px;
    }
    .btn_camb_contr {
        padding: 13px 40px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1400px) {
    .img_metodologia {
        width: 300px;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1900px) {
}

/*-- //Responsive design --*/
