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

/*-- Variables globales --*/
:root {
    --white: #fff;
    --black: #000;
    --gray: #ccc;

    /*Colores principales*/
    --color1: #2c365b;
    --color2: #05355b;
    --color3: #f9da04;

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

    /*Color para inputs*/
    --inputs_color: #84a1b2;

    /*Colores botón principal*/
    --button_color: #81b13e;
    --focus_button_color: rgb(5, 53, 91);
    --shadow_button_color: rgba(5, 53, 91, 0.5);

    /*Color para enlaces*/
    --links_color: #05355b;
    --focus_links_color: #031a2c;

    /*Colores para alertas*/
    --success_alert_color: #118611;
    --error_alert_color: #ca1111;
    --warning_alert_color: #b89e2d;

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

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

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

/*-- //Variables globales --*/

/*-- Restablecimientos --*/
body {
    padding: 0;
    margin: 0;
    background-image: url('../images/background.svg');
    background-size: cover;
    background-repeat: no-repeat;
    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;
}

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

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

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

a {
    color: var(--links_color);
    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;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-word;
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

a:focus,
a:hover {
    text-decoration: none;
    outline: none;
    color: var(--focus_links_color);
    cursor: pointer !important;
}

/*-- //Restablecimientos --*/
/*-- //Reset code --*/

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

#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;
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
}

.webinar-body {
    padding: 0;
    margin: 0;
    background-image: url('../images/modules/background.jpg') !important;
    background-size: cover;
    background-repeat: no-repeat;
    font-family: "Montserrat", "sans-serif";
}

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

.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;
}

/*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(--color2);
    background: rgb(255, 139, 0);
    background: linear-gradient(270deg, rgba(255, 139, 0, 1) 0%, rgba(255, 223, 0, 1) 100%);
}

.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(--color2);
    background: rgb(255, 139, 0);
    background: linear-gradient(270deg, rgba(255, 139, 0, 1) 0%, rgba(255, 223, 0, 1) 100%);
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    box-shadow: 0 0 0 30px var(--inputs_color) inset !important;;
    -webkit-box-shadow: 0 0 0 30px var(--inputs_color) inset !important;
}
/*-- //Generales --*/

.img_fondo {
    height: auto;
    width: 100%;
}

/*-- Header --*/
header {
    background-color: var(--white);
    width: 100%;
    top: 0;
    z-index: 9;
}

.header-logo {
    cursor: pointer;
}

.nav-cont-items {
    flex-wrap: wrap !important;
}
/*-- //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);
    background: rgb(255, 139, 0);
    background: linear-gradient(270deg, rgba(255, 139, 0, 1) 0%, rgba(255, 223, 0, 1) 100%);
    font-weight: bold;
    height: 100%;
    white-space: nowrap;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: var(--color3);
    background: 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(--color3);
    background: var(--color2);
}
/*-- //Nav --*/

/*-- Inicio --*/
.btn-access {
    color: var(--color2);
    background: rgb(255, 139, 0);
    background: linear-gradient(270deg, rgba(255, 139, 0, 1) 0%, rgba(255, 223, 0, 1) 100%);
    font-weight: bold;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
}

.btn-access:hover,
.btn-access:focus,
.btn-access:active {
    color: var(--color3);
    background: var(--color2);
}

.btn-register {
    color: var(--color3);
    background: rgb(0, 54, 93);
    background: linear-gradient(270deg, rgba(0, 54, 93, 1) 0%, rgba(0, 152, 216, 1) 100%);
    font-weight: bold;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
}

.btn-register:hover,
.btn-register:focus,
.btn-register:active {
    color: var(--color2);
    background: rgb(255, 139, 0);
}
/*-- //Inicio --*/

/*-- Footer --*/
.footer {
    width: 100%;
    height: auto;
    padding: 50px 0 0;
    min-height: 120px;
    background-image: url('../images/wave.svg');
    background-size: cover;
}

@media (min-width: 768px) {
    .container_footer {
        display: grid;
        grid-template-columns: 2fr 1fr;
        margin-top: 20px;
    }
}

.nav_footer {
    height: auto;
    background: rgb(255, 139, 0);
    background: linear-gradient(270deg, rgba(255, 139, 0, 1) 0%, rgba(255, 223, 0, 1) 100%);
}

.row {
    margin: 0;
}

.img-footer {

    height: 5rem;
    width: auto;
}

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

.footer__policies {
    font-weight: bold;
    color: var(--color2);
    margin-top: 4%;
}

