/**
 * Tabla de contenidos
 *
 * 1.0 - Apariencia general
 * 2.0 - Bootstrap
 *   2.1 - Cambios estilísticos
 *   2.2 - Cambios funcionales
 * 3.0 - Media Queries
 */


/**
 * 1.0 - Apariencia general
 *
 * Representa cambios generales en la apariencia de la página
 */

footer {
    background-color:#272626;
    /* margin-top: 1em; */
    padding-top: 1em;
}

body {
    /* background: linear-gradient(135deg,#fff, #a5a5a559); */
}

.contenido-variable h2 {
    border-bottom: 2px solid;
    color: #791010;
    margin-bottom: 1em;
    text-align: center;
    text-transform: uppercase;
}

header {
    background-color: white;
}

.acreditacion {
    margin-top: .5em;
    text-align: center;
}

.acreditacion p {
    padding-top: 1.5em;
    color: red;
    font-weight: bold;
    font-size: 12px;
    vertical-align: middle;
}

.botonColorMenu {
    color: white;
    background-color: #901730;
}

.botonColorMenu:hover,
.botonColorMenu:focus {
    color: white;
    background-color: #c01d3e;
}

.textoColorMenu {
    color: #c01d3e;
}

hr {
  border: 1px solid #791010;
}

.hr-cool {
    border: 1px solid #c00000;
}

#navbar a.seleccionado {
    background-color: #c00000;
    color:white;
}

#navbar a.seleccionado:hover {
    background-color: #c00000;
    color:white;
}

/**
 * 2.0 - Bootstrap
 *
 * Cambios a clases de Bootstrap
 */

/**
 * 2.1 Cambios estilísticos
 */

button.navbar-toggle.collapsed {
    background-color: #eaa;
}

#fechas-interes dt {
    color: #ab2200;
    font-size: medium;
}

#fechas-interes dd {
    margin-bottom: 1em;
}

.navbar .navbar-collapse {
    text-align: center;
}

.navbar .navbar-nav {
    display: inline-block;
    float: none;
    vertical-align: top;
}

.navbar-default {
    /* background: linear-gradient(#ffd9d9,#f7adad); */
    background: #fffffff1;
    position: fixed;
    width: 100%;
    z-index: 999;
    box-shadow: 0px 1px 5px #c00000;
}
.navbar-default .navbar-toggle {
    border-color: #BCEDFB;
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
    background-color: #901730;
    border-color: #e55170;
}

.navbar-default .navbar-nav > li > a {
    color: #c00000;
    font-weight: bold;
    display: table-cell;
    vertical-align:middle;
    height: 60px;
}
.navbar-default  .navInicio > li > a {
    height: 50px;
}

.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
    color: white;
    background-color: #c00000;
    border-radius: 5px;
}

.navbar-nav > li > .dropdown-menu {
    border-radius: 5px;
    color: white;
    background-color: #901730;
    border: 1px solid;
}

.navbar-nav > li > .dropdown-menu > li > a {
    color: white !important;
    background-color: #901730;
}

.navbar-nav > li > .dropdown-menu >  li > a:focus,
.navbar-nav > li > .dropdown-menu >  li > a:hover {
    background-color: pink !important;
    color: black !important;
}

.navbar-toggle {
    background-color: #902010;
}

.panel > .panel-body {
    background-color: #fce4ec;
}

.panel > .panel-heading {
    background-color: rgba(229, 150, 150, 0.69);
    border: 1px solid #d4b8b8;
    color: #c01d3e;
}

.panel-heading > h2 {
    margin: 0px;
}

.marginBotonesPequeños {
    margin: 2px;
}

