@font-face {font-family: "All Round Gothic";
    src: url("https://db.onlinewebfonts.com/t/4387b781fdcc752283b72bdc76757065.eot"); /* IE9*/
    src: url("https://db.onlinewebfonts.com/t/4387b781fdcc752283b72bdc76757065.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("https://db.onlinewebfonts.com/t/4387b781fdcc752283b72bdc76757065.woff2") format("woff2"), /* chrome firefox */
    url("https://db.onlinewebfonts.com/t/4387b781fdcc752283b72bdc76757065.woff") format("woff"), /* chrome firefox */
    url("https://db.onlinewebfonts.com/t/4387b781fdcc752283b72bdc76757065.ttf") format("truetype"), /* chrome firefox opera Safari, Android, iOS 4.2+*/
    url("https://db.onlinewebfonts.com/t/4387b781fdcc752283b72bdc76757065.svg#All Round Gothic") format("svg"); /* iOS 4.1- */
}

/*-- Variables globales --*/
:root {
    --blanco: #fff;
    --negro: #000;
    --gris: #ccc;
    --color1: #49017d;
    --color2: #87027d;
    --color3: #f83858;
    --color_parrafos: #3e3e3e;
    --fondo1: url(../images/back_body.png);
    --respuesta_test_correcta: green;
    --repsuesta_test_incorrecta: red;
  }
/*-- //Variables globales --*/



/*-- Reset code --*/
body {
    padding: 0;
    margin: 0;
    background: var(--blanco);
    font-family: "All Round Gothic", sans-serif;
}

body a {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    text-decoration: none;
    color: var(--color1);
}

body a:hover {
    text-decoration: none;
    color: var(--color2);
}

body a:focus,
a:hover {
    text-decoration: none;
}

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: 16px;
    letter-spacing: 1px;
    line-height: 1.9;
    color: var(--color_parrafos);
}

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

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

a:focus,
a:hover {
    text-decoration: none;
    outline: none
}


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



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

#main_header {
    width: 100%;
    height: 205px;
    background-color: var(--blanco);
}
/*-- //Header --*/



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

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

/*.navbar-light .navbar-nav .active>.nav-item,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item.show,
.navbar-light .navbar-nav .show>.nav-item {
    color: var(--blanco);
    _background-color: var(--color4);
    padding-bottom: 10px;
    border-bottom-style: solid;
    border-width: 1px;
    border-color: var(--color1);
}*/

.active {
    border: 1px solid var(--color1);
    width: 70%;
    margin-top: 7px;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: var(--blanco);
    border-bottom: 1px solid var(--color1);
    border-radius: 30px 30px 30px 30px;
    -moz-border-radius: 30px 30px 30px 30px;
    -webkit-border-radius: 30px 30px 30px 30px;
}

/* Propiedades del boton del menu */
.navbar-light .navbar-nav .nav-link {
    color: var(--blanco);
    font-weight: bold;
    background: linear-gradient(150deg, var(--color1), var(--color3) 50%, var(--color1) 100%);
    border-radius: 30px 30px 30px 30px;
    -moz-border-radius: 30px 30px 30px 30px;
    -webkit-border-radius: 30px 30px 30px 30px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 15px;
    padding-bottom: 15px;
    display: inline-block;
    width: 90%;
    font-size: large;
    text-transform: uppercase;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    margin-top: 0;
}

.dropdown-menu a {
    color: var(--color1);
} 

.dropdown-menu a:hover,
.dropdown-menu a:focus,
.dropdown-menu a:active {
    color: var(--blanco) !important;
    background-color: var(--color1) !important;
    cursor: pointer;
}

/*-- //Nav --*/



/*-- Footer --*/
.footer {
    padding: 1% 0 1% 0;
}

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

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

.footer_bottom {
    height: 100%;
    margin-top: 2%;
    background: var(--blanco);
}

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

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

.footer_policies:hover {
    color: var(--gris);
}
/*--//Footer--*/



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

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

/*.body_dark_img {
    background: var(--fondo1) no-repeat 0px 0px;
    background-size: cover;
}

.body_light_img {
    background: var(--fondo1) no-repeat 0px 0px;
    background-size: cover;
}*/

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

.btn-success {
    background-color: var(--color1);
    border-color: var(--color1);
    border-radius: 30px 30px 30px 30px;
    -moz-border-radius: 30px 30px 30px 30px;
    -webkit-border-radius: 30px 30px 30px 30px;
}

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

.btn-access {
    color: var(--blanco) !important;
    background: linear-gradient(to right, var(--color1), var(--color2) 100%);
    border-radius: 30px 30px 30px 30px;
    -moz-border-radius: 30px 30px 30px 30px;
    -webkit-border-radius: 30px 30px 30px 30px;
    padding-left: 40px;
    padding-right: 40px;
}

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

.title-section span {
    color: var(--color1);
    font-size: xx-large;
    margin: auto;
}

.text-color-1 {
    color: var(--color1);
}

.btn-gradient {
    background: linear-gradient(150deg, var(--color1), var(--color3) 50%, var(--color1) 100%);
}
/*-- //Generales --*/



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

.login_background {
    left: 0;
    right: 0;
    margin: 0 auto;
    background: var(--blanco);
    width: 85%;
    padding: 0;
    opacity: 0.9;
    border: 1px solid var(--color1) ;
}

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

