@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,500;1,600&display=swap");

@font-face {
    font-family: "All Round Gothic";
    src: url("../fonts/All-Round-Gothic-W01-Book.ttf");
    font-style: normal;
    font-weight: 400;
}

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

    /*Colores principales*/
    --color1: #4d5ca6;
    --color2: #499f8e;
    --color3: #bfbd05;

    /*Imágenes de fondo*/
    --background_index: url(../images/home.png);
    --background_body2: url(../images/back_login.png);
    --background_body: url(../images/back_body.png);

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

    /*Colores botón principal*/
    --button_color: #4d5ca6;
    --focus_button_color: rgb(54, 62, 105);
    --shadow_button_color: rgba(54, 62, 105, 0.5);

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

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

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

    /*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: var(--white);
    font-family: "All Round Gothic", "sans-serif";
    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;
}

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: "All Round Gothic", "sans-serif";
}

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(--black);
    font-weight: bold;
    font-style: italic;
}

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

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

/*-- 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: 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);
}

.background {
    background-color: var(--white);
    min-height: 70vh;
}

.body-background {
    background: var(--background_body) no-repeat 0px 0px;
    background-size: cover;
    min-height: 70vh;
}

.body-background2 {
    background: var(--background_body2) no-repeat 0px 0px;
    background-size: cover;
    min-height: 70vh;
}

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

.page-title {
    color: var(--color3);
    font-size: 2.8em;
    margin-bottom: 20px;
}
/*-- //Generales --*/

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

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

.header__container a {
    margin: 0;
    padding: 0;
    width: 100%;
}
/*-- //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(--white);
    background-color: var(--color2);
    font-family: "All Round Gothic";
    font-size: 1.3em;
    margin-top: 10px;
    padding: 10px 0px;
}

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

.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(--color3);
}
/*-- //Nav --*/

/*-- Footer --*/
.division-line {
    background-color: var(--color2);
    height: 10px;
    margin: 0;
}

.footer__text1 {
    color: var(--color1);
    font-size: 1.1rem;
    line-height: 1.2em;
}

.cmc-logo {
    max-width: 70px;
}

.footer__text2 {
    color: var(--color1);
    line-height: 1.2em;
    font-size: 0.9em;
}

.footer__policies {
    color: var(--color2);
    font-size: 1.1rem;
    line-height: 1.3em;
}

.footer__privacy {
    text-align: end;
}

.footer__cmc-info {
    color: var(--color1);
    line-height: 1.2em;
    font-size: 0.9em;
    text-align: start;
}

.organized-by {
    font-size: 1.25em;
    margin-bottom: 10px;
}

.btn-contact {
    padding: 5px 20px;
    font-size: 1.5em;
}

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

.logo-sanofi {
    width: 70%;
}

.footer__bottom p {
    color: var(--color2) !important;
}
/*-- //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(--white);
    border: 2px solid var(--gray);
    width: 100%;
    border-bottom-left-radius: 20px 20px;
    -webkit-border-bottom-left-radius: 20px 20px;
    -moz-border-bottom-left-radius: 20px 20px;
    border-bottom-right-radius: 20px 20px;
    -webkit-border-bottom-right-radius: 20px 20px;
    -moz-border-bottom-right-radius: 20px 20px;
}

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

.form--margins-internals {
    margin: 0 auto;
    width: 60%;
}

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

.form__info {
    color: var(--color2);
    line-height: 1em !important;
}

.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-weight: bold;
    font-style: italic;
}

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

.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(--white);
    width: 90%;
    margin-bottom: 5%;
    border: 2px solid var(--gray);
    border-bottom-left-radius: 20px 20px;
    -webkit-border-bottom-left-radius: 20px 20px;
    -moz-border-bottom-left-radius: 20px 20px;
    border-bottom-right-radius: 20px 20px;
    -webkit-border-bottom-right-radius: 20px 20px;
    -moz-border-bottom-right-radius: 20px 20px;
}

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

.form2__title {
    color: var(--color3);
    font-size: 2.4em;
    font-weight: 600;
    padding-top: 10px;
}

.form2__info {
    color: var(--color2);
    font-size: 14px;
    line-height: 1.3em;
}

.form2__info2 {
    margin-top: 15px;
    color: var(--color2);
    font-size: 12px;
}

.form2--margins-internals {
    margin: 0 auto;
    width: 85%;
}

.form2 label {
    font-style: italic;
    font-weight: bold;
}

.form2__text-below {
    font-size: 12px;
    text-align: justify;
    font-style: normal !important;
    overflow-wrap: normal;
    word-wrap: normal;
    word-break: keep-all;
    hyphens: none;
}
/*-- //Formularios --*/

/*-- 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 var(--black);
}

/* 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 --*/

/*-- 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;
    font-style: italic;
    margin-top: 3px;
}

/*colores para el fondo y letra de todo el desplegable de opciones*/
.select2-search {
    background-color: var(--inputs_color);
    color: var(--white);
}
.select2-search input {
    background-color: var(--inputs_color);
    color: var(--white);
}
.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: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
}
.btn.focus,
.btn:focus {
    box-shadow: none;
}
.btn:disabled {
    cursor: not-allowed;
}