/* Style the list */
.price {
    list-style-type: none;
    border: 1px solid #eee;
    margin: 0;
    padding: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

/* Add shadows on hover */
.price:hover {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
}

.price .panel-body {
  background-color: #f0f0f0;
  font-size: 40px;
  color: #777777;
  padding: 20px;
  margin: 0px;
}

/* Pricing header */
.price .header {
    background-color: #111;
    color: white;
    font-size: 25px;
}

/* List items */
.price li {
    border-bottom: 1px solid #eee;
    padding: 20px;
    text-align: center;
}

/* Grey list item */
.price .grey {
    background-color: #eee;
    font-size: 20px;
}

/**
 * 2.2 Cambios funcionales
 *
 * Hacen que los desplegables de la barra de navegación de
 * Bootstrap funcionen sin JavaScript
 */

label[for=navbar-toggle-cbox] {
    cursor: pointer;
}

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

.dropdown:hover > .dropdown-menu.languages {
    display: flex;
}

#navbar-toggle-cbox:checked ~ .collapse {
    display: block;
}

#navbar-toggle-cbox {
  display:none
}


/**
 * 3.0 Media Queries
 */


/**
 * 3.1 Escritorio pequeño 955px
 */

@media screen and (min-width: 59.6875em) {
    .acreditacion {
        text-align: center;
    }
}

.parpadea {
  animation-name: parpadeo;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

  -webkit-animation-name:parpadeo;
  -webkit-animation-duration: 2s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}