.titulo_login {
    background-color: var(--color1);
    height: 70px;
    margin: 0 auto;
    width: 100%;
}

.titulo_login legend {
    color: var(--blanco);
    font-size: 1.35em;
    font-weight: 600;
}

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

.form_buttons {
    margin: auto;
    width: 50%;
    height: 40px;
    font-weight: 500;
}

.form_field {
    border-left-color: var(--negro);
    border-radius: 0;
    background-color: var(--blanco);
    border-color: var(--ngero);
    color: var(--negro);
}

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

.form_icon {
    background-color: var(--blanco);
    border-color: var(--negro);
    width: 50px;
    padding: 0;
}

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

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

.form_field:focus {
    border-color:  var(--negro);
    background-color: var(--blanco);
    color: var(--negro);
    -webkit-box-shadow: none;
    box-shadow: none;
    border-left-color: var(--negro);
}
/*-- //Login --*/



/*-- Registro --*/
.body_img_register {
    min-height: 800px;
}

.register_background {
    left: 0;
    right: 0;
    margin: 0 auto;
    background: var(--blanco);
    width: 100%;
    padding: 0;
    padding-bottom: 100px;
    margin-bottom: 5%;
    border: 1px solid var(--color1) ;
}

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

.titulo_registro {
    background-color: var(--color1);
    padding: 10px;
    margin: 0 auto;
    width: 100%;
}

.titulo_registro p{
    color: var(--blanco);
    font-size: 1.5em;
    font-weight: 600;
}

.contrasena_sugerida {
    color: red;
    font-weight: bold;
}
/*-- //Registro --*/


/*-- Reuniones --*/
#reuniones {
    margin-bottom: 150px;
}

.botones-modulo {
    margin-top: 100px !important;
}

.title-modulo p {
    color: var(--color1);
    font-size: xx-large;
    font-weight: bold;
    margin: auto;
}

.texto-azul {
    color: var(--color1);
}

.titulo-video {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
/*-- //Reuniones --*/


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

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

.test {
    width: 100%;
}

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

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

.cuadro_superior_1 {
    background-color: var(--color1);
    color: #fff;
    font-weight: bold;
    padding-top: 25px;
    height: 80px;
    padding-left: 20px;
    font-size: 1.1em;
}

.btn_modulo_descargas {
    background-color: var(--color1);
    color: var(--blanco) !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;
}

.btn_modulo_descargas:focus, .btn_modulo_descargas:hover {
    background-color: var(--color2);
}

.contener_realizar_test {
    position: relative; 
    float: left;
}

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

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

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

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

.btn_descarga_cert:hover,
.btn_descarga_cert:focus,
.btn_descarga_cert:active {
    background-color: var(--color2);
}
/*-- //Test --*/



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

.policies_text_container a {
    cursor: auto;
}

.policies_content {
    text-align: justify;
    padding: 15px 30px 15px 0px;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1.5;
    color: #3e3e3e;
}

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

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

/*-- Ponentes --*/
.exponentes {
    padding-top: 30px;
    padding-left: 50px;
}

.exponentes p {
    color: var(--color1);
    font-size: 1.2rem;
}

.exponentes a {
    color: var(--color2);
    font-size: .9rem;
}

.nombre-curriculum {
    color: var(--color1);
    font-weight: bold;
}

.subtitle-curriculum {
    font-weight: 700;
    font-size: 1.1rem;
    padding-left: 40px;
}

.texto-curriculum {
    font-size: 1rem;
    padding-left: 80px;
    text-align: justify;
    color: var(--negro);
}

.curriculum  .subtitle-curriculum:nth-child(n+2) {
    margin-top: 30px;
}

.lista-curriculum {
    margin: 0;
    margin-top: 10px;
    padding: 0;
    letter-spacing: 1px;
    line-height: 1.9;
    font-size: 1rem;
    padding-left: 80px;
    text-align: justify;
}

.sub-lista-curriculum {
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
    letter-spacing: 1px;
    line-height: 1.9;
    font-size: 1rem;
    padding-left: 40px;
    text-align: justify;
}
/*-- //Ponentes --*/


/*-- Sesiones --*/
.btn_s1_1 a {
    padding-top: 18px;
    padding-bottom: 18px;
}

.modal-body p {
    color: var(--negro);
    word-wrap: break-word;
    overflow-wrap: break-word; 
}
/*-- //Sesiones --*/



/*-- Responsive design --*/

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .cont-btn-modulo {
        margin-bottom: 15px;
    }

    .pl-reuniones {
        padding-left: 0px;
    }

    .webinar_form {
        padding: 40px;
    }

    .btn_s1_1, .btn_s1_2 {
        text-align: center;
        margin-bottom: 10px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .cont-btn-modulo {
        margin-bottom: 15px;
    }

    .webinar_form {
        padding: 50px;
    }

    .btn_s1_1, .btn_s1_2 {
        text-align: center;
        margin-bottom: 10px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .pl-reuniones {
        padding-left: 35px;
    }

    .webinar_form {
        padding: 0;
    }

    .btn_s1_1 {
        text-align: end;
        margin-bottom: 10px;
    }

    .btn_s1_2 {
        text-align: start;
        margin-bottom: 10px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .pl-reuniones {
        padding-left: 40px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .pl-reuniones {
        padding-left: 60px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1400px) {
    .pl-reuniones {
        padding-left: 80px;
    }
}

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

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