/* --------- Fonts -------- */

@font-face {
    font-family: "montserrat";
    src: url("../fonts/Montserrat/Montserrat-Regular.ttf");
}

@font-face {
    font-family: "montserrat-bold";
    src: url("../fonts/Montserrat/Montserrat-Bold.ttf");
}

@font-face {
    font-family: "montserrat-light";
    src: url("../fonts/Montserrat/Montserrat-Light.ttf");
}

@font-face {
    font-family: "montserrat-medium";
    src: url("../fonts/Montserrat/Montserrat-Medium.ttf");
}

@font-face {
    font-family: "montserrat-black";
    src: url("../fonts/Montserrat/Montserrat-Black.ttf");
}

@font-face {
    font-family: "montserrat-extrabold";
    src: url("../fonts/Montserrat/Montserrat-ExtraBold.ttf");
}

@font-face {
    font-family: "montserrat-extralight";
    src: url("../fonts/Montserrat/Montserrat-ExtraLight.ttf");
}

@font-face {
    font-family: "montserrat-italic";
    src: url("../fonts/Montserrat/Montserrat-Italic.ttf");
}

@font-face {
    font-family: "montserrat-semibold";
    src: url("../fonts/Montserrat/Montserrat-SemiBold.ttf");
}

@font-face {
    font-family: "montserrat";
    src: url("../fonts/Montserrat/Montserrat-Thin.ttf");
}

/* --------- //Fonts -------- */

/* --------- Estilos Globales - Reset -------- */

:root {
    font-size: 16px;
    --texts: 'montserrat';
    --title: 'montserrat-bold';
    --color1: #7D3286;
    --color2: #F9BB01;



    --white: #fff;
    --black: #000;
    --gray: #ccc;

    /*Colores principales*/
    --primario: #fff;
    --secundario: #c3ed2b;

    /*Imágenes de fondo*/
    /* --background: url(../images/back_body.png); */

    /*Color para inputs*/
    --inputs_color: #dedfe1;

    /*Colores botón principal*/
    --button_color: #81b13e;
    --focus_button_color: rgb(109, 151, 49);
    --shadow_button_color: rgba(109, 151, 49, 0.5);

    /*Color para enlaces*/
    --links_color: #dbbd35;
    --focus_links_color: #b89e2d;

    /*Colores para alertas*/
    --success_alert_color: #8cc94b;
    --error_alert_color: #dd3636;
    --warning_alert_color: #ffc900;

    /*Color para viñetas de títulos*/
    --color_markers: #013481;

    /*Color para párrafos*/
    --color_paragraphs: #3e3e3e;

    /*Test*/
    --correct_answer_test: green;
    --wrong_answer_test: red;

}

* {
 
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

body {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    font-smoothing: antialiased;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow-x: hidden;
}

.container-fluid {
    margin: 0 !important;
    padding: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title);
}

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

p {
    margin: 0;
    padding: 0;
    font-size: 1em;
    letter-spacing: 0.0625rem;
    color: var(--color_paragraphs);
}
#neg{
    color: #000 !important;
}
ul,
ol {
    margin: 0;
    margin-top: 3%;
    margin-bottom: 2%;
}

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

a:focus,
a:hover {
    text-decoration: none;
    outline: none;
 
    cursor: pointer !important;
}

/* --------- Cierre estilos globales - Reset -------- */

/* --------- Estilos Predeterminados -------- */

/* Header */

header {
    width: 100%;
    background-color: transparent;
}

header a {
    cursor: pointer;
}

nav {
    background-color: var(--primario);
}

.nav-link-cli {
    background-color: var(--primario);
    color: #fff;
}

.nav-link-cli:hover {
    background-color: var(--secundario);
    color: var(--primario);
}

.link-act {
    background-color: var(--secundario);
    color: var(--primario);
    font-family: Apis;
}

.link-act:hover {
    background-color: var(--primario);
    color: var(--secundario) !important;
    font-family: Apis;
}

/* //Header */

/* Main */

main {
    margin-top: auto;
/* min-height: 100%; */
margin-bottom: auto;
}

.contenedor{

    
}
/* //Main /*

/* Footer */

footer {
    /* position: absolute;
    bottom: 0; */

    width: 100%;
    background-color: var(--primario);
    padding: 30px 0;
}

