@charset "utf-8";
/* CSS Document */

html, body, section, div, table{ font-family: 'Roboto',Sans-serif,Arial,sans-serif!important;}
body{ margin:0; padding:0; font-family: 'Roboto',Sans-serif,Arial,sans-serif;}
h1{ color: #455561; font-family: 'Roboto',Sans-serif,Arial,sans-serif; font-size: 36px; font-weight: 300; line-height:40px; margin:0; padding:0; letter-spacing: -0.03em;}
h1 .uno{ font-weight:400;}
h1 .dos{ color:#e4352d; font-weight:700;}
h2{ font-size: 30px; line-height:36px; margin:0; padding:0; letter-spacing: -0.03em; }
h2 .tit{font-weight: 600}
a{ color:#E4352D;}
a:hover, a:focus{ color:#E4352D; text-decoration: underline;}
input[type=radio] { accent-color: #E4352D;}
.cabecera{ display: flex; max-width:1400px; padding: 20px 40px; border-bottom:1px solid #eee; background-color:#fff; margin:0 auto;}
.cabecera .logo{ width:30%; float:left;}
.cabecera .titulo{ text-align:right; width:100%; float:left; margin-top:20px;}
.contenedor{ /*max-width:1400px;*/ height:auto; background: #fff; /*margin:20px auto;*/ z-index:1; -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.07); -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.07); box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.07); /*border-radius: 3px; border:1px solid #eee; */  }
p{ font-size:16px; line-height: 22px; font-family: 'Roboto',Sans-serif,Arial,sans-serif;}
.contenedor2{ max-width:1400px; height:auto; background: #fff; margin:-50px auto 50px auto; z-index:1; -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.07); -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.07);}
.contenedor2 .cont{ padding:80px 20px 60px 20px;}
.SelExam{ max-width:800px; margin: 0px auto 30px auto;}
.SelExam h2{text-align: center; padding-bottom: 10px;}
.SelExam p{ text-align: center; color:#666; margin-bottom: 20px;}
.SelExam .select-box p{ text-align:inherit; font-size:18px; margin-bottom: inherit;}
.contenido{ padding:20px 5%; float:left; width:90%; text-align:center;}	
.contIntroDatos{ background-image: url('../img/fondo-cabecera.jpg'); background-repeat:no-repeat; width:100%; background-size: cover; min-height:400px; padding: 0; margin: 0; display: flow-root; }
.contFooter{ display: flex; max-width:1400px; padding: 20px 40px; margin:0 auto;}
.btn{ font-family:'Roboto',Sans-serif,Arial,sans-serif!important; color:#fff; background-color:#E4352D; border:1px solid #E4352D; font-size:14px; margin: 5px; border-radius: 0; background-repeat: no-repeat; }
.btn:hover, .btn:focus{ background-color: #fff; color:#E4352D; }
.btn.sw-btn-prev{ background-image: url("../img/arrow-left.png"); background-position: 10px center; padding-left: 35px;}
.btn.sw-btn-next{ background-image: url("../img/arrow-right.png"); background-position: right 10px center; padding-right: 35px;}
.btn.sw-btn-prev:hover, .btn.sw-btn-prev:focus{ background-image: url("../img/arrow-left-on.png")}
.btn.sw-btn-next:hover, .btn.sw-btn-next:focus{ background-image: url("../img/arrow-right-on.png")}
.btn.sw-btn-prev{background-color:#393232!important;  border-color:#393232!important;}
.btn.sw-btn-prev:hover, .btn.sw-btn-prev:focus{ color:#393232!important; background-color: #fff!important;}

.btn.aceptar{ background-color: #fff; color:#E4352D; border-color:#E4352D; font-weight: 500;}
.btn.aceptar:hover, .btn.aceptar:focus{ background-color: #E4352D; color:#fff;}
.btn.cancelar{ background-color: #fff; color:#393232; border-color:#393232; font-weight: 500;}
.btn.cancelar:hover, .btn.cancelar:focus{ background-color: #393232; color:#fff;}



/* .. Seleccionar examen ..*/

.select-box {
  position: relative;
  display: block;
  width: 400px;
  margin: 0 auto;
  font-size: 18px;
  color: #60666d;
  text-align:left;
  z-index:10000;
}

.select-box__current {
  position: relative;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  outline: none;
}
.select-box__current:focus + .select-box__list {
  opacity: 1;
  -webkit-animation-name: none;
          animation-name: none;
}
.select-box__current:focus + .select-box__list .select-box__option {
  cursor: pointer;
}
.select-box__current:focus .select-box__icon {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.select-box__icon {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  opacity: 0.3;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.select-box__value {
  display: -webkit-box;
  display: flex;
}
.select-box__input {
  display: none;
}
.select-box__input:checked + .select-box__input-text {
  display: block;
 border-top: 1px solid #eee;
	border-left: 1px solid #eee;
	border-right: 1px solid #eee;
	 border-bottom: 1px solid #eee;
}
.select-box__input-text {
  display: none;
  width: 100%;
  margin: 0;
  padding: 15px;
  background-color: #fff;
	
}
.select-box__list {
  position: absolute;
  width: 100%;
  padding: 0;
  list-style: none;
  opacity: 0;
  -webkit-animation-name: HideList;
          animation-name: HideList;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: step-start;
          animation-timing-function: step-start;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
	background-color: #fff;
}
.select-box__option {
  display: block;
  padding: 13px 15px;
  background-color: #fff;
	margin:0;
		border-left: 1px solid #eee;
	border-right: 1px solid #eee;
	 border-bottom: 1px solid #eee;
}
.select-box__option:hover, .select-box__option:focus {
  color: #fff;
  background-color: #E4352D;
}

@-webkit-keyframes HideList {
  from {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  to {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}

@keyframes HideList {
  from {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  to {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}


/* .. Pasos ..*/

.steps {
  min-height: 170px;
  list-style: none;
  margin: 0;
  padding: 20px;
  display: table;
  table-layout: fixed;
  width: 100%;
  color: #929292;
  height: 4rem;
  -webkit-transition: opacity 2s ease-in; -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;}
			
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.steps > .step {
  position: relative;
  display: table-cell;
  text-align: center;
  font-size: 1.5rem;
  color: #6D6875;
}
.steps > .step:before {
  content: attr(data-step);
  display: block;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid #e6e6e6;
  color: #e6e6e6;
  width: 4rem;
  height: 4rem;
  text-align: center;
  margin-bottom: -7rem;
  line-height: 3.9rem;
  border-radius: 100%;
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 2rem;
}
.steps > .step:after {
  content: "";
  position: absolute;
  display: block;
  background: #e6e6e6;
  width: 100%;
  height: 0.125rem;
  top: 2rem;
  left: 50%;
}
.steps > .step:last-child:after {
  display: none;
}
.steps > .step.is-complete {
  color: #6D6875;
}
.steps > .step.is-complete:before {
  content: "✓";
  color: #E4352D;
  background: #fff;
  border: 2px solid #E4352D;
}
.steps > .step.is-complete:after {
  background: #E4352D;
}
.steps > .step.is-active {
  font-size: 2rem;
	line-height: 2rem;
}
.steps > .step.is-active:before {
  color: #FFF;
  border: 2px solid #E4352D;
  background: #E4352D;
  margin-bottom: -7.5rem;
}

*, *:after, *:before {
  box-sizing: border-box;
}


/* .. Tabla ..*/

table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {   background-color: #f9f9f9; text-align: center; }
table.dataTable.stripe tbody tr.even, table.dataTable.display tbody tr.even { background-color: #fff; text-align: center; }
table.dataTable.stripe thead, table.dataTable.display thead { background-color: #E4352D; height: 47px; color: #fff; text-align: center; text-transform: uppercase; font-size: 11px; font-weight: 400; letter-spacing: 0.04em; line-height: 14px; }
#table-exams{width:100%;font-size:13px;}
table.dataTable.stripe thead, table.dataTable.display thead{ background-color: #E4352D; color:#fff; font-size: 11px;}
table { font-family: 'Roboto',Sans-serif,Arial,sans-serif!important;}
table th{ text-transform: uppercase;}
table.dataTable.nowrap th, table.dataTable.nowrap td{ text-align:left; padding: 10px;}
table.dataTable.stripe thead, table.dataTable.display thead{ background-color: #E4352D;}
table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before, table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before, table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before, table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before{ background-color: #4f4f4f;}
table.dataTable>tbody>tr.child ul.dtr-details{ width:100%; text-align: left; border-bottom: 1px solid #eee;}
table.dataTable label{ margin:10px;}
input[type=search]{ border:none; border-bottom:1px solid #ccc; font-size:13px; color:#9E9E9E; background-image: url("../img/ico-buscar.png"); background-repeat: no-repeat; background-position: right; padding-right: 20px;}
input[type=search]:hover, input[type=search]:focus { border:none; border-bottom:1px solid #ccc; border-bottom: 1px solid #999; color:#1D1D1D}
#table-exams_filter .form-control:focus{ box-shadow: none;}
#table-exams_filter .form-control.form-control-sm{ font-size: 1rem; line-height: 1.5;}
#table-exams tr td:first-child{ text-align: center;}
#table-exams tr th:first-child, #table-exams tr th:last-child{ text-align: center;}
#table-exams tr td:last-child{ font-weight:700; text-align: center;}
div.dataTables_wrapper div.dataTables_info{ font-size:0.9em; color: #868686; padding: 20px;}
#table-exams .dataTables_empty{ font-size:20px; line-height: 24px; padding:30px;}
label.ml-error, div.error, a.error, label.error-manual{color:#fff; background-color:#E4352D; padding: 3px 5px;}

/* ......*/

/* .. Checkbox ..*/

.styled-checkbox {
  position: absolute;
  opacity: 0;
	
}
.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
.styled-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: white;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
	margin-top:-2px;
}
.styled-checkbox:hover + label:before {
  background: #E4352D;
}
.styled-checkbox:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.styled-checkbox:checked + label:before {
  background: #E4352D;
}
.styled-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.styled-checkbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}
.styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}


.bloque1 .styled-checkbox:checked + label:after, .bloque2 .styled-checkbox:checked + label:after { content: "✓"; font-weight: 700; font-size: 2rem; position: absolute; left: 5px; top: -4px; color:#fff;  transform: none;  box-shadow: none; background: inherit;}

.bloque1 .styled-checkbox + label{ font-size:24px; font-weight: 700; color:#000;}
.bloque1 .styled-checkbox + label:before{ width: 30px; height: 30px; margin-right: 20px;}

.bloque2 .styled-checkbox + label{ font-size:24px; font-weight: 700; color:#fff;}
.bloque2 .styled-checkbox + label:before{ width: 30px; height: 30px; margin-right: 20px;}
.bloque2 .styled-checkbox:checked + label:before { background: #4f4f4f;}
.bloque2 .styled-checkbox:hover + label:before { background: #4f4f4f;}


/* ......*/

/* .. Datos matriculación y Resumen/Pago ..*/

.paso2 h3, .paso3 h3{ font-size: 1.4rem; color:#777; text-align: left; border-bottom: 1px solid #eee; padding-bottom: 10px; padding-left: 10px; }
.contForm h4{ padding-top: 30px;}

.info-convocatoria, .info-resumen{ position: relative; display: inline-block; 
    text-align: left;
    background-color: #fff;
    padding: 20px 20px;
    border-bottom: 1px solid #eee; width:100%; }

.info-convocatoria ul, .info-resumen ul{ padding-left: 0; font-size: 1.2em;}
.info-convocatoria ul li, .info-resumen ul li{ list-style-type: none;  padding: 5px 10px; float:left; width:50%; text-transform: none;}
.info-resumen p{ padding: 10px; color:#777;}
.contForm{ padding:20px 20px 40px 20px; background-color: rgba(0,0,0,0.03);}
.contForm.Resumen{ background-color: inherit; }
.contForm.Resumen .factura{ padding-left: 10px;}
.contForm .Alerta{ background-color: #fff; padding: 20px 20px 20px 125px; background-image: url("../img/ico-alerta.png"); background-repeat: no-repeat; background-position: 30px center;  -webkit-box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 7%);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.07); border-radius: 5px; margin-bottom: 30px;     -webkit-transition: opacity 2s ease-in;
    -webkit-animation: fadein 2s;
    -moz-animation: fadein 2s;
    -ms-animation: fadein 2s;
    -o-animation: fadein 2s;
    animation: fadein 2s;}
.contForm p{ font-size:14px;}
.contForm .Alerta p{ padding: 5px 0; margin:0; font-weight: 500; font-size:18px; color:#000;}
.contForm .Alerta p.intro{ border-bottom:1px solid #ccc; padding-bottom: 5px; font-weight: 400; margin-bottom: 5px; color:#555; font-size:17px;}
.contForm .Alerta p.destact{ font-weight: 700; font-size: 24px; line-height: 30px; color:#E4352D; padding-bottom: 0;}
.contForm .Alerta .detalle{ font-size: 0.9em; padding-top: 10px; display: inline-block; color:#777;}
.form-control{ border-color:#eee; padding: 10px;}
.form-control:focus{ box-shadow: none; border-color:#ccc;}
.formulario-interior .form-control-wrapper label{ color:#888; padding-bottom: 5px;}
select.form-control:not([size]):not([multiple]){ height: 42px!important}
.contForm .datPersonales, .contForm .direcc, .contForm .contacto, .contForm .condiciones{ padding-bottom: 30px; padding-bottom:30px; border-bottom: 1px solid rgba(0,0,0,0.08); float:left; width:100%;}
.contForm .datPersonales .row, .contForm .direcc .row, .contForm .contacto .row, .contForm .condiciones .row{ margin-bottom:5px;}
.contForm .condiciones h4{padding-bottom:20px;}
.contForm .condiciones .bloques{ width:100%; padding: 20px; float:left;}
.contForm .condiciones .bloques .bloque1{ min-height: 220px; width:48%; font-size:17px; font-weight: 500; background-color: #fff; border-radius: 5px; color:#666; float: left; margin: 1%; padding: 30px; -webkit-box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 7%); -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.07);     -webkit-transition: opacity 2s ease-in;
    -webkit-animation: fadein 2s;
    -moz-animation: fadein 2s;
    -ms-animation: fadein 2s;
    -o-animation: fadein 2s;
    animation: fadein 2s;}
.contForm .condiciones .bloques .bloque2{ min-height: 220px; width:48%; background-color: #E4352D; border-radius: 5px; color:#fff; float: left; margin: 1%; padding: 30px; -webkit-box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 7%); -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.07);     -webkit-transition: opacity 2s ease-in;
    -webkit-animation: fadein 2s;
    -moz-animation: fadein 2s;
    -ms-animation: fadein 2s;
    -o-animation: fadein 2s;
    animation: fadein 2s;}
.contForm .condiciones .bloques .bloque2 h5{ font-size:20px;}

.informulario{ background-color: #fff; -webkit-box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 7%); -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.07); padding: 30px 20px; }
.informulario h3{ padding-left: 0; border-color:#ccc; margin-bottom: 20px;}
.informulario .col{ float:left; width:50%;}

.bloqueAyuda{ padding:50px; text-align: center; font-size:22px; font-weight: 600;}
.bloqueAyuda a{ color:#393232;}
.bloqueAyuda ul{ background-color: red; margin: 20px auto; width:650px;}
.bloqueAyuda ul li{ list-style-type:none; float:left; margin: 5px 10px;}
.bloqueAyuda ul li.tfno{ background-image:url("../img/ico-tfno.png"); background-repeat: no-repeat; background-position: left; padding-left: 45px;}
.bloqueAyuda ul li.email{ background-image:url("../img/ico-email.png"); background-repeat: no-repeat; background-position: left; padding-left: 50px;}
.bloqueAyuda h3{ text-align:center; color:#000; font-size:36px; font-weight:700; border:none;}

#formDomicilioFacturacion{ padding: 20px 10px; display: none;}
.PagoExamen{ width:50%; background-color: #fff; border-radius: 5px; -webkit-box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 7%); -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.07); padding: 30px 20px 20px 20px; margin:50px auto 30px auto; display: table;}
.PagoExamen .logo{ text-align: center; padding-bottom:30px;}
.PagoExamen .logo img{ max-width:200px;}
.PagoExamen h3{ text-align: center; border:none; font-size:2.2rem; padding-bottom: 0;}
.PagoExamen .precio{ font-size:2rem; text-align: center; color:#000; font-weight:700; padding-bottom: 10px;}
.PagoExamen .cont{ background-color:rgba(0,0,0,0.03)}
.PagoExamen .bot{ text-align:center;}
.PagoExamen .btn{ background-color: #000; color:#fff; border-color:#000;}
.PagoExamen .btn:hover, .PagoExamen .btn:focus{ background-color: #006dff; border-color:#006dff;}
.PagoExamen .sellos{ width:330px; padding: 10px 0; margin: 0 auto;}
.PagoExamen .sellos ul li{float:left; list-style-type: none; padding: 10px 20px 0 20px;}
.PagoExamen .sellos ul li img{ max-height:60px;}

.pago{ float:left; width:100%; margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 20px;}
.pago .logosComp { padding: 10px 70px 10px 0; float:left;}
.pago  .logosComp  ul li{float:left; list-style-type: none; padding: 35px 20px 10px 20px;}
.pago  .logosComp  ul li img{ max-height:50px;}
.pago  .logosComp  ul li.sav img{ max-height:35px; margin-top:10px;}

.pago .bot{ text-align:left; float:left; padding-top: 30px;}
.pago .bot a{ text-align:center; font-size: 20px;}
.pago .btn{ background-color: #000; color:#fff; border-color:#000;}
.pago .btn:hover, .pago .btn:focus{ background-color: #E4352D; border-color:#E4352D;}
.pago .btn.descargarInfo{ background-image: url(../img/descargar-info.png); background-position: 10px center; padding-left: 55px;}

.respuestaPago{ text-align: center; padding: 30px 0 10px 0;}
.respuestaPago h3{ border:none; text-align: center; font-weight: 700; margin: 0; padding-bottom: 5px; font-size: 1.9rem;}
.respuestaPago p{ font-weight:500; font-size: 1.3rem;}
.respuestaPago.errorC{ background-color: inherit}
.respuestaPago.errorC h3{ color:#E4352D; }
.respuestaPago.pagoOK h3{color:#409810;}
.respuestaPago.pagoOK p{ clear:both; width:40%; margin: 0 auto;}


/* ......*/


/* ...PopUp...*/

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  /*visibility: hidden;*/
 /* opacity: 0;*/
	z-index: 1000;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 30%;
  position: relative;
  transition: all 5s ease-in-out;
	z-index: 1001;
	text-align: center;
}

.popup p{ margin:0;}

.popup h3 {
  margin-top: 0;
	color:#000;
	font-size:1.6rem;
	padding-left: 0;
	text-align: center;
	border-color:#ccc;
	margin-bottom: 10px;
}
.popup .close {
  position: absolute;
  top: 10px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #e4352d;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
	padding: 20px;
}


/* ......*/


@media (max-width: 1300px) {
	.contenedor{ margin:0;}
	.leyendaProgreso{ width:100%;}
	.contBloquesHome .bloque .cont{ min-height: 380px;}
}


@media (max-width: 1199.98px) { .contenedor{ margin: 0 auto;} .contBloquesHome .bloque .cont{ min-height: 380px; } .contBloquesTTrack .bloque{  width: 47%; float: left; }
	.popupphoto{display: none; }
	.popuptext{ width:100%;}
}


@media (max-width: 991.98px) { 
	
	.contBloquesHome .bloque{ width:100%; margin: 0 0 20px 0;}
	.contBloquesHome .bloque .cont{ min-height: auto;}
	.leyendaProgreso {width:auto;}
	.leyendaProgreso ul li{ border-right: none;}
	a.bot{ display: inline-block;}
	.contBloquesTTrack .bloque{ width:47%;}
	.cabecera .cabeUser .titulo h1{ font-size:30px; line-height: 34px;}
	.lecciones .todas, .lecciones .completadas, .lecciones .enCurso, .lecciones .sinComenzar, .lecciones .actividades{ width:90%; margin:0 0 20px 0; padding: 5%;}
	.lecciones .opfilt{ display:inline-block; padding:0;}
	.lecciones .opfilt .filtros { padding-bottom:10px; float:left;}
	.lecciones .opfilt .filtros ul li{ margin:3px;}
	.lecciones .opfilt .Gram{ float:left; padding-bottom:10px;}
	.lecciones .opfilt .Gram a{ padding: 10px 20px 10px 45px; border:1px solid #eee; display:block;}
	.lecciones a.linkLecciones{ background-size:25px; background-position: 10px;}
	.popuptext h3{ margin-bottom: 0;}
	.steps > .step.is-active { font-size: 1.8rem; line-height: 1.8rem;}
	.steps > .step.is-active:before{ margin-bottom: -6.8rem;}
	.contenedor2{-webkit-box-shadow:none;}
	.contForm .Alerta{ background-position: center 20px; padding: 90px 20px 20px 20px; text-align: center;}
	.contForm h4 { padding-top: 20px;}
	.contForm .contacto { padding-bottom: 10px;}
	.contForm .condiciones h4{ padding-bottom: 0px; padding-top: 20px;}
	.contForm .condiciones .bloques{ padding: 20px 0;}
	.contForm .condiciones .bloques .bloque1, .contForm .condiciones .bloques .bloque2{ width:100%; padding: 20px;}
	.bloque1 .styled-checkbox + label{ font-size: 20px; line-height: 23px;}
	.pago .logosComp { padding: 10px 10px 10px 0;}
	.pago .logosComp ul{ padding-left:0;}
	.pago .logosComp ul li{ padding: 5px;}
	.pago .bot { padding-top: 5px;}
	.respuestaPago.pagoOK p {width:100%;}
	.pago .bot a { font-size:19px;}



	
	
}

@media (max-width: 767.98px) {
	.contenedor{ margin:0;}
	.cabecera .logo, .cabecera .cabeUser{ width:100%; text-align: center;}
	.cabecera{ padding:10px; flex-direction: column;}
	.cabecera .cabeUser .titulo{ text-align:center;}
	.contIntroDatos .contenido .bloque1, .contIntroDatos .contenido .bloque2{ width:100%;}
	.contIntroDatos .contenido ul{ padding:0;}
	.contIntroDatos .contenido ul li{ padding:5px 0;}
	.introDatos{ float:none; padding: 20px 10px;}
	.introDatos h2{ margin-bottom:10px; }
	.contProgreso { width:inherit; float:none; padding: 20px;}
	.contProgreso h2{ padding-top: 30px;}
	.contBloquesTTrack .bloque{  width: 47%; float: left;}
	.select-box{width:600px;}
	.lecciones label{ width:100%; border-bottom: 1px solid #fff;}
	.lecciones .todas, .lecciones .completadas, .lecciones .enCurso, .lecciones .sinComenzar, .lecciones .actividades{ width:90%; margin:0 0 20px 0; padding: 5%;}
	.popuptext{ padding:2em;}
	.contBloquesHome .bloque h3 { font-size: 18px; line-height: 20px;}
	.popuptext ol li{ padding:3px;}
	.popup-inner{ width:90%;}
	 .popup { width: 70%;}
	.steps > .step.is-active { font-size: 1.5rem; line-height: 1.5rem;}
	.steps{ padding: 20px 0; min-height: 120px;}
	.steps > .step { font-size: 1.2rem; line-height: 1.2rem;}
	.steps > .step.is-active:before{ margin-bottom: -7.5rem;}
	.contenedor2 .cont { padding: 60px 20px 20px 20px;}
	.cabecera .titulo{ margin-top:10px;}
	 .titulo h1{font-size: 1.6rem!important; text-align: center;}
	.info-convocatoria, .info-resumen{ padding: 20px 0px;}
	.info-convocatoria ul li, .info-resumen ul li{ width:100%;}
	.paso2 h3, .paso3 h3{ font-size: 1.2rem;}
	.bloqueAyuda ul li.email{ font-size: 18px; line-height: 30px;}
	.contenedor2{ margin: -50px auto 0px auto;}
	.toolbar.toolbar-bottom{ text-align: center!important}
	.informulario h3{ margin-bottom: 10px;}
	.informulario .col{ width:100%; padding: 10px 0;}
	.popup { width: 90%;}
	.pago .logosComp { padding: 10px 0; float:none; width:340px; margin:0 auto;}
	.pago .logosComp ul{ padding: 10px 0 30px 0;}
	.pago .logosComp ul li{ padding: 5px 10px;}
	.pago .logosComp ul li.sav img { max-height: 25px;}
	.pago .logosComp ul li img { max-height: 40px;}
	.pago .bot{ padding: 5px; width: 100%; text-align: center;}
	.pago{ margin-bottom: 10px;}
	.respuestaPago.errorC h3, .respuestaPago.pagoOK h3{ font-size:1.9rem;}

	
}

@media (max-width: 575.98px) { 
.cabecera .cabeUser .titulo h1{ font-size:24px; line-height: 29px;}
.contIntroDatos .contenido ul{ font-size: 20px; line-height: 24px;}
.contBloquesTTrack .bloque{ width:100%;}
.select-box{ width:330px;}
.lecciones label{ width:100%;}
.lecciones .todas, .lecciones .completadas, .lecciones .enCurso, .lecciones .sinComenzar, .lecciones .actividades{ width:90%; margin:0 0 20px 0; padding: 5%;}
.contBloquesTTrack img{ display:none;}
.contBloquesTTrack .bloque h3{ padding-bottom: 4px;}
.steps > .step.is-active { font-size: 1.4rem; line-height: 1.4rem;}
.steps > .step { font-size: 1.1rem; line-height: 1.1rem;}
.bloqueAyuda { padding:20px 0;}
.bloqueAyuda ul{ width: 100%; padding: 0;}
.bloqueAyuda ul li{ margin: 5px 0;}
.contForm .condiciones .bloques .bloque1, .contForm .condiciones .bloques .bloque2{ text-align: center;}
.contForm .condiciones .bloques .bloque1{ font-size: 16px;}
.paso2 h3, .bloqueAyuda h3 { font-size: 1.4rem;}
.popup .close{right: 20px;}
	
}