.footer__bottom {
    margin-top: 5px;
}

.footer__bottom p {
    color: var(--black) !important;

}

.txt-cuquerella {
    line-height: 1.4em;
}
/*-- //Footer--*/

/*-- Alertas --*/
.alert-success {
    color: var(--white);
    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(--white);
    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(--color2);
    width: 90%;
    border-radius: 10px 10px;
    -webkit-border-radius: 10px 10px;
    -moz-border-radius: 10px 10px;
}

@media (min-width: 768px) {
    .form {
        left: 0;
        right: 0;
        margin: 0 auto;
        background: var(--color2);
        width: 40%;
        border-radius: 10px 10px;
        -webkit-border-radius: 10px 10px;
        -moz-border-radius: 10px 10px;
    }
}

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

.form legend {
    color: var(--color3);
    font-weight: 600;
    text-align: center;
}

.form__info {
    color: rgba(255, 255, 255, 0.9);
}

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

.form__field::placeholder {
    color: var(--black);
    font-size: 14px;
    font-style: italic;
    font-weight: bold;
}

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

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

.form__icon {
    background-color: var(--inputs_color);
    border-color: var(--inputs_color);
    width: 50px;
    padding: 0;
}

.form__icon i {
    margin: auto;
    color: var(--black);
}

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

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

.form2 {
    left: 0;
    right: 0;
    margin: 0 auto;
    background: var(--color2);
    width: 90%;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 5%;
    border-radius: 10px 10px;
    -webkit-border-radius: 10px 10px;
    -moz-border-radius: 10px 10px;
    -webkit-box-shadow: 4px 2px 8px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 4px 2px 8px 0px rgba(0,0,0,0.75);
    box-shadow: 4px 2px 8px 0px rgba(0,0,0,0.75);
}

.form2 label {
    font-style: italic;
}

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

.form2__title {
    color: var(--color3);
    font-size: 1.9em;
    padding-top: 10px;
    line-height: 1.1em;
    font-weight: bold;
}

.form2__text-below {
    font-size: 12px;
}

.form3 {
    left: 0;
    right: 0;
    background: var(--color2);
    width: 90%;
    padding-top: 25px;
    padding-bottom: 15px;
    margin-bottom: 5%;
    border-radius: 5px 5px;
    -webkit-border-radius: 5px 5px;
    -moz-border-radius: 5px 5px;
    -webkit-box-shadow: 4px 3px 15px -3px rgba(0,0,0,0.75);
    -moz-box-shadow: 4px 3px 15px -3px rgba(0,0,0,0.75);
    box-shadow: 4px 3px 15px -3px rgba(0,0,0,0.75);
}
/*-- //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;
}

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

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

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

.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: var(--color1) !important;
}
/*-- //Select2 --*/

/*-- Checkboxes --*/
/* The container */
.form-check__container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 13px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* 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: 1px solid white;
  }
  
  /* On mouse-over, add a grey background color */
  .form-check__container:hover input ~ .checkmark {
    background-color: #eee;
  }
  
  /* When the checkbox is checked, add a blue background */
  .form-check__container input:checked ~ .checkmark {
    background-color: #2196F3;
  }
  
  /* 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 --*/

/*-- Botones --*/
.btn {
    white-space: normal;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border: none !important;
}

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

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

.btn a {
    color: var(--color2);
}

.btn-main {
    font-weight: bold;
    color: var(--color2);
    background: rgb(255, 139, 0);
    background: linear-gradient(270deg, rgba(255, 139, 0, 1) 0%, rgba(255, 223, 0, 1) 100%);
}

.btn-main:hover {
    color: var(--color2);
    background: rgb(255, 139, 0);
    background: linear-gradient(270deg, rgba(255, 139, 0, 1) 0%, rgba(255, 223, 0, 1) 100%);
}

.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: var(--gray);
}

.btn-main:not(:disabled):not(.disabled).active,
.btn-main:not(:disabled):not(.disabled):active,
.show>.btn-main.dropdown-toggle {
    color: var(--color2);
    background: rgb(255, 139, 0);
    background: linear-gradient(270deg, rgba(255, 139, 0, 1) 0%, rgba(255, 223, 0, 1) 100%);
}

.btn-yellow {
    color: var(--white);
    background-color: #dbbd35;
}

.btn-yellow:hover {
    color: var(--white);
    background-color: rgb(184, 158, 45);
}