header{
    
    -webkit-box-shadow: 0px 5px 8px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 5px 8px 0px rgba(0,0,0,0.75);
box-shadow: 0px 5px 8px 0px rgba(0,0,0,0.75);
}

.footer {
    margin-top: auto;
    background-color: transparent;
}

/* //Footer */

#toTop {
    display: none;
    text-decoration: none;
    position: fixed;
    bottom: 20px;
    right: 2%;
    overflow: hidden;
    z-index: 999;
    width: 40px;
    height: 40px;
    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;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    opacity: 0;
    -webkit-filter: alpha(opacity=0);
    -moz-filter: alpha(opacity=0);
    -ms-filter: alpha(opacity=0);
    -o-filter: alpha(opacity=0);
    filter: alpha(opacity=0);
}
/*
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--inputs_color) inset !important;
    -webkit-text-fill-color: rgb(225, 24, 24) !important;
    box-shadow: 0 0 0 30px var(--inputs_color) inset !important;
}

input:-moz-autofill,
input:-moz-autofill:hover,
input:-moz-autofill:focus,
input:-moz-autofill:active {
    -moz-box-shadow: 0 0 0 30px var(--inputs_color) inset !important;
    -moz-text-fill-color: black !important;
    box-shadow: 0 0 0 30px var(--inputs_color) inset !important;
}

input:-ms-autofill,
input:-ms-autofill:hover,
input:-ms-autofill:focus,
input:-ms-autofill:active {
    -ms-box-shadow: 0 0 0 30px var(--inputs_color) inset !important;
    -ms-text-fill-color: black !important;
    box-shadow: 0 0 0 30px var(--inputs_color) inset !important;
}

input:-o-autofill,
input:-o-autofill:hover,
input:-o-autofill:focus,
input:-o-autofill:active {
    -o-box-shadow: 0 0 0 30px var(--inputs_color) inset !important;
    -o-text-fill-color: black !important;
    box-shadow: 0 0 0 30px var(--inputs_color) inset !important;
}

.marker {
    background-color: var(--color_markers);
    color: var(--white);
    font-size: 1.6em;
    font-weight: bold;
    padding: 10px 20px 10px 5%;
    -webkit-border-radius: 0px 30px 30px 0px;
    -moz-border-radius: 0px 30px 30px 0px;
    -ms-border-radius: 0px 30px 30px 0px;
    -o-border-radius: 0px 30px 30px 0px;
    border-radius: 0px 30px 30px 0px;
}


/*Barra de aceptar cookies*/
.cc-cookies {
    background-color: var(--color1) !important;
}

.cc-cookies a.cc-cookie-accept,
.cc-cookies-error a.cc-cookie-accept,
.cc-cookies a.cc-cookie-decline,
.cc-cookies-error a.cc-cookie-decline,
.cc-cookies a.cc-cookie-reset {
    color: var(--color3);
    background-color: var(--color4);
}

.cc-cookies a:hover.cc-cookie-accept,
.cc-cookies-error a:hover.cc-cookie-accept,
.cc-cookies a:hover.cc-cookie-decline,
.cc-cookies-error a:hover.cc-cookie-decline,
.cc-cookies a:hover.cc-cookie-reset {
    color: var(--color4);
    background-color: var(--color1);
}

/* --------- Cierre estilos predeterminados -------- */










































/*-- Generales --*/


.modal-internet-explorer__browser-name {
    color: #00006b;
    font-weight: bold;
}

.modal-certification__header-span {
    color: var(--white);
    font-size: 1.3em;
}

.modal-certification__body {
    color: var(--color1);
    text-align: justify !important;
    line-height: 1.4em;
}



#div_modal {
    z-index: 150;
}

/*-- //Generales --*/


/*-- //Header --*/

/*-- Nav --*/
#navigation-bar {
    z-index: 100;
}

#navigation-bar ul {
    width: 100%;
    margin: auto;
}

.navbar {
    padding: 0px !important;
    width: 100%;
}

.navbar-light .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color2);
    font-weight: bold;
    height: 100%;
    padding: 15px 5px;
}

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

.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(--white);
    background-color: var(--color2);
}


/*-- Alertas --*/
.alert {
    margin-bottom: 10px !important;
}