.btn-main {
    color: var(--white);
    background-color: var(--button_color);
    padding: 8px 25px;
    width: 50%;
    font-size: 1.2em;
}
.btn-main a {
    color: var(--white);
}
.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(--white);
    background-color: #bfbd05;
}
.btn-yellow:hover {
    color: var(--white);
    background-color: rgb(158, 156, 10);
}
.btn-yellow.focus,
.btn-yellow:focus {
    box-shadow: 0 0 0 0.2rem rgba(158, 156, 10, 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(158, 156, 10);
}

.btn-blue {
    color: var(--white);
    background-color: var(--color1);
}
.btn-blue:hover {
    color: var(--white);
    background-color: rgb(54, 65, 119);
}
.btn-blue.focus,
.btn-blue:focus {
    box-shadow: 0 0 0 0.2rem rgba(54, 65, 119, 0.5);
}
.btn-blue.disabled,
.btn-blue:disabled {
    color: var(--black);
    background-color: var(--gray);
}
.btn-blue:not(:disabled):not(.disabled).active,
.btn-blue:not(:disabled):not(.disabled):active,
.show > .btn-blue.dropdown-toggle {
    color: var(--white);
    background-color: rgb(54, 65, 119);
}
.btn-blue a {
    color: var(--white);
}

.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-green {
    color: var(--white);
    background-color: #499f8e;
}
.btn-green a {
    color: var(--white);
}
.btn-green:hover {
    color: var(--white);
    background-color: rgb(55, 110, 99);
}
.btn-green.focus,
.btn-green:focus {
    box-shadow: 0 0 0 0.2rem rgba(55, 110, 99, 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(55, 110, 99);
}

.btn-vp {
    font-size: 1.3em;
    width: 100%;
}

.btn-certificate {
    font-size: 1.3em;
    width: 100%;
}

.btn-certificate a {
    color: var(--white);
}
/*-- //Botones --*/

/*-- Inicio --*/
.index-background {
    background: var(--background_index) no-repeat 0px 0px;
    background-size: cover;
    min-height: 70vh;
}

.logo-course {
    width: 90%;
}

.logo-semergen {
    width: 30%;
}

.index__text1 {
    color: var(--color1);
    padding-right: 10px;
}

.coordinator {
    width: 35%;
}

.index__text2 {
    font-family: "Montserrat", "sans-serif";
    font-size: 1.1em;
    font-weight: 600;
    color: var(--color1);
    text-align: center;
    padding: 0 200px;
    overflow-wrap: normal;
    word-wrap: normal;
    word-break: keep-all;
    hyphens: none;
}

.img-committee__container {
    z-index: 2;
    position: absolute;
}

.index__buttons {
    margin-top: 300px;
}

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

.modal-certification__body {
    color: var(--color1);
    text-align: justify !important;
    font-weight: bold;
    overflow-wrap: normal;
    word-wrap: normal;
    word-break: keep-all;
    hyphens: none;
}
/*-- //Inicio --*/

/*-- Login --*/
.canvas {
    z-index: 2;
    position: absolute;
    margin-top: 120px;
    margin-left: 450px;
}

.txt-question {
    color: var(--color2);
}

.triangle-right {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 70px solid transparent;
    border-bottom: 70px solid transparent;
    border-left: 70px solid var(--color2);
    margin: 10px 6px;
    margin-left: 195px;
}

.triangle-right-border {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 80px solid transparent;
    border-bottom: 80px solid transparent;
    border-left: 80px solid var(--color2);
    margin-left: 190px;
}

.instruct-box {
    width: 200px;
    display: table-cell;
    position: absolute;
    border: 3px solid var(--color2);
    background-color: var(--color2);
    margin: 22px 70px 22px 0;
    height: 110px;
    line-height: 110px;
    padding-left: 5px;
}

.instruct-box span {
    vertical-align: middle;
    display: inline-block;
    line-height: normal;
    color: white;
    font-size: 12px;
    text-align: center;
    overflow-wrap: normal;
    word-wrap: normal;
    word-break: keep-all;
    hyphens: none;
}

.btn-login-register {
    padding: 8px 30px;
}

.btn-login-register a {
    color: var(--white) !important;
}

.form-login__background {
    background-color: #f1f3ce;
    border-bottom-left-radius: 20px 20px;
    -webkit-border-bottom-left-radius: 20px 20px;
    -moz-border-bottom-left-radius: 20px 20px;
    border-bottom-right-radius: 20px 20px;
    -webkit-border-bottom-right-radius: 20px 20px;
    -moz-border-bottom-right-radius: 20px 20px;
}

.login-form__top-bar {
    width: 100%;
    height: 20px;
    background-color: var(--color2);
}

.form__login-title {
    font-size: 2.2em;
}

.text-below-login {
    font-size: 14px;
    font-weight: bold;
    padding-top: 5px;
}

.text-below-login a {
    color: var(--color2) !important;
}
/*-- //Login --*/

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

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

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

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

/*-- Registro --*/
.btn-register {
    padding: 8px 25px;
    width: 50%;
    font-size: 1.4em;
}

.register-check {
    width: 100%;
    margin-left: 22px;
}

.register-check label {
    font-size: 13px;
    padding-left: 15px;
}

.register-check input {
    transform: scale(1.5);
}

#communication-container {
    transition: .5s all linear;
    padding-left: 50px;
    opacity: 1;
    overflow: hidden;
    height: 100%;
}
#communication-container.h-hide {
    opacity: 0;
    height: 0;
}
/*-- //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(--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: 2em;
}

.contact__info {
    color: var(--color2);
    text-align: center;
    line-height: 1.2;
    margin-top: 15px;
}

.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 --*/
.test {
    width: 100%;
}

