body{margin:0;padding:0;color:#666;background:#f1f1f1;font-family: 'Jost', sans-serif;font-size:16px;font-weight:400}
input, 
button, 
select,
textarea{
	display:block;
	box-sizing: border-box;
	width: 100%;
	margin: 5px 0 20px 0;
	font-family: inherit;
	height: 36px;
	padding: 6px 13px;
	border-radius:2px;
	border:1px solid #ced4da;
	font-size: 100%;
}
textarea{
	height: 150px;
}
input[type="checkbox"]{
	width: 25px;
	height: 25px;
}
input:focus,
select:focus,
textarea:focus{
	color: #666;
	background-color: #fff;
	border-color: #d1546894;
	outline: 0;
	box-shadow: 0 0 3px 2px #d1546894;
}
label{
	display:block;
	margin:15px 0 5px 0;
	font-size: 90%;
}
input[type="submit"]{
	background: #FD0026;
	border: 0;
	display: inline-block;
	font-weight: 500;
	line-height: 1.5;
	color: #ffffff;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	padding: 10px;
}
input[type="submit"]:hover{
	background: #D35567;
}
input.error,
select.error,
textarea.error{
	border-color: #fd0d26;
}
label span.error{
	display: block;
	color: #fd0d26;
	height: 20px;
}
/*checkbox*/
label.checkbox{
	position: relative;
	margin-top: 70px;
}
label.checkbox>span.checkbox{
	position: absolute;
    left: 33px;
    bottom: 29px;
}
input[type="checkbox"]{
    position: absolute;
    bottom: 6px;
}
a{
	text-decoration:none
}
#mensaje{
	display: none;
		background-color: #fff;
}
#mensaje .alert{
	color: #fd0d26;
	border:2px solid #fd0d26;
	font-size: 120%;
}
div.ok{
	min-height: 90vh;
	-webkit-transition: min-height 0.4s ease;
    -moz-transition: min-height 0.4s ease;
    -o-transition: min-height 0.4s ease;
    transition: min-height 0.4s ease;
}
p.ok{
	background-color: #009D7E;
    color: #fff;
}
p.ko{
	border: 3px solid #EA0020;
    color: #EA0020;
}
.clear{clear: both;}
.contenedor{
	padding: 20px;
	max-width: 1200px;
	margin: auto;
}
@media(min-width: 900px){
	.contenedor{padding: 20px 40px}
}
.notas{
	font-size:11px;
}
.icon-help{
	color: #09B7F1;
	cursor: pointer;
}
#modal-help{
	display: none;
    text-align: center;
    background-color: rgba(0,0,0,0.6);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
}
#modal-help .modal-in{
	background-color: #fafafa;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 90vw;
    height: 70vh;
    margin: auto;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    max-width: 500px;
    max-height: 300px;
}
#modal-help .modal-in .icon-cancel{
	width: 100%;
    display: block;
    text-align: right;
    margin-right: 30px;
    font-size: 1.3em;
    font-weight: 500;
    color: #E7A2AC;
    cursor: pointer;
}
#modal-help .modal-txt{
    height: calc(100% - 103px);
    width: calc(100% - 40px);
    overflow: scroll;
    text-align: justify;
    padding: 20px;
}
/******************** CABECERA */
h1{color: #000}
header{
	background-color: #fff;
}
header>div.contenedor{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}
header img{max-width: 100%}

@media(min-width: 750px){
	header>div.contenedor{
	    flex-wrap: nowrap;
	    justify-content: space-between;
	}
	header img{margin-right: 20px}
}
/******************** MENÚ */
nav{}
nav ul{
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	align-items: stretch;
	background-color: #fff;
	flex-wrap: wrap;
}
nav ul li,
.next,
.prev{
	outline: none;
	background-color: #E7A2AC;
	flex-grow: 1;
	text-align: center;
	position: relative;
	cursor: pointer;
	width: 100px;
	margin-top: 16px;
}
.next{
	width: 120px;
	float: right;
}
.prev{
	width: 120px;
	margin-right: 10px;
	float: left;
}
nav ul li:before{
    content: '';
    width: 0;
    height: 0;
    border-top: 24px solid #E7A2AC;
    border-bottom: 24px solid #E7A2AC;
    border-left: 18px solid #fff;
    
    position: absolute;
    top: 0;
    left:0px;
}
nav ul li:after,
.next:after{
    content: '';
    width: 0;
    height: 0;
    border-top: 24px solid #fff;
    border-bottom: 24px solid #fff;
    border-left: 18px solid transparent;
    
    position: absolute;
    top: 0;
    right:0px;
}
.next:after{
	right: 0;
}
.prev:before{
	content: '';
    width: 0;
    height: 0;
    border-top: 24px solid #fff;
    border-bottom: 24px solid #fff;
    border-right: 18px solid transparent;
    position: absolute;
    top: 0;
    left:0px;	
}
nav ul li:hover:before{
    border-top: 24px solid #FD0026;
    border-bottom: 24px solid #FD0026;
}
nav ul li:hover:after{
    /*border-left: 18px solid #FD0026;*/
}
nav ul li:hover,
.next:hover,
.prev:hover{
	background-color: #FD0026;
}
nav ul li.activa{
	background-color: #FD0026;
}
nav ul li.activa:after{
    content: '';
    width: 0;
    height: 0;
    border-top: 24px solid #fff;
    border-bottom: 24px solid #fff;
    border-left: 18px solid transparent;
    
    position: absolute;
    top: 0;
    right:0px;
}
nav ul li.activa:before{
	content: '';
    width: 0;
    height: 0;
    border-top: 24px solid #FD0026;
    border-bottom: 24px solid #FD0026;
    border-left: 18px solid #fff;
    
    position: absolute;
    top: 0;
    left:0px;
}
nav ul li:first-child:before,
nav ul li:last-child:after{
	display: none;
}
nav ul li a,
.next>a,
.prev>a{
	color: #fff;
	display: block;
    padding: 10px;
    font-size: 120%;
}
nav ul li span{
	display: none;
}
nav ul li a.error:before{
	content: '▼';
    display: block;
    position: absolute;
    top: -17px;
    color: #fd0d26;
    left: -8px;
    right: 0;
    font-size: 80%;
}
@media(min-width: 470px){
	.next{
		width: 200px;
	}
	.prev{
		width: 200px;
		margin-right: 20px;
	}
}
@media(min-width: 700px){
	nav ul li span{
		display: inline-block;
		margin-right: 10px;
	}
}
/******************** PESTAÑAS */
.centro.contenedor{
	padding: 0;
}
.card.contenedor{
	background-color: #fafafa;
	margin-bottom: 20px;
}
.card{
	margin-bottom: 10px;
}
.card{}
.card label{}
@media(min-width: 700px){
	.card.flex{
		display: flex;
		justify-content: flex-start;
	}
	.card>label{
		margin-right: 20px;
	}
	.card>label: last-child{
		margin-right: 0;
	}
	.card .w70{
		min-width: 70px;
		width: 70px;
	}
	.card .w125{
		min-width: 125px;
		width: 125px;
	}
	.card .w150{
		min-width: 150px;
		width: 150px;
	}
	.card .w200{
		width: 200px;
	}
	.card .w260{
		width: 260px;
	}
	.card .w300{
		width: 300px;
	}
	.card .w400{
		width: 400px;
	}
	.card .w100p{
		width: 100%;
	}
}
.paso.contenedor{
	padding-bottom: 0;
	background-color: #fff;
	display: none;
}
#p1{
	display: block;
}
.cPFisica,
.cPJuridica{
	display: none;
}
.bPFisica,
.bPJuridica{
	background-color: #E7A2AC;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 20px;
}
.bPFisica{
	margin-right: 20px;
}
.bPFisica.activa,
.bPJuridica.activa,
.bPFisica:hover,
.bPJuridica:hover{
	background-color: #FD0026;
}
/*Paso Pago*/
#pPago{
	background-color: #fff;
}
#pPago input[type='radio']{
	display: inline-block;
    width: 30px;
    height: 17px;
    box-shadow: none;
}
#pPago input[type='submit']{
	width: 200px;
	height: auto;
}
.navPie{padding-bottom:20px}

/******************** PIE */
footer{
	background-color: #505050;
	color: #fff;
	text-align: center;
}
footer a{
	color: #fff;
}