.alert-success {
    color: var(--black);
    background-color: var(--success_alert_color);
    border: none;
}

.alert-danger {
    color: var(--white);
    background-color: var(--error_alert_color);
    border: none;
}

.alert-warning {
    color: var(--black);
    background-color: var(--warning_alert_color);
    border: none;
}

.alert button:hover,
.alert button:focus,
.alert button:active {
    color: var(--white) !important;
    outline: none !important;
}

.alert button span:hover {
    color: var(--white) !important;
}

/*-- //Alertas --*/

/*-- Formularios --*/
.form {
    left: 0;
    right: 0;
    margin: 0 auto;
    background: var(--color3);
    width: 90%;
    border-radius: 20px 20px;
    -webkit-border-radius: 20px 20px;
    -moz-border-radius: 20px 20px;
}


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

.form legend {
    color: var(--white);
    font-weight: 600;
}

.form__info {
    color: var(--white);
}

.form__field {
    border-left-color: var(--white);
    border-radius: 0;
    background-color: var(--inputs_color);
    border-color: var(--inputs_color);
    color: black;
}

.form__field::placeholder {
    color: black;
    font-size: 14px;
}

.form__field:focus {
    border-color: var(--inputs_color);
    background-color: var(--inputs_color);
    color: black;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-left-color: var(--inputs_color);
}

.form__field:disabled {
    background: var(--gray);
}

.form__icon {
    background-color: var(--inputs_color);
    border-color: var(--inputs_color);
    width: 50px;
    padding: 0;
    display: flex;
    justify-content: center;
}

.form__icon i {
    margin: auto;
    color: black;
}

.form__password-icon {
    cursor: pointer;
    position: absolute;
    color: var(--white);
    right: 2%;
    bottom: 20%;
}

.form__password-icon i {
    color: var(--primario);
}

.provincia_input {
    display: flex;
    justify-content: end;
}

.labe_register {
    font-size: 10pt;
}

.text_codigo_register {
    font-size: 7pt;
}

/*-- Checkboxes --*/
/* The container */

.form-row {
    display: flex;
    justify-content: center;
}

.form-check__container {
    display: block;
    position: relative;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 13px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.form-check__container>p {
    padding-left: 25px;
    font-size: 9pt;
    color: var(--white)
}

/* Hide the browser's default checkbox */
.form-check__container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border-radius: 10px;
    border: 1px solid var(--white);
}

/* On mouse-over, add a grey background color */
.form-check__container:hover input~.checkmark {
    background-color: var(--white);
}

/* When the checkbox is checked, add a blue background */
.form-check__container input:checked~.checkmark {
    background-color: var(--color3);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.form-check__container input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.form-check__container .checkmark:after {
    left: 7px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*-- Checkboxes --*/

.form2 {
    left: 0;
    right: 0;
    margin: 0 auto;
    background: var(--color3);
    width: 90%;
    padding-bottom: 20px;
    margin-bottom: 5%;
    border-radius: 20px 20px;
    -webkit-border-radius: 20px 20px;
    -moz-border-radius: 20px 20px;
}


/*-- //Formularios --*/

/*-- Select2 --*/
/*border color y border radius*/
.form-group .select2-container--default .select2-selection--single {
    border-color: var(--inputs_color) !important;
    border-radius: 0px;
    width: 100% !important;
}

/*input*/
.form-group .select2-container .select2-selection--single {
    height: 35px;
    border: 1px solid var(--inputs_color);
    background-color: var(--inputs_color);
    box-shadow: none;
    font-style: italic;
}

/*color del texto u opción que muestra el input*/
.select2-selection__rendered {
    color: var(--black) !important;
    margin-top: 3px;
}

/*colores para el fondo y letra de todo el desplegable de opciones*/
.select2-search {
    background-color: var(--inputs_color);
    color: var(--black);
}

.select2-search input {
    background-color: var(--inputs_color);
    color: var(--blak);
}

.select2-results {
    background-color: var(--inputs_color);
    color: var(--black);
}

/*estilos para el hover en las opciones*/
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--white) !important;
    color: var(--black);
}

.input-group>.select2-container--bootstrap {
    width: auto;
    flex: 1 1 auto;
}