.btn-back {
    padding: 5px 50px;
    font-size: 1.1em;
}

.btn-back a {
    font-size: 1.2em;
    color: var(--white);
}

.evaluation {
    position: relative;
}

.evaluation__content {
    position: relative;
    margin: 30px 20%;
    padding: 0px 10px;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-left-radius: 20px 20px;
    -webkit-border-bottom-left-radius: 20px 20px;
    -moz-border-bottom-left-radius: 20px 20px;
    border-bottom-right-radius: 20px 20px;
    -webkit-border-bottom-right-radius: 20px 20px;
    -moz-border-bottom-right-radius: 20px 20px;
}

.evaluation__content--overflow {
    overflow: auto;
}

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

#question-text {
    font-size: 1.1em;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    overflow-wrap: normal;
    word-wrap: normal;
    word-break: keep-all;
    hyphens: none;
    text-align: justify;
}

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

.evaluation__content__answer {
    margin: 0 auto;
    color: #000;
    font-size: 1.1em;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-style: normal;
    overflow-wrap: normal;
    word-wrap: normal;
    word-break: keep-all;
    hyphens: none;
    text-align: justify;
}

#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: var(--color1);
    color: var(--white);
}

.admin-table__title {
    text-align: center;
    color: var(--color1);
    font-weight: bold;
}

.admin-table__header {
    background-color: rgba(255, 255, 255, 0.8);
}

.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(--color1);
    font-size: 14px;
    text-align: center;
}
/*-- //Gestión usuarios --*/

/*-- Profesores --*/
.coordinator-title {
    color: var(--color3);
    font-size: 2.5em;
}
.teacher-name {
    color: var(--color1);
    font-weight: bold;
}
.cuadroProfesores{
    padding: 0 5px !important;
}
.teacher-description {
    color: var(--color1);
    padding: 0 0;
    line-height: 1.1em;
}
.teachers-title {
    color: var(--color3);
    font-size: 2.5em;
}
/*-- //Profesores --*/