@-moz-keyframes parpadeo{
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@-webkit-keyframes parpadeo {
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
   100% { opacity: 1.0; }
}

@keyframes parpadeo {
  0% { opacity: 1.0; }
   50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

.imgInicio {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    width: 32%;
    box-shadow: 4px 4px 5px #000000cc;
    height:fit-content;
}
@media (max-width: 600px) {
  .imgInicio {
    width: 100%;
  }
}
.imgInicio img {
  max-width: 100%;

  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.imgInicio:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.container {
    padding-left: 0px!important;
    padding-right: 0px!important;
    width:85% !important;
}
.row {
    margin-left: 0px!important;
    margin-right: 0px!important;
}


/*********** Iconos Twitter/Facebook/Youtube ***********/
.twitter a{
    color: #ccc  !important;
}
.facebook a{
    color: #ccc  !important;
}
.youtube a{
    color: #ccc  !important;
}
.instagram a{
    color: #ccc  !important;
}

.twitter a:hover{
    color: #2daae2  !important;
}

.facebook a:hover{
    color: #3954a1  !important;
}

.instagram a:hover .fa{
    color: transparent;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background-clip: text;
    -webkit-background-clip: text;
}

.youtube a:hover{
    color: #ff0001  !important;
}
.ponente {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}
.vercv {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 70%;
  left: auto;
  text-align: center;
  transform: scale(0);
}
.textovercv {
  background-color: #c00000;
  color: white;
  font-size: 16px;
  padding: 16px 32px;
}

/* Team Blocks */
.front-team .thumbnail {
  border: none;
}
.img-ponente:hover .ponente{
  opacity: 0.7;
  filter: grayscale(50%) blur(1px);
}
.img-ponente:hover .vercv {
  opacity: 1;
  transform: scale(1);
}
.front-team h3,
.ecommerce .front-team h3 {
  margin:10px 0 12px;
  line-height:40px;
}
.front-team h3 strong {
  color: #E02222;
  font-size: 20px;
  font-weight: 400;
}
.front-team h3 small {
  display: block;
  font-size: 13px;
}
.front-team ul {
  padding: 4px 0 0;
}
.front-team .social-icons {
  overflow: hidden;
}

.logo {
    position: absolute;
        max-width: 350px !important;
        width: 25%;
        z-index: 1;
        border-radius: 0px 0px 20px 0px !important;
        opacity: 0.85;
        /* top:0px; */
        /* margin:auto;
        display: flex; */
}

.logo2 {
    position: absolute;
        /* max-width: 350px !important; */
        width: 100%;
        z-index: 1;
        /* border-radius: 20px !important; */
        opacity: 0.85;
        bottom:0%;
        padding-left:1.5%;
        padding-right:1.5%;
        /* display: flex; */
}

.tabInicio{
    padding: 15px;
    background: #ffd9d9;
    border-radius: 0px 0px 25px 25px;
}

.tabInicioBtn{
    font-weight: bold;
}

.tabInicioBtn > .active > a {
    border: 1px solid #c00000 !important;
    border-radius: 4px 4px 0 0 !important;
    color: #fff !important;
    cursor: default !important;
    background-color: #c00000 !important;
}

.tabInicioBtn > li > a {
    border: 1px solid #ffd9d9;
    border-bottom: 1px solid #c00000 !important;
    border-radius: 4px 4px 0 0 !important;
    color: #636363;
    background: #fff6f6;
}

.more{
    color: #c00000;
}

.tab-matri > tbody > tr > td {
    padding:10px;
}

.faq-tabbable {
  padding: 0;
  margin: 0;
  list-style: none;
  border-left: solid 2px #c00000;
}
.faq-tabbable li {
  position: relative;
  margin-bottom: 1px;
}
.faq-tabbable li a {
  font-size: 14px;
  color: #7C858E;
  display: block;
  background: #F4F4F4;
  padding: 12px 10px 11px 8px;
}
.faq-tabbable li:hover a,
.faq-tabbable li.active a{
  background: #c00000;
  text-decoration: none;
  color: #fff;
}
.faq-tabbable li.active:after {
    content: '';
    display: inline-block;
    border-bottom: 20px solid transparent;
    border-top: 20px solid transparent;
    border-right: 30px solid #c00000;
    position: absolute;
    bottom: -10px;
    top: -10px;
    right: -15px;
}

.normativa {
    margin-top: 15px;
    padding: 20px;
    border: 2px solid #c00000;
    box-shadow: 5px 5px 10px #7b0000;
}

.nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover {
    color: #fff;
    background-color: #c00000;
}

.nav-tabs {
    border-color: #e6400c;
    padding-bottom: 1px;
    font-size: 14px;
    margin-bottom: 0;
}
.nav-tabs > li > a, .nav-tabs > li > a:hover, .nav-tabs > li > a:focus {
    background: #F4F4F4;
    color: #647484;
    border-radius: 0;
    padding: 5px 15px 4px;
    border: none !important;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    background: #c00000;
    color: #fff;
    padding: 5px 15px 4px;
}

.comite{
    text-align:center;
    background: #fff6f6;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 5px solid #c00000;
}

.comite:hover{
    background: #ffcccc;
    box-shadow: 0 0 3pt 2pt #fc7b7b;
}

.titulo_org{
    font-weight: bolder;
    text-transform: uppercase;
    color: #c00000;
    text-shadow: 1px 1px 2px #353535;
}

/* .titulo_cab{
    margin-top:50px;
    background: linear-gradient(40deg, #ffffff 44%, #353535 45%);
    border-bottom: 2px solid #353535;
    padding:0px;
    display:flex
} */


.tab-info {
    border-color: #e6400c;
    padding-bottom: 1px;
    font-size: 14px;
    margin-bottom: 0;
}
.tab-info > li > a, .tab-info > li > a:hover, .tab-info > li > a:focus {
    background: #F4F4F4;
    color: #647484;
    padding: 5px 15px 4px;
    border: none !important;
    box-shadow: inset 0px 0px 10px #000;
}
.tab-info > li.active > a, .tab-info > li.active > a:hover, .tab-info > li.active > a:focus {
    background: #353535;
    color: #fff;
    padding: 5px 15px 4px;
    text-shadow: 2px 0 0 white, -2px 0 0 white, 0 2px 0 white, 0 -2px 0 white, 1px 1px white, -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 0px 4px black
}

/* Service Box v1 */
.service-box-v1 {
  text-align: center;
  padding: 10px;
}
.service-box-v1 i {
  padding: 10px;
  font-size: 35px;
}
.service-box-v1:hover {
  background: #c00000;
  transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.service-box-v1:hover i,
.service-box-v1:hover p,
.service-box-v1:hover h2 {
  color: #fff;
}


@media (min-width: 1166px) {
    #cab_pag_mob{
        display: none !important;
    }

    #cab_pag{
        margin-top:60px;
        background: #353535;
        border-bottom: 2px solid #353535;
        padding:0px;
        display:flex
    }
    .titulo_pag{
        color: #ffd9d9;
        text-transform: uppercase;
        font-size: 3vw;
        /* margin-bottom: 25px;
        text-shadow: 2px 2px 0px #53583e; */
        font-weight: bold;
    }
    #pago{
        display: flex;
    }
}
@media (max-width: 1166px) {
    .satisfaccion{
        width: 90% !important;
    }
    #cab_pag{
        display: none !important;
    }

    #cab_pag_mob{
        margin-top:50px;
        background: #353535;
        border-bottom: 2px solid #353535;
        padding:0px;
    }
    .titulo_pag{
        color: #ffd9d9;
        text-transform: uppercase;
        font-size: 7vw;
        /* margin-bottom: 25px;
        text-shadow: 2px 2px 0px #53583e; */
        font-weight: bold;
    }
}
@media (min-width: 768px) {
    .navbar-collapse {
        float: right;
    }
	.dropdown-menu {
		font-size: 15px;
	}
}
.detailsUser > tbody > tr > th {
    text-align: center;
    padding:5px;
    border: solid #c00000 2px;
    background: #fff6f6;;
}
.detailsUser > thead > tr > th {
    text-align: center;
    padding:5px;
    color: #c00000;
    /* border: solid black 1px; */
}
.detailsUser > tbody > tr > td {
    text-align: center;
    padding:5px;
    border: solid #c00000 2px;
    border-top: none;
    background: white;
}
.detailsUser > thead > tr > td {
    text-align: center;
    padding:5px;
    color: #c00000;
    /* border: solid black 1px; */
}
.modal-dialog {
    width: 50% !important;
}