.input-group>.select2-container--bootstrap .select2-selection--single {
    height: 100%;
    line-height: inherit;
    padding: 0.5rem 1rem;
}

.input-group>.select2-container--bootstrap4 {
    width: auto !important;
    flex: 1 1 auto !important;
}

.input-group>.select2-container--bootstrap4 .select2-selection--single {
    height: 100% !important;
    line-height: inherit !important;
}

/*estilo para el optgroup*/
.select2-results__group {
    font-size: 1em !important;
    text-align: center !important;
    color: #2c365b !important;
}

/*-- //Select2 --*/

/*-- Botones --*/
.btn {
    white-space: normal;
    border-radius: 20px 20px;
    -webkit-border-radius: 20px 20px;
    -moz-border-radius: 20px 20px;
}

.btn.focus,
.btn:focus {
    box-shadow: none;
}

.btn:disabled {
    cursor: not-allowed;
}

.btn a {
    color: white;
}

.btn-main {
    color: var(--white);
    background-color: var(--color4);
    padding: 8px 25px;
    width: 50%;
}

.btn-main:hover {
    color: var(--white);
    background-color: var(--focus_button_color);
}

.btn-main.focus,
.btn-main:focus {
    box-shadow: 0 0 0 0.2rem var(--shadow_button_color);
}

.btn-main.disabled,
.btn-main:disabled {
    color: var(--black);
    background-color: var(--gray);
}

.btn-main:not(:disabled):not(.disabled).active,
.btn-main:not(:disabled):not(.disabled):active,
.show>.btn-main.dropdown-toggle {
    color: var(--white);
    background-color: var(--focus_button_color);
}

.btn-yellow {
    color: var(--primario);
    background-color: var(--secundario);
}

.btn-yellow:hover {
    color: var(--primario);
    background-color: #9aba26;
}

.btn-yellow.focus,
.btn-yellow:focus {
    box-shadow: 0 0 0 0.2rem #9aba26;
}

.btn-yellow.disabled,
.btn-yellow:disabled {
    color: var(--black);
    background-color: var(--gray);
}

.btn-yellow:not(:disabled):not(.disabled).active,
.btn-yellow:not(:disabled):not(.disabled):active,
.show>.btn-yellow.dropdown-toggle {
    color: var(--white);
    background-color: #9aba26;
}

.btn-green {
    color: var(--white);
    background-color: #81b13e !important;
}

.btn-green:hover {
    color: var(--white);
    background-color: rgb(109, 151, 49);
    box-shadow: 0 0 0 0.2rem rgba(109, 151, 49, 0.5);
}

.btn-green.focus,
.btn-green:focus {
    box-shadow: 0 0 0 0.2rem rgba(109, 151, 49, 0.5);
}

.btn-green.disabled,
.btn-green:disabled {
    color: var(--black);
    background-color: var(--gray);
}

.btn-green:not(:disabled):not(.disabled).active,
.btn-green:not(:disabled):not(.disabled):active,
.show>.btn-green.dropdown-toggle {
    color: var(--white);
    background-color: rgb(109, 151, 49);
}

.btn-red {
    color: var(--white);
    background-color: #8f2424;
}

.btn-red:hover {
    color: var(--white);
    background-color: rgb(99, 34, 34);
}

.btn-red.focus,
.btn-red:focus {
    box-shadow: 0 0 0 0.2rem rgba(99, 34, 34, 0.5);
}

.btn-red.disabled,
.btn-red:disabled {
    color: var(--black);
    background-color: var(--gray);
}

.btn-red:not(:disabled):not(.disabled).active,
.btn-red:not(:disabled):not(.disabled):active,
.show>.btn-red.dropdown-toggle {
    color: var(--white);
    background-color: rgb(99, 34, 34);
}

/*-- //Botones --*/

/*-- Login --*/
.form__login-title {
    font-size: 1.9rem;
}

.line_decorativa {
    width: 100%;
    height: 5px;
    
}

.text_register {
    background-color: #35a8e0;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    height: 40px;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.75);
}

.text_register_link {
    align-items: center;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    margin-top: 20px;
    height: 80px;
    margin-bottom: 40px;

}