.btn-yellow.focus,
.btn-yellow:focus {
    box-shadow: 0 0 0 0.2rem rgba(184, 158, 45, 0.5);
}

.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: rgb(184, 158, 45);
}

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

.btn-green:hover {
    color: var(--white);
    background-color: rgb(109, 151, 49);
}

.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);
}

.btn-w-form {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--color2);
    background: rgb(255, 139, 0);
    background: linear-gradient(270deg, rgba(255, 139, 0, 1) 0%, rgba(255, 223, 0, 1) 100%);
}

.btn-w-form:hover {
    color: var(--color2);
    background: rgb(255, 139, 0);
    background: linear-gradient(270deg, rgba(255, 139, 0, 1) 0%, rgba(255, 223, 0, 1) 100%);
}

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

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

.btn-w-form:not(:disabled):not(.disabled).active,
.btn-w-form:not(:disabled):not(.disabled):active,
.show>.btn-w-form.dropdown-toggle {
    color: var(--color2);
    background: rgb(255, 139, 0);
    background: linear-gradient(270deg, rgba(255, 139, 0, 1) 0%, rgba(255, 223, 0, 1) 100%);
}
/*-- //Botones --*/

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

.inputs-margin {
    width: 75%;
    margin: 0 auto;
}

.text-below-login {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85em;
}

.text-below-login2 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85em;
    line-height: 1.4em;
    font-weight: 500;
}

/*-- //Login --*/

/*-- Cambiar contraseña --*/

/*-- //Cambiar contraseña --*/

/*-- Nueva contraseña --*/

/*-- //Nueva contraseña --*/

/*-- Registro --*/
.form2__description {
    color: var(--white);
    line-height: 1.5;
    font-style: italic;
}

.form2__info {
    color: var(--white);
    margin-top: 10px;
    font-style: italic;
}

.form-check {
    width: 100%;
    padding: 3% 12% 3% 24%;
}
/*-- //Registro --*/

/*-- Mapa --*/
.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(--color3);
    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;
    color: var(--black);
}

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

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

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

.contact__policies {
    font-size: 12px;
}

/*-- //Contacto --*/

/*-- Webinar --*/
.cal-name {
    color: var(--color2);
    font-weight: bold;
}

.cal-text {
    color: var(--color2);
    font-weight: bold;
}

.webinar-form__title {
    text-align: center;
    color: var(--color3);
    font-size: 1.3em;
    font-weight: bold;
}

.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;
}