.like, .like2{
    background:#c00000;
    font-size: 14px;
    margin:0px 10px;
}

.like:hover{
    background:#f7adad;
}

#privacidad h3, #privacidad h4, #privacidad h5{
    margin-bottom:20px;
    color: #004648;
}
#privacidad h3{
    text-align:center;
}
#privacidad h5{
    text-decoration:underline;
}
#privacidad p{
    font-size:.9em;
    text-align:justify;
}
#privacidad li{
    text-align:justify;
}
#privacidad p + h3, #privacidad p + h4, #privacidad p + h5{
    margin-top:20px;
}
#privacidad ul{
    list-style:disc;
}
#condiciones h3{
    text-align:center;
    color: #004648;
    text-decoration:underline;
    margin-bottom:20px;
}
#condiciones h4{
    color: #004648;
}
#condiciones p, li{
    text-align:justify;
}

.ponencia{
    text-align: center;
    margin:20px;
    padding:5px;
    border: solid 2px #ad2609;
    border-radius: 25px;
    box-shadow: 5px 5px 5px;
}
.ponencia:hover{
    background: #ffcece;
    cursor: pointer;
}

@media (max-width: 1550px) {
    .navbar-default {
        font-size:0.8em;
    }
}
@media (max-width: 1360px) {
    .navbar-default {
        font-size:0.7em;
    }
}
@media (max-width: 1260px) {
    .navbar-default {
        font-size:1.1em;
    }
}
@media (max-width: 1166px) {
    #imagenCabecera1 {
        display:none;
    }
    #imagenCabecera2 {
        display:block !important;
    }
    #divcabecera{
        padding-left:0 !important;
    }
    .navbar .container-fluid{
        width:auto !important;
    }
    #logomenu{
        max-height: 50px !important;
    }

    .dropdown{
        position:relative !important;
    }
}
#tableoverflowtext{
    display:none;
    font-size: 1.4em;
    text-decoration: underline;
}
/* @media (max-width: 605px) {
    #tableoverflowtext{
        display:block;
    }
} */

/*********************************
7. Calendar
*********************************/