.text_register_link>p {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #35a8e0;
    color: white;
    height: 100%;
    width: 65%;
    line-height: 1;
    clip-path: polygon(93% 0, 99% 47%, 93% 100%, 0 100%, 0 0);
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.75);
}

.text_register_link>a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #35a8e0;
    color: white;
    height: 100%;
    width: 30%;
    padding-left: 15px;
    font-size: 16pt;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%, 9% 50%);
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.75);
}

.text-below-login {
    color: var(--white);
    font-size: 14px;
}

.color_fondo {
    background-color: #222c58;
}


/*-- Mapa --*/
.btn_color {
    background-color: var(--secundario) !important;
    color: var(--primario);
}

.btn_color:hover {
    background-color: var(--primario) !important;
    color: var(--secundario);
}

.modal-map .modal-dialog {
    max-width: 90%;
}

.modal-map .modal-header {
    background-color: var(--color2);
}

.modal-map .modal-title {
    color: var(--white);
}

.modal-map .modal-header button span {
    color: var(--white);
}

#modal-map__map-section {
    position: relative;
    padding-bottom: 35%;
    height: 0;
    overflow: auto;
}

#modal-map__map-section__map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 450px;
}

#modal-map__map-section__map svg path[fill^="none"] {
    stroke-width: 0px;
}

.modal-map__text-regions {
    font-size: 0.9em;
    color: var(--color1);
    font-weight: 500;
    margin-bottom: 15px;
}

/*-- //Mapa --*/

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

.policies a {
    cursor: auto;
}

.policies__topic {
    margin: 20px 0px;
    text-align: start;
}

.policies__topic span {
    background-color: var(--color_markers);
    color: var(--white);
    padding: 10px;
    font-size: 1.2em;
    font-weight: bold;
}

.policies__content {
    text-align: justify;
    padding: 15px 0px 15px 0px;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1.5;
}

/*-- //Políticas --*/

/*-- Contacto --*/
.contact__title {
    font-size: 1.8rem;
    color: #c3ed2b !important;
}

.contact__info {
    color: var(--white);
    text-align: center;
    line-height: 1.2;
}

.contact__policies {
    font-size: 12px;
}

/*-- //Contacto --*/

/*-- Webinar --*/
.webinar-form__title {
    text-align: center;
    color: var(--white);
}

.webinar-form__info {
    color: var(--links_color);
    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 {
    width: 95%;
    border-radius: 20px 20px;
    -webkit-border-radius: 20px 20px;
    -moz-border-radius: 20px 20px;
}

.webinar-iframe {
    position: relative;
    width: 99%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
}

.webinar-iframe__iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/*-- //Webinar --*/

/*-- Reuniones --*/
.btn-enroll {
    background-color: var(--color2);
    color: var(--white);
}

.btn-signed-up {
    background-color: var(--color1);
    color: var(--white);
}

/*-- //Reuniones --*/

/*-- Test y Encuestas --*/
.evaluation {
    position: relative;
}

.evaluation__content {
    position: relative;
    margin: 30px 20%;
    padding: 0px 10px;
    background: var(--white);
    -webkit-border-radius: 20px 20px;
    -moz-border-radius: 20px 20px;
    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);
}

.evaluation__content--overflow {
    overflow: auto;
}

.evaluation__content--positioning {
    top: 35px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 650px;
}

#question-text {
    font-size: 1.2em;
    font-weight: bold;
}

#question-image {
    margin-top: 20px;
}

.evaluation__content__answer {
    margin: 0 auto;
    color: #000;
    font-size: 15px;
}

#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__element {
    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);
    animation: spin 2s linear infinite;
    -webkit-animation: spin 2s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

#evaluation__progress__color-bar {
    background-color: var(--color1);
}

.modal-confirmation-response .close {
    margin-left: 95%;
}

.modal-confirmation-response .close span {
    font-size: 20px;
}

.modal-confirmation-response__text {
    margin: 0 auto;
}

.modal-end-evaluation .modal-content span {
    margin: 0 auto;
}

.modal-end-evaluation__button {
    margin: 0 auto;
    max-width: 200px;
}

#question_explanation {
    font-size: 0.95em !important;
    line-height: 1.6em;
    text-align: justify;
}

#question_explanation ol {
    list-style: decimal;
    margin-left: 5%;
}

#question_explanation ol li {
    margin-bottom: 10px;
}