/*-- Temario --*/
.accordion {
    padding: 0;
}
.accordion .card {
    border-top-left-radius: 0px;
    -webkit-border-top-left-radius: 0px;
    -moz-border-top-left-radius: 0px;

    border-top-left-radius: 0px;
    -webkit-border-top-left-radius: 0px;
    -moz-border-top-left-radius: 0px;

    border-bottom-left-radius: 20px 20px;
    -webkit-border-bottom-left-radius: 20px 20px;
    -moz-border-bottom-left-radius: 20px 20px;

    border-bottom-right-radius: 20px 20px;
    -webkit-border-bottom-right-radius: 20px 20px;
    -moz-border-bottom-right-radius: 20px 20px;
}
.accordion .card-header {
    background-color: var(--color2);
    padding: 20px 30px 10px 30px;
}
.accordion-titles {
    color: var(--white);
    font-weight: bold;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.acc__module-name {
    color: var(--white);
    font-size: 1.3em;
    line-height: 1em;
}
.acc__module-teachers {
    color: var(--white);
    font-weight: normal;
}
.accordion-btn {
    padding: 0;
}
.accordion-img {
    max-width: 40px;
}
.accordion-list {
    font-weight: bold;
    color: var(--black);
}
.accordion-list li {
    counter-increment: list;
    list-style-type: none;
    position: relative;
    margin-bottom: 2px;
    font-family: "Arial", "sans-serif";
    font-size: 15px;
}
.accordion-list li:before {
    color: var(--color2);
    content: counter(list) ".";
    left: -32px;
    position: absolute;
    text-align: right;
    width: 26px;
}
/*-- //Temario --*/

/*-- Metodología --*/
.methodology-block {
    background-color: var(--white);
    height: 100%;
    padding: 40px;
    border-bottom-left-radius: 20px 20px;
    -webkit-border-bottom-left-radius: 20px 20px;
    -moz-border-bottom-left-radius: 20px 20px;
    border-bottom-right-radius: 20px 20px;
    -webkit-border-bottom-right-radius: 20px 20px;
    -moz-border-bottom-right-radius: 20px 20px;
    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;
}
.methodology-top-block {
    width: 100%;
    background-color: var(--color1);
    height: 25px;
}
.metho-date-title {
    background-color: var(--color2);
    color: var(--white);
    padding: 5px 30px;
    margin-bottom: 5px;
}
.metho-date-day {
    color: var(--color1);
    font-weight: bold;
    font-size: 2.7em;
}
.metho-date {
    color: var(--color1);
    font-weight: bold;
    font-size: 1.2em;
}
.metho-subtitles {
    color: var(--color1);
}
.metho-text {
    text-align: justify;
    line-height: 1.8em;
    color: black;
}
.metho-list li {
    margin: 0;
    padding: 0;
    font-size: 1em;
    letter-spacing: 1px;
    line-height: 1.8em;
    color: var(--black);
    text-align: justify;
}
.txt-editions {
    text-align: start;
    font-size: 1em;
    line-height: 1.3em;
    text-align: justify;
}
/*-- //Metodología --*/

/*-- Contenido docente --*/
.overpasses {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.tab {
    display: none
}
.step {
    width: 300px;
    height: 50px;
    margin: 0;
    background-color: var(--color3);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4em;
    color: var(--white);
    font-weight: bold;
}
.step:hover {
    background-color: var(--color2);
    cursor: pointer;
}
.step.active {
    background-color: var(--color2);
}
.step-margin {
    margin-right: 10px;
}
.tab-module-title {
    display: flex;
    align-items: center;
    height: 50px;
    padding-left: 20px;
    background-color: var(--color2);
    color: var(--white);
    font-weight: bold;
    font-size: 1.4em;
}
.tab-content {
    border-bottom-left-radius: 20px 20px;
    -webkit-border-bottom-left-radius: 20px 20px;
    -moz-border-bottom-left-radius: 20px 20px;
    border-bottom-right-radius: 20px 20px;
    -webkit-border-bottom-right-radius: 20px 20px;
    -moz-border-bottom-right-radius: 20px 20px;
    background-color: rgba(255, 255, 255, 0.5);
}
.gout-square-title {
    color: var(--color1);
    width: 180px;
    height: 100px;
    margin: 0 0 0 -20px;
    transform: skew(20deg);
    z-index: 2;
    position: absolute;
    font-size: 1em;
    font-weight: bold;
    margin-top: -10px;
    margin-left: 120px;
    /*border: 1px solid blue;*/
}
.gout-square-title span {
    display: inline-block;
    transform: skew(-20deg);
}
.gout-content {
    width: 140px;
}
.pdf-icon {
    width: 45px;
    z-index: 2;
    position: absolute;
    margin-top: 100px;
    margin-left: -10px;
}
.content-subtitle {
    color: var(--color1);
    font-weight: bold;
    text-align: center;
    font-size: 0.9em;
    margin-bottom: 2px;
}
.btn-content-pdf {
    width: 100%;
    padding: 8px 30px;
}
.btn-content-pdf a {
    color: var(--white);
}
.gout-stroke {
    width: 130px;
    z-index: 2;
    position: absolute;
    margin-top: -40px;
    margin-left: -50px;
}
.btn-content-theory {
    z-index: 10;
    position: relative;
    width: 100%;
    padding: 8px 30px;
}
.btn-content-theory a {
    color: var(--white);
    font-size: 1.4em;
}
.btn-content-pdf2 {
    z-index: 3;
    position: relative;
    width: 100%;
    padding: 8px 30px;
}
.btn-content-pdf2 a {
    color: var(--white);
    font-size: 1.2em;
}
.btn-content-test {
    z-index: 3;
    position: relative;
    width: 100%;
    padding: 8px 30px;
    height: auto;
}
.btn-content-test a {
    color: var(--white);
    font-size: 1.3em;
    line-height: 1.1em;
}
.total-correct-answers {
    margin: 20px 0px 0px 0px;
    text-align: center;
    background-color: var(--color1);
    color: var(--white);
    padding: 15px 25px;
    font-size: 0.9em;
    font-weight: bold;
}
/*-- //Contenido docente --*/

/*-- Teorías PDF --*/

.btn_atras{
    margin: 10px 0px;
    height:50px;
    min-width: 100px;
    background-color:#53adac;
}

.lista_description_image{
    margin: 0px !important;
    padding: 10px;
}

.lista_description_image li{
    margin-bottom: 5px !important;
}

.btn_atras > a{
   display:flex;
   justify-content:center;
   align-items:center;
    height:100%;
    width:100%;
    min-width: 100px;
    color: white;
    font-size:14pt;
    font-weight:700;
}

.tema_titular{
    color:#2f549e;
    font-weight: bold;
}

.linea_referencia{
    color: #355da3 !important;
}

.linea_referencia2{
    color: #355da3 !important;
    font-size: 12px !important;
}

.lista_green{
    margin-left: 40px;
    margin-top: 2%;
    margin-bottom: 2%;
}

.lista_green > li{
    list-style-type: none;
    font-size: 1.3em;
    line-height: 1.4em;
    margin-bottom: 10px;
}


.lista_green > li::before{

    color: #bfbd05;
    content: "•";
    left: 50px;
    position: absolute;
    text-align: right;
    font-size: 14pt;
    width: 26px;
}

.lista_gota2 {
    margin-top: 5px;
}

.lista_gota2 > li{
    list-style-type: none;
    display: flex;
}

.lista_gota2 img {
    margin-top: 10px;
    width:7px;
    height:7px;
    margin-right:20px;
}

.guion_rombo{
    height:5px;
    width:5px;
    background-color:#326c8d;
    -webkit-transform: rotate(45deg) skew(15deg, 15deg);
    -moz-transform: rotate(45deg) skew(15deg, 15deg);
    -ms-transform: rotate(45deg) skew(15deg, 15deg);
    -o-transform: rotate(45deg) skew(15deg, 15deg);
    transform: rotate(45deg) skew(15deg, 15deg);
}

.color_parrafo{
    color:#3354a6;
}

.sub_tema{
    color: #395496;
    font-weight: bold;
    margin-left: 40px;
    display: flex;
    align-items: center;
}

.sub_tema img {
    width: 30px;
    height: 30px;
}

.barra_subtema{
  width: 100%;
  background-color: #4c9d97;
  border-radius: 0px 0px 0px 30px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.barra_subtema > p{
    color: white !important;
}

.cabecera_tabla{
    background-color: #4d5ca6;

}

.subtema_tabla{
    background-color:#4c9d97;
}

.columna_resalto{
    background-color:#e3e4e4;
}

.columna_resalto2{
    background-color:#bacfe1;
}

.columna_resalto3{
    background-color:#9ac3e1;
}

.columna_resaltado4{
    background-color:#c5e0b3;
}

.cabecera_tabla > p{
    color: white !important;
}

.tabla_border,.tabla_border  td,.tabla_border th {
    border: 1px solid !important;
    font-size: 8pt;
  }

.tabla_border {
    border-collapse: collapse;
}

.text_invetido{
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    text-align: center;
}

.columna_resaltado5{
    background-color: #4d5ca6;
    color: white;
}

.columna_resaltado6{
    background-color: #326c61;
    color: white;
}

.columna_resaltado7{
    background-color: #499f8e;
    color: white;
}

.columna_resaltado8{
    background-color: #bfbd05;
    color: white;
}

.columna_resaltado9{
    background-color: #c55a11;
    color: white;
}

.columna_resaltado10{
    background-color: #d2eae5;
}

.lista_tabla {
    margin-top: 0px;
    margin-bottom: 5px;
}

.lista_tabla li{
    list-style-type:none;
}

.lista_tabla li::before {
    color: rgb(24, 180, 63);
    content: "•";
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.txt-theories {
    overflow-wrap: normal;
    word-wrap: normal;
    word-break: keep-all;
    hyphens: none;
    font-family: Arial, Helvetica, sans-serif;
}

.txt-theories table {
    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;
}

.txt-theories p {
    font-size: 1.25em;
    line-height: 1.3em;
    color: black;
}

.lista_biblio li::marker {
    color: #599590;
}

.txt-theories ol li {
    font-size: 1.3em;
    line-height: 1.4em;
    color: black;
    margin-bottom: 15px;
}

.txt-sup {
    color: #3f796c;
}

.txt-figure {
    color: #3f796c;
}

.celda_verde {
    background-color: #4c9d97;
}

.celda_verde p {
    color: var(--white);
}

.txt-vertical {
    transform: rotate(180deg);
    writing-mode: vertical-lr;
    text-align: center;
}

.lista_gota {
    display: flex;
    margin-bottom: 10px;
}

.lista_gota p {
    text-align: justify;
    padding-top: 5px;
    width: 90%;
}

.lista_gota_img {
    width: 50px;
    margin-right: 10px;
}

.lista_gota_img img {
    width: 30px;
}

.txt-el-mod-4 {
    font-size: 1.3em;
    line-height: 1.4em;
}

.txt_referencia {
    font-size: 1em !important;
}

.tabla_centrada td {
    text-align: center;
}

.tabla3_mod4 p {
    font-size: 1.4em;
    padding: 5px;
}

.tabla3_mod4 li {
    font-size: 1.4em;
}

.tabla5_mod4 p {
    font-size: 1.2em;
    padding-left: 5px;
    padding-right: 5px;
}

.lista_numero_color li::marker {
    color: #395496;
}

.lista_numero_bold li::marker {
    font-weight: bold;
}

.full_tabla_theory{
    width: 100%;
}

.tabla_theory{

}

.frst_table tr{
    display: grid;
    grid-template-columns: 40% 60%;
}

.frst_table tr td{
    padding: 0.5rem 1rem;
}

.frst_table tbody tr td{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.tabla_theory.frst_table .list_tables li {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-start;
    font-size: 1rem;
    text-align: left;
}

.scnd_table{

}

.tabla_theory thead tr td{
    padding: 0.25rem 0;
}

.tabla_theory thead tr td p{
    font-size: 1.25rem;
}

.tabla_theory tbody tr td p{
    font-size: 1rem;
    padding: 0.25rem 0;
    display: inline;
    flex-direction: column;
    word-wrap: break-word;
    word-break: auto-phrase;
    -moz-word-break: auto-phrase;
    -o-word-break: auto-phrase;
    -ms-word-break: auto-phrase;
}

.tabla_theory tbody tr:nth-child(odd){
    background-color: #deeaf6;
}

.tabla_theory tbody tr:nth-child(even){
    background-color: #ffffff;
}

.list_tables{
    margin: 0;
}

.list_tables li{
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.8rem;
}

.list_tables li img{
    object-fit: contain;
    width: auto;
    height: 0.5rem;
}

.scnd_table tbody tr td:nth-child(1){
    background-color: #2e5395;
    border-color: white !important;
    text-align: left;
    padding: 0.5rem 1rem;
}

.scnd_table tbody tr td:nth-child(1) p{
    color: #ffffff;
}

.scnd_table tbody tr td{
    border-color: #2e5395 !important;
}

.scnd_table tbody .list_tables li{
    text-align: left;
    font-size: 1rem;
    position: relative;
    line-height: 1.5;
}

.scnd_table tbody .list_tables li:before{
    content: "";
    position: absolute;
    top: 10px;
    left: -10px;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: #2e5395;
}

.tabla_theory.thrt_table tbody tr{
    background-color: initial;
}

.tabla_theory.frth_table{
    width: 80%;
    margin: auto;
}

.tabla_theory.frth_table tbody tr{
    background-color: initial;
}

.tabla_theory.frth_table .columna_resaltado5{
    border: 1px solid #4d5ca6 !important;
    text-align: left;
}

.tabla_theory.frth_table tr td{
    border: 1px solid #2e5395 !important;
    text-align: left;
    padding: 0.5rem 1rem;
}

.tabla_theory.ffth_table{
    width: 95%;
    margin: auto;
}

.tabla_theory.ffth_table tbody tr td{
    padding: 0.5rem 1rem;
    border: 2px solid #2e5395 !important;
}

.tabla_theory.ffth_table tbody tr td p{
    font-size: 1.25rem;
}

.tabla_theory.sxth_table{
    width: 100%;
    border: 1px solid #2e5395 !important;
}

.tabla_theory.sxth_table tbody tr:nth-child(odd){
    background-color: #ffffff;
}

.tabla_theory.sxth_table tbody tr:nth-child(even){
    background-color: #deeaf6;
}

.tabla_theory.sxth_table .columna_resaltado5, .tabla_theory.svnth_table .columna_resaltado5, .tabla_theory.egth_table .columna_resaltado5{
    border-left: 2px solid white !important;
    border-right: 2px solid white !important;
    text-align: left;
}

.tabla_theory.sxth_table tbody tr td{
    text-align: justify;
    padding: 0.5rem 1rem;
    border: 2px solid #2e5395 !important;
}

.tabla_theory.sxth_table tbody tr td:first-child{
    text-align: left;
}

.tabla_theory.sxth_table tbody tr td p{
    font-size: 1rem;
    display: inline;
    letter-spacing: 0px;
}

.tabla_theory.svnth_table{

}

.tabla_theory.svnth_table tbody tr:nth-child(2) {
    background-color: #f5ba92;
}

.tabla_theory.svnth_table tbody tr:nth-child(3) {
    background-color: #ffe499;
}

.tabla_theory.svnth_table tbody tr:nth-child(4) {
    background-color: #c5dfb3;
}

.tabla_theory.svnth_table .list_tables{
    flex-direction: column;
    display: flex;
}

.tabla_theory.svnth_table .list_tables li{
    display: inline;
    text-align: left;
    font-size: 1rem;
    position: relative;
    line-height: 1.5;
    margin-left: 1rem;
}

.tabla_theory.svnth_table .list_tables li:before{
    content: "";
    position: absolute;
    top: 8px;
    left: -10px;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: #2e5395;
}

.tabla_theory.svnth_table, .tabla_theory.egth_table{
    width: 95%;
}

.tabla_theory.svnth_table tbody tr td.columna_resaltado5, .tabla_theory.egth_table tbody tr td.columna_resaltado5{
    text-align: center;
}

.tabla_theory.svnth_table tbody tr td, .tabla_theory.egth_table tbody tr td{
    text-align: left;
    padding: 0.5rem 1rem;
    border: 2px solid #2e5395 !important;
}

.tabla_theory.svnth_table tbody tr td p, .tabla_theory.egth_table tbody tr td p{
    font-size: 1rem;
    display: inline;
    letter-spacing: 0px;
}

.tabla_theory.svnth_table tbody .list_tables, .tabla_theory.egth_table tbody .list_tables{
    margin: 0;
    padding: 0;
}

.tabla_theory.svnth_table tbody .list_tables li, .tabla_theory.egth_table tbody .list_tables li{
    font-size: 1rem;
}


/*-- //Teorías PDF --*/

/*-- 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;
    }
    .page-title {
        line-height: 1em;
    }
    /* Footer */
    .footer__privacy {
        text-align: center;
    }
    .logo-sanofi {
        width: 150px;
    }
    .footer__cmc-info {
        text-align: center;
    }
    .organized-by {
        margin-top: 10px;
    }
    /* Botones */
    .btn-main {
        padding: 8px 0px;
        min-width: 71px;
        max-width: 200px;
    }
    .btn-register {
        padding: 8px 0px;
        min-width: 71px;
        max-width: 200px;
    }
    /* 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;
    }
    /* Inicio */
    .logo-course {
        width: 100%;
        margin-bottom: 20px;
    }
    .logo-semergen {
        width: 125px;
    }
    .coordinator {
        margin-top: 20px;
        width: 100%;
    }
    .index__text2 {
        font-size: 1.1em;
        margin-top: 120px;
        margin-bottom: 0;
        padding: 0;
    }
    .img-committee {
        width: 100%;
    }
    .index__buttons {
        margin-top: 50px;
        max-width: 200px;
    }
    /* Forms */
    .form--margins-internals {
        width: 100%;
    }
    /* Login */
    .canvas {
        position: sticky;
        margin-top: 30px;
        margin-left: 0px;
        margin-bottom: 180px;
    }
    /* Webinar */
    .webinar-form {
        padding: 40px 0px;
    }
    /* Test y Encuestas */
    .evaluation__content {
        margin: 30px 10px;
    }
    /* Profesores */
    .coordinator-title {
        color: var(--color3);
        font-size: 2.8em;
        margin-bottom: 20px;
        line-height: 1.2em;
    }
    .teacher-name {
        color: var(--color1);
        font-weight: bold;
        line-height: 1.2em;
        margin-top: 15px;
        margin-bottom: 10px;
    }
    .cuadroProfesores{
        padding: 0 5px !important;
    }
    .teacher-description {
        color: var(--color1);
        padding: 0 0;
        line-height: 1.1em;
    }
    .teachers-title {
        color: var(--color3);
        font-size: 3em;
        margin-top: 25px;
        margin-bottom: 10px;
        line-height: 1.2em;
    }
    .img-coordinator {
        max-width: 140px;
    }
    .img-teachers {
        max-width: 160px !important;
    }
    /* Temario */
    .accordion .card-header {
        padding-left: 15px;
        padding-right: 15px;
    }
    .accordion-titles {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
    }
    .acc__module-name {
        margin-top: 15px;
        margin-bottom: 10px;
        text-align: start;
    }
    .acc__module-teachers {
        line-height: 1.2em;
    }
    .accordion .card-body {
        padding-left: 0px;
        padding-right: 10px;
    }
    .accordion-list li {
        margin-bottom: 10px;
    }
    /* Metodología */
    .methodology-block {
        padding-left: 5px;
        padding-right: 15px;
    }
    /* Contenido docente */
    .step {
        width: 500px;
        height: 50px;
        font-size: 0.8em;
        font-weight: bold;
        margin: 0;
        text-align: center;
    }
    .tab-module-title {
        height: 70px;
        padding-left: 10px;
        font-size: 1em;
    }
    .gout-square-title {
        width: 100%;
        height: auto;
        transform: skew(0deg);
        position: sticky;
        display: inline-block;
        font-size: 1em;
        font-weight: bold;
        margin: 0;
        text-align: center;
    }
    .gout-square-title span {
        transform: skew(0deg);
    }
    /* Teorías PDF */
    .txt-theories h1 {
        font-size: 1.8em;
    }
    .sub_tema {
        margin-left: 0;
    }
    .lista_green{
        margin-left: 40px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    /* Footer */
    .logo-sanofi {
        width: 150px;
    }
    .footer__privacy {
        text-align: center;
    }
    .footer__cmc-info {
        text-align: center;
    }
    .organized-by {
        margin-top: 10px;
    }
    /* Políticas */
    .policies__topic {
        background-color: var(--color_markers);
        padding: 10px;
    }
    .policies__topic span {
        background-color: transparent;
        padding: 0;
        font-size: 1em;
    }
    /* Inicio */
    .logo-course {
        width: 100%;
        margin-bottom: 20px;
    }
    .logo-semergen {
        width: 160px;
    }
    .coordinator {
        margin-top: 20px;
        width: 80%;
    }
    .index__text2 {
        font-size: 1.1em;
        margin-top: 130px;
        margin-bottom: 0;
        padding: 0;
    }
    .img-committee {
        width: 400px;
    }
    .index__buttons {
        margin-top: 60px;
        max-width: 250px;
    }
    /* Forms */
    .form--margins-internals {
        width: 100%;
    }
    /* Login */
    .canvas {
        position: sticky;
        margin-top: 30px;
        margin-left: 0px;
        margin-bottom: 180px;
    }
    /* Webinar */
    .webinar-form {
        padding: 50px;
    }
    /* Profesores */
    .coordinator-title {
        color: var(--color3);
        font-size: 2.8em;
        margin-bottom: 20px;
    }
    .teacher-name {
        color: var(--color1);
        font-weight: bold;
        line-height: 1.2em;
        margin-top: 15px;
        margin-bottom: 10px;
        text-align: center;
    }
    .teacher-description {
        color: var(--color1);
        line-height: 1.1em;
        max-width: 500px;
        text-align: center;
        padding: 0 0;
    }
    .teachers-title {
        color: var(--color3);
        font-size: 3em;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .img-coordinator {
        max-width: 140px;
    }
    .img-teachers {
        max-width: 160px !important;
    }
    /* Contenido docente */
    .step {
        font-size: 1.1em;
    }
    .tab-module-title {
        font-size: 1.1em;
    }
    .btn-content-theory {
        width: 214px;
    }
    .btn-content-pdf2 {
        width: 214px;
    }
    .btn-content-test {
        width: 214px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    /* Footer */
    .logo-sanofi {
        width: 150px;
        margin-top: 30px;
    }
    .footer__privacy {
        text-align: center;
    }
    .footer__cmc-info {
        text-align: start;
    }
    .organized-by {
        margin-top: 0px;
    }
    /* Inicio */
    .logo-course {
        width: 75%;
        margin-bottom: 0px;
    }
    .logo-semergen {
        width: 180px;
    }
    .coordinator {
        margin-top: 10px;
        width: 60%;
    }
    .index__text2 {
        font-size: 1.1em;
        margin-top: 160px;
        margin-bottom: 0;
        padding: 0;
    }
    .img-committee {
        width: 450px;
    }
    .index__buttons {
        margin-top: 60px;
        max-width: 250px;
    }
    /* Forms */
    .form--margins-internals {
        width: 100%;
    }
    /* Login */
    .canvas {
        position: sticky;
        margin-top: 30px;
        margin-left: 0px;
        margin-bottom: 180px;
    }
    /* Webinar */
    .webinar-form {
        padding: 100px 200px 0px 200px;
    }
    /* Contenido docente */
    .step {
        font-size: 1.4em;
    }
    .tab-module-title {
        font-size: 1.4em;
    }
    .btn-content-theory {
        width: 100%;
    }
    .btn-content-pdf2 {
        width: 100%;
    }
    .btn-content-test {
        width: 100%;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    /* Footer */
    .logo-sanofi {
        width: 150px;
        margin-top: 0;
    }
    /* Inicio */
    .logo-course {
        width: 100%;
    }
    .logo-semergen {
        width: 200px;
    }
    .coordinator {
        margin-top: 0;
        width: 65%;
    }
    .index__text2 {
        margin-top: 450px;
        margin-bottom: 20px;
        padding: 0 20px;
    }
    .img-committee {
        width: 300px;
    }
    .index__buttons {
        margin-top: 400px;
        max-width: 250px;
    }
    /* Políticas */
    .policies__topic {
        background-color: transparent;
        padding: 0px;
    }
    .policies__topic span {
        background-color: var(--color_markers);
        padding: 10px;
        font-size: 1.2em;
    }
    /* Forms */
    .form--margins-internals {
        width: 100%;
    }
    /* Login */
    .canvas {
        position: sticky;
        margin-top: 30px;
        margin-left: 0px;
        margin-bottom: 180px;
    }
    .form-login__background {
        height: 435px;
    }
    /* Webinar */
    .webinar-form {
        padding: 0px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    /* Inicio */
    .index__text2 {
        margin-top: 480px;
        margin-bottom: 20px;
        padding: 0 20px;
    }
    .img-committee {
        width: 350px;
    }
    /* Forms */
    .form--margins-internals {
        width: 100%;
    }
    /* Login */
    .canvas {
        position: absolute;
        margin-top: 80px;
        margin-left: 250px;
    }
    .form-login__background {
        height: 420px;
    }
    /* Profesores */
    .cuadroProfesores{
        padding: 0 5px !important;
    }
    .cuadroImagen{
        padding: 0 0px !important;
    }

    .coordinator-title {
        color: var(--color3);
        font-size: 2.5em;
        margin-bottom: 20px;
        text-align: start;
    }
    .teacher-name {
        color: var(--color1);
        font-weight: bold;
        line-height: 1.2em;
        margin-top: 15px 10px !important;
        margin-bottom: 10px;
        text-align: start;
    }
    .teacher-description {
        color: var(--color1);
        padding: 0 0;
        line-height: 1.1em;
        max-width: 500px;
        text-align: start;
        hyphens: none;
    }
    .teachers-title {
        color: var(--color3);
        font-size: 2.5em;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .img-coordinator {
        max-width: 140px;
    }
    .img-teachers {
        max-width: 160px !important;
    }
    .pru{
        gap: 38px;
        padding: 0px !important;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1400px) {
    /* Inicio */
    .logo-course {
        width: 90%;
    }
    .logo-semergen {
        width: 30%;
    }
    .coordinator {
        width: 35%;
    }
    .index__text2 {
        margin-top: 500px;
        margin-bottom: 20px;
        padding: 0 200px;
    }
    .index__buttons {
        margin-top: 400px;
        max-width: 250px;
    }
    .img-committee {
        width: 400px;
    }
    /* Forms */
    .form--margins-internals {
        width: 60%;
    }
    /* Login */
    .canvas {
        position: absolute;
        margin-top: 120px;
        margin-left: 430px;
    }
    .form-login__background {
        height: 435px;
    }
    /* Contenido docente */
    .gout-square-title {
        margin-top: -15px;
        margin-left: 100px;
    }
    .btn-content-theory {
        width: 214px;
    }
    .btn-content-pdf2 {
        width: 214px;
    }
    .btn-content-test {
        width: 214px;
    }

}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1900px) {
    /* Login */
    .canvas {
        position: absolute;
        margin-top: 120px;
        margin-left: 600px;
    }
    .form-login__background {
        height: 430px;
    }
    /* Contenido docente */
    .gout-square-title {
        margin-top: -10px;
        margin-left: 120px;
    }

    /* Profesores */
    .cuadroProfesores{
        padding: 0 5px !important;
    }
    .cuadroImagen{
        padding: 0 0px !important;
    }

    .coordinator-title {
        color: var(--color3);
        font-size: 2.5em;
        margin-bottom: 20px;
        text-align: start;
    }
    .teacher-name {
        color: var(--color1);
        font-weight: bold;
        line-height: 1.2em;
        margin-top: 15px 10px !important;
        margin-bottom: 10px;
        text-align: start;
    }
    .teacher-description {
        color: var(--color1);
        padding: 0 0;
        line-height: 1.1em;
        max-width: 500px;
        text-align: start;
        hyphens: none;
    }
    .teachers-title {
        color: var(--color3);
        font-size: 2.5em;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .img-coordinator {
        max-width: 140px;
    }
    .img-teachers {
        max-width: 180px !important;
    }
    .pru{
        gap: 10px;
        padding: 0px !important;
    }
}

@media (min-width: 2300px) {
    /* Login */
    .canvas {
        position: absolute;
        margin-top: 120px;
        margin-left: 750px;
    }
}

@media (min-width: 2800px) {
    /* Login */
    .canvas {
        position: absolute;
        margin-top: 120px;
        margin-left: 1100px;
    }
}

@media (min-width: 3300px) {
    /* Login */
    .canvas {
        position: absolute;
        margin-top: 120px;
        margin-left: 1730px;
    }
}

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