.month {
    font-weight: bold;
    padding: 4px 20px;
    color: var(--color2);
    background: rgb(255, 139, 0);
    background: linear-gradient(270deg, rgba(255, 139, 0, 1) 0%, rgba(255, 223, 0, 1) 100%);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
/*-- //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;
}

/*-- //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: rgba(255, 255, 255, 0.568);
    color: var(--black);
}

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

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

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

.admin-table__header tr th {
    min-width: 100px;
}

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

#admin-table__pagination .page-item.active .page-link {
    color: var(--white);
    background-color: var(--color1);
    border-color: var(--color1);
}

#admin-table__pagination .page-item .page-link {
    color: var(--black);
}

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

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

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

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


/*-- Responsive design --*/

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    /* Generales */
    .marker-container {
        background-color: var(--color_markers);
        padding: 10px;
    }
    .marker {
        background-color: transparent;
        font-size: 1.4em;
    }
    /* Header */
    .header-logo {
        width: 100%;
    }
    .societies-logo {
        margin-left: auto;
        width: 98%;
    }
    .navbar-light .navbar-nav .nav-link {
        font-size: 0.95em;
        width: 100%;
        padding: 5px 0px;
    }
    /* Inicio */
    .home-title {
        width: 100%;
    }
    .home-dates {
        width: 100%;
    }
    .home-moderator {
        width: 100%;
    }
    .home-float-dates {
        float: none;
    }
    .home-float-moderator {
        float: none;
    }
    .btn-access {
        font-size: 0.9em;
        margin-right: 5px;
        margin-bottom: 10px;
    }
    .btn-register {
        font-size: 0.9em;
    }
    .home-schedule {
        padding-top: 30px;
        width: 100%;
    }
    /* Footer */
    .footer__policies-container {
        padding: 5px 0;
        text-align: center;
    }
    .footer__policies {
        font-size: 0.85em;
    }
    .logo-mefasafarma {
        max-width: 200px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .txt-cuquerella {
        font-size: 0.8em;
    }
    /* Botones */
    .btn-main {
        padding: 4px 15px;
        font-size: 1.3em;
    }
    .btn-login-register {
        padding: 4px 15px;
        font-size: 1.2em;
    }
    /* Políticas */
    .policies {
        margin: 30px 0;
    }
    .policies__topic {
        background-color: var(--color_markers);
        padding: 10px;
    }
    .policies__topic span {
        background-color: transparent;
        padding: 0;
        font-size: 1.1em;
    }
    /*-- Login y registro --*/
    .title-container {
        padding-left: 10px;
    }
    .img-title {
        width: 100%;
    }
    .cont-login {
        margin-top: 0;
    }
    /* Formularios */
    .form2 {
        padding-left: 0;
        padding-right: 0;
    }
    /*-- Registro --*/
    .form2__info {
        font-size: 0.6em;
    }
    .form2__description {
        font-size: 0.7em;
    }
    /* Webinar */
    .month {
        font-size: 1em;
    }
    .img-date {
        max-width: 300px;
    }
    .img-cal {
        width: 40px;
    }
    .cal-name {
        font-size: 0.7em;
    }
    .cal-text {
        font-size: 0.8em;
    }
    .dates-container {
        width: 100%;
    }
    .webinar-form {
        max-width: 400px;
        padding: 40px 0 0 0;
        margin: 0 auto;
    }
    .img-times {
        width: 100%;
    }
    .w-title {
        max-width: 400px;
    }
    .w-date {
        max-width: 400px;
    }
    .w-name {
        max-width: 400px;
    }
    .img-w-times {
        width: 100%;
    }
    /* Test y Encuestas */
    .evaluation__content {
        margin: 30px 10px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    /* Header */
    .header-logo {
        width: 450px;
    }
    .societies-logo {
        width: 650px;
        margin-left: auto;
    }
    /* Inicio */
    .home-title {
        width: 100%;
    }
    .home-dates {
        width: 100%;
    }
    .home-moderator {
        width: 100%;
    }
    .btn-access {
        font-size: 1.1em;
        margin: 0px 20px;
    }
    .btn-register {
        font-size: 1.1em;
        margin: 0px 20px;
    }
    .home-schedule {
        padding-top: 40px;
        width: 85%;
    }
    /* Footer */
    .footer__policies-container {
        padding: 5px 0;
        text-align: center;
    }
    .footer__policies {
        font-size: 0.9em;
    }
    .logo-mefasafarma {
        max-width: 250px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .txt-cuquerella {
        font-size: 0.8em;
    }
    /* Políticas */
    .policies__topic {
        background-color: var(--color_markers);
        padding: 10px;
    }
    .policies__topic span {
        background-color: transparent;
        padding: 0;
        font-size: 1em;
    }
    /*-- Login y registro --*/
    .title-container {
        padding-left: 10px;
    }
    .img-title {
        width: 100%;
    }
    .cont-login {
        margin-top: 0;
    }
    /* Botones */
    .btn-main {
        padding: 4px 15px;
        font-size: 1.4em;
    }
    .btn-login-register {
        padding: 4px 15px;
        font-size: 1.4em;
    }
    /*-- Registro --*/
    .form2__info {
        font-size: 0.65em;
    }
    .form2__description {
        font-size: 0.75em;
    }
    /* Webinar */
    .dates-container {
        width: 100%;
    }
    .month {
        font-size: 1.3em;
    }
    .img-date {
        max-width: 300px;
    }
    .img-cal {
        width: 40px;
    }
    .cal-name {
        font-size: 0.8em;
    }
    .cal-text {
        font-size: 0.8em;
    }
    .webinar-form {
        max-width: 600px;
        padding: 50px 50px 0 50px;
        margin: 0 auto;
    }
    .w-title {
        max-width: 400px;
    }
    .w-date {
        max-width: 400px;
    }
    .w-name {
        max-width: 400px;
    }
    .img-w-times {
        width: 100%;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    /* Header */
    .header-logo {
        width: 500px;
    }
    .societies-logo {
        width: 650px;
    }
    /* Inicio */
    .home-float-cont {
        padding: 0 0 0 3%;
    }
    .home-float-dates {
        z-index: 2;
        float: left;
        margin-top: -120px;
    }
    .home-float-moderator {
        z-index: 2;
        float: right;
        margin-top: -140px;
    }
    .btn-access {
        font-size: 1em;
        margin: 0px 20px;
    }
    .btn-register {
        font-size: 1em;
        margin: 0px 20px;
    }
    .home-schedule {
        width: 70%;
    }
    /* Footer */
    .footer__policies-container {
        text-align: center;
    }
    .footer__policies {
        font-size: 0.8em;
    }
    .logo-mefasafarma {
        max-width: 200px;
        padding-top: 30px;
        padding-bottom: 0;
    }
    .txt-cuquerella {
        font-size: 0.7em;
    }
    /*-- Login y registro --*/
    .cont-login {
        margin-top: 30%;
    }
    .title-container {
        position: absolute;
        margin-top: -240px;
        z-index: -10;
    }
    .img-title {
        width: 100%;
    }
    /* Botones */
    .btn-main {
        padding: 4px 15px;
        font-size: 1.4em;
    }
    .btn-login-register {
        padding: 4px 15px;
        font-size: 1.4em;
    }
    /* Webinar */
    .webinar-form {
        padding: 50px 100px 0 100px;
    }
    .date-padding {
        padding: 0 40px;
    }
    .month {
        font-size: 1.6em;
    }
    .img-date {
        max-width: 300px;
    }
    .img-times {
        max-width: 700px;
    }
    .img-w-times {
        width: 70%;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    /* Header */
    .societies-logo {
        width: 750px;
    }
    /* Inicio */
    .home-float-dates {
        margin-top: -140px;
    }
    .home-float-moderator {
        margin-top: -160px;
    }
    .btn-access {
        font-size: 1.2em;
    }
    .btn-register {
        font-size: 1.2em;
    }
    .home-schedule {
        width: 60%;
    }
    /* Footer */
    .footer__policies {
        font-size: 0.8em;
    }
    .txt-cuquerella {
        font-size: 0.8em;
    }
    /* Políticas */
    .policies__topic {
        background-color: transparent;
        padding: 0px;
    }
    .policies__topic span {
        background-color: var(--color_markers);
        padding: 10px;
        font-size: 1.2em;
    }
    /* Programa */
    .img-program {
        width: 85%;
    }
    /*-- Login y registro --*/
    .cont-login {
        margin-top: 30%;
    }
    .title-container {
        position: absolute;
        margin-top: -280px;
        z-index: -10;
    }
    .img-title {
        width: 100%;
    }
    /* Botones */
    .btn-main {
        padding: 4px 15px;
        font-size: 1.6em;
    }
    .btn-login-register {
        padding: 4px 15px;
        font-size: 1.6em;
    }
    /* Webinar */
    .webinar-form {
        max-width: 600px;
        justify-content: center;
        padding: 0px;
    }
    .date-padding {
        padding: 0;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    /* Nav */
    .navbar-light .navbar-nav .nav-link {
        font-size: 1.15em;
        width: 170px;
        padding: 2px 20px 0px 20px;
        border-radius: 20px;
        -moz-border-radius: 20px;
        -webkit-border-radius: 20px;
    }
    /* Inicio */
    .home-float-dates {
        margin-top: -200px;
    }
    .home-float-moderator {
        margin-top: -220px;
    }
    .btn-access {
        font-size: 1.3em;
    }
    .btn-register {
        font-size: 1.3em;
    }
    .home-schedule {
        width: 55%;
    }
    /* Footer */
    
    /* Programa */
    .img-program {
        width: 75%;
    }
    /*-- Login y registro --*/
    .cont-login {
        margin-top: 25%;
    }
    .title-container {
        position: absolute;
        margin-top: -25%;
        z-index: -2;
        padding-left: 20px;
    }
    .img-title {
        width: 100%;
    }
    /* Botones */
    .btn-main {
        padding: 4px 15px;
        font-size: 1.6em;
    }
    .btn-login-register {
        padding: 4px 15px;
        font-size: 1.6em;
    }
    /* Webinar */
    .dates-container {
        width: 90%;
    }
    .date-padding {
        padding: 0 40px;
    }
    .dates-container {
        width: 100%;
    }
    .month {
        font-size: 1.6em;
    }
    .img-date {
        max-width: 300px;
    }
    .img-cal {
        width: 40px;
    }
    .cal-name {
        font-size: 0.8em;
    }
    .cal-text {
        font-size: 0.8em;
    }
    .webinar-form {
        max-width: 400px;
        justify-content: center;
        padding: 0px;
        margin: auto;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1400px) {
    /* Header */
    .header-logo {
        width: 600px;
    }
    .societies-logo {
        margin-right: 5%;
        width: 800px;
    }
    /* Inicio */
    .home-float-dates {
        margin-top: -240px;
    }
    .home-float-moderator {
        margin-top: -260px;
    }
    .btn-access {
        font-size: 1.5em;
    }
    .btn-register {
        font-size: 1.5em;
    }
    .home-schedule {
        width: 800px;
    }
    /* Footer */
    .footer__policies {
        font-size: 0.9em;
    }
    .logo-mefasafarma {
        max-width: 250px;
        padding-top: 10px;
    }
    .txt-cuquerella {
        font-size: 0.9em;
    }
    /*-- Login y registro --*/
    .cont-login {
        margin-top: 25%;
    }
    .title-container {
        position: absolute;
        margin-top: -25%;
        z-index: -2;
        padding-left: 30px;
    }
    .img-title {
        width: 100%;
    }
    /* Botones */
    .btn-main {
        padding: 4px 15px;
        font-size: 1.9em;
    }
    .btn-login-register {
        padding: 4px 15px;
        font-size: 1.9em;
    }
    /* Webinar */
    .dates-container {
        width: 90%;
    }
    .date-padding {
        padding: 0 80px;
    }
    .month {
        font-size: 1.8em;
    }
    .img-times {
        max-width: 800px;
    }
    .webinar-form {
        max-width: 70%;
        justify-content: center;
        padding: 0px;
    }
    .w-title {
        max-width: 600px;
    }
    .w-date {
        max-width: 400px;
    }
    .w-name {
        max-width: 450px;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1900px) {
    /* Header */
    .header-logo {
        width: 700px;
    }
    .societies-logo {
        width: 900px;
    }
    .navbar-light .navbar-nav .nav-link {
        font-size: 1.3em;
        width: 200px;
        padding: 2px 20px 0px 20px;
    }
    /* Inicio */
    .home-title {
        max-width: 90%;
    }
    .home-float-cont {
        padding: 0 5% 0 9%;
    }
    .home-dates {
        max-width: 80%;
        margin-top: -2%;
    }
    .home-moderator {
        width: 80%;
        margin-top: -2%;
    }
    .btn-access {
        font-size: 1.8em;
    }
    .btn-register {
        font-size: 1.8em;
    }
    .home-schedule-cont {
        margin-left: 5%;
    }
    /* Footer */
    .footer__policies {
        font-size: 1em;
    }
    .logo-mefasafarma {
        max-width: 300px;
    }
    .txt-cuquerella {
        font-size: 0.9em;
    }
    /*-- Login y registro --*/
    .cont-login {
        margin-top: 20%;
    }
    .title-container {
        position: absolute;
        margin-top: -20%;
        z-index: -2;
        padding-left: 30px;
    }
    .img-title {
        width: 85%;
    }
    /* Webinar */
    .dates-container {
        width: 100%;
    }
    .date-padding {
        padding: 0 8%;
    }
    .dates-container {
        width: 100%;
    }
    .month {
        font-size: 1.9em;
    }
    .img-date {
        max-width: 400px;
    }
    .img-cal {
        width: 40px;
    }
    .cal-name {
        font-size: 0.9em;
    }
    .cal-text {
        font-size: 0.9em;
    }
    .img-times {
        max-width: 925px;
    }
}

@media (min-width: 2300px) {
    /* Inicio */
    .home-title {
        max-width: 75%;
    }
    .home-float-cont {
        padding: 0 5% 0 12%;
    }
    .home-dates {
        max-width: 75%;
        margin-top: 0%;
    }
    .home-moderator {
        width: 75%;
        margin-top: 0%;
    }
    .btn-access {
        font-size: 1.8em;
    }
    .btn-register {
        font-size: 1.8em;
    }
    .home-schedule-cont {
        margin-left: 10%;
    }
    .home-schedule {
        width: 40%;
    }
    /* Programa */
    .img-program {
        max-width: 65%;
    }
    /*-- Login y registro --*/
    .cont-login {
        margin-top: 15%;
    }
    .title-container {
        position: absolute;
        margin-top: -15%;
        z-index: -2;
        padding-left: 30px;
    }
    .img-title {
        width: 50%;
    }
}

@media (min-width: 3000px) {
    /* Inicio */
    .home-dates {
        margin-top: -10%;
    }
    .home-moderator {
        margin-top: -10%;
    }
    /* Programa */
    .img-program {
        max-width: 2000px;
    }
}

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