#question_explanation ul {
    list-style-type: disc;
    margin-left: 5%;
}

#question_explanation ul li {
    margin-bottom: 10px;
}

/*-- //Test y Encuestas --*/

/*-- Test --*/
#evaluation__explanation {
    text-align: justify;
    font-size: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.correct-answer {
    color: var(--correct_answer_test) !important;
}

.wrong-answer {
    color: var(--wrong_answer_test) !important;
}

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

.modal-certification__header button span {
    color: var(--white);
}

.modal-certification__body {
    text-align: center;
}

.modal-certification__footer {
    border: none;
}

/*-- //Test --*/

/*-- Encuesta --*/
#evaluation__content__free-answer {
    display: none;
}

#evaluation__content__free-answer textarea {
    width: 100%;
}

.evaluation__content__free-answer__section-button {
    width: 100%;
    text-align: end;
}

.evaluation__content__free-answer__section-button__button {
    background-color: var(--color2);
    color: var(--white) !important;
    border-radius: 60px 60px 60px 60px;
    -moz-border-radius: 60px 60px 60px 60px;
    -webkit-border-radius: 60px 60px 60px 60px;
    border: 0px solid #ccc;
    padding: 2% 10%;
    font-weight: bold;
    cursor: pointer;
}

.evaluation__content__free-answer__section-button__button:focus,
.evaluation__content__free-answer__section-button__button:hover {
    background-color: var(--inputs_color);
}

/*-- //Encuesta --*/

/*-- Gestión usuarios --*/
.admin-table--background {
    background-color: var(--primario);
    color: var(--secundario);
}

.admin-table__title {
    text-align: center;
    color: var(--white);
}

.admin-table__header {
    background-color: var(--white);

}

.admin-table__header tr {
    color: var(--black);


}

tbody {
    border: 1px solid white;
}

.admin-table__header tr th {
    

}

.admin-table__header tr th a {
    color: var(--black);

}

#admin-table__pagination .page-item.active .page-link {
   
}

#admin-table__pagination .page-item .page-link {
   
}

.admin-table__footer {
    color: var(--white);
    font-size: 14px;
    text-align: center;
}

/*-- //Gestión usuarios --*/

/*-- Responsive design --*/

#esp_test {
    max-height: 400px;
    overflow: auto;
}

.restart_test {
    color: rgb(99, 34, 34);
    cursor: pointer;
}

/*******************************/

.wrapper {
    display: flex;
    align-items: stretch;


}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    min-height: 100vh;

}

#sidebar.active {
    margin-left: -250px;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

#sidebarColla {
    display: block;
}

#sidebarCollapse {
    display: none;
}

@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
        position: fixed;
        z-index: 2;
    }

    #sidebar.active {
        margin-left: 0;
    }

    #sidebarColla {
        display: block;
    }

    #sidebarCollapse {
        display: block;
    }

    .text_register_link>p {
        font-size: 70%;
    }

    .text_register_link>a {
        font-size: 70%;
    }

}



#sidebar {
    /* don't forget to add all the previously mentioned styles here too */
    background: var(--color2);
    color: #fff;
    transition: all 0.3s;
    gap: 10rem;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: var(--color2);
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #47748b;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;

}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}

#sidebar ul li a:hover {
    color: #7386D5;
    background: #fff;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background: #6d7fcc;
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}

.nav-item {
    margin-top: 1rem;
}

/**************/

.conGrid {
    display: flex;

}

.divLista {
    width: 100%;
}

/*****/
.conFormUser {
    background-color: var(--primario);
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
    border-radius: 20px;

}

.conFormUser form {
    background-color: var(--primario);


}

.conFormUser form legend {
    Color: white;
    margin: 2rem;
}

.conImputForm {
    margin-top: 0 20px 0 20px;

}

@media (min-width: 575.98px) {
    .conImputForm {
        margin-top: 0 20px 0 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}


.menu_lateralUser {

    width: 280px;
    height: 100%;
    overflow-y: scroll;
    top: 0;
    -webkit-box-shadow: 5px 1px 9px 0px rgba(0, 0, 0, 0.66);
    -moz-box-shadow: 5px 1px 9px 0px rgba(0, 0, 0, 0.66);
    box-shadow: 5px 1px 9px 0px rgba(0, 0, 0, 0.66);
    transition: all .4s;
}

#mostrar, #esconder{
    align-items: center;
    justify-content: center;
}