.calendar_start
{
    width: 100%;
    /* background: #FFFFFF; */
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 141px;
    padding-right: 141px;
}
.calendar
{
    width: 100%;
    background: #FFFFFF;
    /* padding-top: 115px; */
    /* padding-bottom: 111px; */
    padding-left: 141px;
    padding-right: 141px;
}
.calendar_container
{
    width: 100%;
    height: 100%;
    background: #f0f2f6;
}
.calendar_col
{
    padding: 10px;
}
.calendar_title_bar
{
    width: 100%;
    height: 50px;
    padding-left: 26px;
    background-color: #4867c0;
    background-image: linear-gradient(to right, #4867c0, #329fec);
    background: #4867c0;
    background: linear-gradient(to right, #4867c0, #329fec);
}
.calendar_icon
{
    width: 27px;
    height: 25px;
}
.calendar_icon img
{
    max-width: 100%;
}

#parpadeotitulo{
    color: #ffffff;
  animation-name: parpadeo;
  animation-duration: 2.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

  -webkit-animation-name:parpadeo;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}

@-moz-keyframes parpadeo{
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@-webkit-keyframes parpadeo {
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
   100% { opacity: 1.0; }
}

@keyframes parpadeo {
  0% { opacity: 1.0; }
   50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

.calendar_title
{
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-left: 19px;
}
.calendar_title2
{
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: #FFFFFF;
}
.calendar_title3
{
    padding-top:40px;
    font-size: 48px;
    font-weight: 500;
    text-transform: uppercase;
    color: #FFFFFF;
    text-shadow: 2px 2px #000000;
}
.calendar_items
{
    width: 100%;
    padding-top: 25px;
    padding-bottom: 30px;
}
.calendar_item
{
    width: 100%;
    padding-left: 39px;
}
.calendar_item:not(:last-child)
{
    margin-bottom: 35px;
}
.calendar_item_image
{
    width: 103px;
    height: 103px;
    border-radius: 50%;
    overflow: hidden;
}
.calendar_item_image img
{
    max-width: 100%;
}
.calendar_item_time
{
    margin: 0 50px;
}
.calendar_item_time div:first-child
{
    font-size: 1rem;
    font-weight: 500;
    color: #4c4c4c;
    line-height: 1;
    text-align: justify;
}
.calendar_item_time div:last-child
{
    font-size: 14px;
    font-weight: 500;
    color: #4c4c4c;
    margin-top: 11px;
}
.calendar_item_text
{
    margin-left: 111px;
}
.calendar_item_text div:first-child
{
    font-size: 18px;
    font-weight: 500;
    color: #4c4c4c;
}
.calendar_item_text div:nth-child(2)
{
    font-size: 16px;
    font-weight: 400;
    color: #888888;
    margin-top: 2px;
}
.calendar_item_text div:last-child
{
    font-size: 14px;
    font-weight: 400;
    color: #888888;
    margin-top: 5px;
}

.program
{
    width: 100%;
    text-align: center;
}

.program th, .program td
{
    border: 1px solid black;
    border-collapse: collapse;
    padding: 10px;
}

.program tr > th
{
    color: #ffffff;
    padding: 5px;
    background-color: #4867c0;
    background-image: linear-gradient(to right, #4867c0, #329fec);
    background: #4867c0;
    background: linear-gradient(to right, #4867c0, #329fec);

}

.ciencias
{
    background-color: #7aae37;
    background-image: linear-gradient(to right, #7aae37, #96c955);
    background: #7aae37;
    background: linear-gradient(to right, #7aae37, #96c955);
}

.salud
{
    background-color: #2087b4;
    background-image: linear-gradient(to right, #2087b4, #2fa6da);
    background: #2087b4;
    background: linear-gradient(to right, #2087b4, #2fa6da);
}

.sociales
{
    background-color: #bc378f;
    background-image: linear-gradient(to right, #bc378f, #d05faa);
    background: #bc378f;
    background: linear-gradient(to right, #bc378f, #d05faa);
}

.ingenieria
{
    background-color: #c8c8c8;
    background-image: linear-gradient(to right, #c8c8c8, #fafafa);
    background: #c8c8c8;
    background: linear-gradient(to right, #c8c8c8, #fafafa);
}

.arte
{
    background-color: #c6aa00;
    background-image: linear-gradient(to right, #c6aa00, #f8d400);
    background: #c6aa00;
    background: linear-gradient(to right, #c6aa00, #f8d400);
}

.hora
{
    font-weight: bold;
    color: #ffffff;
    background-color: #444444;
    background-image: linear-gradient(to bottom, #444444, #848484);
    background: #444444;
    background: linear-gradient(to bottom, #444444, #848484);
}