#topic_video {
    width: 80%;
    margin: auto;
}

/* Modal */

.div_modal {
    transition: botton 0.4s ease;
}



/* certificado*/


.icon-share {
    width: 55px;
    height: 55px;
    background: #222c58;
}

.icon-share i {
    color: #c3ed2b;
    font-size: 1.7em;
}

.btn-twitter {
    background-color: #1d99ee;
}

.btn-twitter i {
    color: #fff;
    font-size: 2em;
}

.btn-linkeding {
    background-color: #2967b0;
}

.btn-linkeding i {
    color: #fff;
    font-size: 2em;
}


/* menu lateral */



.menu_lateral {
    background-color: var(--gray2);
    width: 340px;
    /* height: 100%; */
    overflow-y: auto;
    top: 0;
    -webkit-box-shadow: 5px 1px 9px 0px rgba(0, 0, 0, 0.66);
    -moz-box-shadow: 5px 1px 9px 0px rgba(0, 0, 0, 0.66);
    box-shadow: 5px 1px 9px 0px rgba(0, 0, 0, 0.66);
    transition: left .4s ease;

}


.btn_esconder {
    position: absolute;
    left: -360px;
    z-index: 10;

}

.btn_esconder2 {
    position: absolute;
    left: -280px;
    z-index: 10;

}

.btn_mostrar {
    position: static;
    left: 0px;
    z-index: 10;

}


@media (min-width: 1024px) {
    .btn_mostrar {
        margin-right: 340px;
    }

    .btn_esconder {
        position: absolute;
        left: 0;
        z-index: 10;

    }
}





.list2 {
    padding-top: 20%;
}


.list_item {
    overflow: hidden;
}

.list_show1 {
    border-left: 2px solid #303440;
    transition: height .4s;
    height: 0px;
}

.list_show {
    border-left: 2px solid #303440;
    transition: height .4s;
    height: 0;
}



.arrow .list_arrow {
    transform: rotate(90deg);
}

.list_arrow {
    transition: transform .3s;
}

.list_arrow:hover {
    cursor: pointer;
}






/* menu de temas*/
.submenu {
    cursor: pointer;
    transition: all .5s ease;
    color: #28315f;

}

.submenu p {

    color: #28315f;

}

.submenu span {

    color: #28315f;
    font-weight: 600;
}

.submenu:hover {
    cursor: pointer;
    opacity: 80%;
}

.submenu.menu-active {
    background-color: var(--primario);
    color: white;
}

.submenu.menu-active p {

    color: white;
}

.submenu.menu-active span {

    color: white;
}

.temas {
    display: none;

    transition: all .5s ease;

}

.temas.temas-active {
    display: block;
    z-index: 1;
    width: 100%;

}



.fijo {
    left: 0;
    top: 0;
    position: fixed;
    width: 100%;
}

.nav_secundario {
    box-shadow: .1rem .2rem .3rem #333;
}


.sub-contenedor {

    width: 100%;

}

.cont_moduls {
    display: grid;
    grid-template-columns: 300px 100%;
}

.modulo {
    background-color: var(--gray2);
    width: 100%;
    border-left: 1px solid var(--primario);
    z-index: 0;
    transition: all .5s ease;
}

.modulo.modulo-active {
    background-color: var(--secundario);
    z-index: 1;
}

.modulo p {
    color: var(--primario);
}

.bloque {
    display: none;

    z-index: 0;
    height: 100%;
    width: 100%;
    transition: all .5s ease;

}

.bloque.bloque-active {
    display: block;
    z-index: 1;
    width: 100%;

}

.text-porcentaje {
    color: var(--primario);

}



/* BreakPoints Viewports */

@media screen and (width >1600px) {}

@media screen and (width >1280px) and (width <=1600px) {}

@media screen and (width >=800px) and (width <=1280px) {}

@media screen and (width < 800px) {

    :root {
        font-size: 14px;
    }

}

@media screen and (width < 480px) {

    :root {
        font-size: 12px;
    }

}

@media screen and (max-width:428px) {}

@media screen and (max-width:280px) {}



