/* Webfont: Lato-Black */@font-face {
	font-family: 'LatoWebBlack';
	src: url('fonts/Lato-Black.eot'); /* IE9 Compat Modes */
	src: url('fonts/Lato-Black.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('fonts/Lato-Black.woff2') format('woff2'), /* Modern Browsers */
	url('fonts/Lato-Black.woff') format('woff'), /* Modern Browsers */
	url('fonts/Lato-Black.ttf') format('truetype');
	font-style: normal;
	font-weight: normal;
	text-rendering: optimizeLegibility;
}

/* Webfont: Lato-Bold */@font-face {
	font-family: 'LatoWebBold';
	src: url('fonts/Lato-Bold.eot'); /* IE9 Compat Modes */
	src: url('fonts/Lato-Bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('fonts/Lato-Bold.woff2') format('woff2'), /* Modern Browsers */
	url('fonts/Lato-Bold.woff') format('woff'), /* Modern Browsers */
	url('fonts/Lato-Bold.ttf') format('truetype');
	font-style: normal;
	font-weight: normal;
	text-rendering: optimizeLegibility;
}
/* Webfont: Lato-Light */@font-face {
	font-family: 'LatoWebLight';
	src: url('fonts/Lato-Light.eot'); /* IE9 Compat Modes */
	src: url('fonts/Lato-Light.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('fonts/Lato-Light.woff2') format('woff2'), /* Modern Browsers */
	url('fonts/Lato-Light.woff') format('woff'), /* Modern Browsers */
	url('fonts/Lato-Light.ttf') format('truetype');
	font-style: normal;
	font-weight: normal;
	text-rendering: optimizeLegibility;
}
/* Webfont: Lato-Medium */@font-face {
	font-family: 'LatoWebMedium';
	src: url('fonts/Lato-Medium.eot'); /* IE9 Compat Modes */
	src: url('fonts/Lato-Medium.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('fonts/Lato-Medium.woff2') format('woff2'), /* Modern Browsers */
	url('fonts/Lato-Medium.woff') format('woff'), /* Modern Browsers */
	url('fonts/Lato-Medium.ttf') format('truetype');
	font-style: normal;
	font-weight: normal;
	text-rendering: optimizeLegibility;
}
/* Webfont: Lato-Regular */@font-face {
	font-family: 'LatoWeb';
	src: url('fonts/Lato-Regular.eot'); /* IE9 Compat Modes */
	src: url('fonts/Lato-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('fonts/Lato-Regular.woff2') format('woff2'), /* Modern Browsers */
	url('fonts/Lato-Regular.woff') format('woff'), /* Modern Browsers */
	url('fonts/Lato-Regular.ttf') format('truetype');
	font-style: normal;
	font-weight: normal;
	text-rendering: optimizeLegibility;
}
/* Webfont: Lato-Thin */@font-face {
	font-family: 'LatoWebThin';
	src: url('fonts/Lato-Thin.eot'); /* IE9 Compat Modes */
	src: url('fonts/Lato-Thin.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('fonts/Lato-Thin.woff2') format('woff2'), /* Modern Browsers */
	url('fonts/Lato-Thin.woff') format('woff'), /* Modern Browsers */
	url('fonts/Lato-Thin.ttf') format('truetype');
	font-style: normal;
	font-weight: normal;
	text-rendering: optimizeLegibility;
}

@font-face {
	font-family: 'angelinaregular';
	src: url('fonts/angelina-webfont.woff2') format('woff2'),
	url('fonts/angelina-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}

*{
	margin:0;
	padding: 0;
	box-sizing:border-box;
	-webkit-appearance: none!important;
	-moz-appearance: none;
	appearance: none!important;
	font-family: 'LatoWeb';
	font-weight: inherit;
	color: inherit;
	font-size: 14px;
	outline: none;

}
a{
	text-decoration: none;
	cursor: pointer;
}
button{
	cursor: pointer;
}
ul,li{
	list-style: none;
}
input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px #fff inset;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

body{
	font-weight: normal;
	text-align: center;
	color: #002956;
}


.df{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.jcc{
	justify-content: center;
	-webkit-justify-content: center;
}
.jcsb{
	justify-content: space-between;
	-webkit-justify-content: space-between;
}
.jcsa{
	justify-content: space-around;
	-webkit-justify-content: space-around;
}
.jcfe{
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
}
.aic{
	-ms-align-items: center;
	-webkit-align-items: center;
	align-items: center;
}
.ais{
	-ms-align-items: stretch;
	-webkit-align-items: stretch;
	align-items: stretch;
}
.aifs{
	-ms-align-items: flex-start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}
.aife{
	-ms-align-items: flex-end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
.fww{
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}
.fdc{
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
}
.all-center{
	justify-content: center;
	-webkit-justify-content: center;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	-webkit-align-items: center;
}
.container-1200{
	width: 100%;
	max-width: 1200px;
}
.container-1024{
	width: 100%;
	max-width: 1024px;
}
.container-980{
	width: 100%;
	max-width: 980px;
}
.container-768{
	width: 100%;
	max-width: 768px;
}
.container-600{
	width: 100%;
	max-width: 600px!important;
}

.container-505{
	width: 100%;
	max-width: 505px!important;
}

.full-width{
	width: 100%;
}
.auto-width{
	width: auto;
}
.middle-width{
	width: calc(50% - 5px);
}
.full-height{
	min-height: 100vh;
}
.max-height{
	max-height: 900px;
}
.psr{
	position: relative;
}
.uppercase{
	text-transform: uppercase;
}
.extrabold{
	font-weight: 800;
}
.bold{
	font-weight: 700;
}
.semibold{
	font-weight: 600;
}
.regular{
	font-weight: 400;
}
.light{
	font-weight: 300;
}
.font-angelina{
	font-family: 'angelinaregular';
}
.align-center{
	text-align: center;
}
.align-left{
	text-align: left;
}
.align-right{
	text-align: right;
}

.cover-imagen{
	position: absolute;
	left: 0;right: 0;top: 0;bottom: 0;
	background: rgba(0,0,0,.3);
	z-index: 1;
}
.psr{
	position: relative;
}

.hidden{
	display: none;
}

.mb-5{
	margin-bottom: 5px;
}
.mb-10{
	margin-bottom: 10px;
}
.mb-20{
	margin-bottom: 20px;
}
.mb-30{
	margin-bottom: 20px;
}
.mb-40{
	margin-bottom: 40px;
}
.mb-50{
	margin-bottom: 50px;
}
.mb-60{
	margin-bottom: 60px;
}
.mt-5{
	margin-top: 5px;
}
.mt-10{
	margin-top: 10px;
}
.mt-15{
	margin-top: 15px;
}
.mt-20{
	margin-top: 20px;
}
.mt-30{
	margin-top: 20px;
}
.mt-40{
	margin-top: 40px;
}
.mt-60{
	margin-top: 60px;
}
.mr-0{
	margin-right: 0;
}
.mr-0-after:after{
	margin-right: 0!important;
}
.mr-5{
	margin-right:5px;
}
.mr-10{
	margin-right: 10px;
}
.mr-20{
	margin-right: 20px;
}
.ml-5{
	margin-left: 5px;
}
.mtb-15{
	margin-bottom: 15px;
	margin-top: 15px;
}
.mtb-20{
	margin-bottom: 20px;
	margin-top: 20px;
}
.mtb-30{
	margin-bottom: 30px;
	margin-top: 30px;
}
.mtb-40{
	margin-bottom: 40px;
	margin-top: 40px;
}
.mlr-15{
	margin-left: 15px;
	margin-right: 15px;
}
.plr-15{
	padding-left: 15px;
	padding-right: 15px;
}
.pl-15{
	padding-left: 15px;
}
.pl-30{
	padding-left: 30px;
}
.p-10{
	padding: 10px;
}
.p-20{
	padding:20px;
}
.p-30{
	padding:30px;
}
.ptb-5{
	padding-top: 5px;
	padding-bottom: 5px;
}
.ptb-15{
	padding-top: 15px;
	padding-bottom: 15px;
}
.ptb-30{
	padding-top: 30px!important;
	padding-bottom: 30px!important;
}
.pb-60{
	padding-bottom: 60px!important;
}
.pb-90{
	padding-bottom: 90px!important;
}
.max-width-245{
	max-width: 245px;
}
.margin0auto{
	margin: 0 auto;
}
.uppercase{
	text-transform: uppercase;
}
.text-initial{
	text-transform: inherit;
}
.font-small{
	font-size: 12px;
}
.font-big{
	font-size: 18px;
}
.font-extrabig{
	font-size: 20px;
}
.font-smallx2{
	font-size: 24px;
}
.dib{
	display: inline-block;
}
.text-overflow{
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	max-width: 100%!important;
}
.enlace-cover{
	position: absolute;
	left: 0;top: 0;bottom: 0;right: 0;
	z-index: 5;
	cursor: pointer;
}
.cover{
	position: fixed;
	left: 0;top: 0;bottom: 0;right: 0;
	z-index: 1000;
	background: rgba(0,0,0,.6);
	display: none;
}

.casper{
	opacity: 0;
}
.pointer{
	cursor: pointer;
}
.float-left{
	float: left;
}
.over-hidden{
	overflow: hidden;
}
.input-file-pos{
	left: -120px;
}
input[type="checkbox"]{
	position: absolute;
	opacity: 0;
}
.underline{
	text-decoration: underline;
}
.transition{
	transition:.5s;
	-webkit-transition:.5s;
}

::-webkit-input-placeholder { color: #002956; } /* WebKit */
:-moz-placeholder { color: #002956; } /* Firefox 18- */
::-moz-placeholder { color: #002956; } /* Firefox 19+ */
:-ms-input-placeholder { color: #002956; } /* IE 10+ */
::-webkit-scrollbar
{
	width: 0px;
}
::-webkit-scrollbar-track-piece
{
	background-color: transparent;
	-webkit-border-radius: 6px;
}

.bg-azul-oscuro{
	background: #002956;
}
.bg-naranja{
	background: #eb6c5d;
}
.bg-naranja-casper{
	background: rgba(235,108,93,.65);
}
.bg-gris{
	background:#eaeaea;
}
.bg-white{
	background: #FFF;
}
.bg-celeste{
	background: #6acfed;
}
.bg-celeste-casper{
	background: rgba(106,207,237,.19);
}
.bg-aguamarina{
	background: #6fbaba;
}


.texto-naranja{
	color: #eb6c5d;
}
.texto-blanco{
	color: #fff;
}
.texto-celeste{
	color: #6acfed;
}

.texto-gris{
	color: #9e9c9c;
}


.borde-celeste{
	border:1px solid #6acfed;
}
.borde-azul{
	border:1px solid #002956;
}
.borde-bottom-celeste{
	border-bottom:1px solid #6acfed;
}
.borde-naranja{
	border:1px solid #eb6c5d;
}
.borde-naranja-casper{
	border:1px solid rgba(235,108,93,.65);
}
.borde-aguamarina{
	border:1px solid #6fbaba;
}
.height-100{
	height: 100px;
}
.height-50{
	height: 50px;
}
.height-40{
	height: 40px;
}
.height-25{
	height: 25px;
}

.boton{
	height: 40px;
	border:none;
	font-size: 16px;
	line-height: 40px;
	cursor: pointer;
	border-radius: 0;
}
.boton-celeste{
	min-width: 200px;
	color: white;
	background:#6acfed;
	height: 40px;
	font-size: 16px;
	line-height: 40px;
	display: inline-block;
}
.boton-gris{
	min-width: 200px;
	background:#eaeaea;
	height: 40px;
	font-size: 16px;
	line-height: 40px;
	text-align: center;
}

.boton-skull-celeste{
	height: 40px;
	border:none;
	font-size: 16px;
	line-height: 40px;
	border:1px solid #6acfed;
	min-width: 200px;
	color: #6acfed;
}

.width-200{
	width: 200px;
}
.punto-naranja{
	position: relative;
	padding-left: 15px;
}
.punto-naranja::before{
	width: 10px;
	height: 10px;
	display: inline-block;
	border-radius: 50%;
	content: '';
	background: #eb6c5d;
	position: absolute;
	top: 50%;
	left: 0px;
	margin-top: -6px;
}
/*ESTILOS DEL SITIO*/

.listado-info-header i{
	min-width: 25px;
	text-align: center;
}

.titulo-header{
	text-align: left;
	width: 235px;
	font-size: 33px;
	font-weight: 600;
}
.menu{
	height: 50px;
}
.listado-menu li{
	padding-right: 25px;
	padding-left: 25px;
	min-height: 50px;
	line-height: 50px;
	transition:.5s;
}
.listado-menu li a{
	position: relative;
}
.listado-menu .activo{
	background: #eaeaea;
	color: #002956;
}
.listado-menu li a::after{
	content: '»';
	display: inline-block;
	position: absolute;
	right: -10px;
	top: 0%;
	margin-top: -19px;
}
.submenu{
	display: none;
}
.submenu > li{
	display: none;
}
.submenu .espacio-personal ul{
	margin-left: 192px;
}
.submenu .candidaturas ul{
	margin-left: 394px;

}
.submenu .informacion ul{
	margin-left: 552px;
}
.container-alertas{
	border-right: 1px solid white;
	padding-right: 5px;
	margin-right: 5px;
}
.n-alertas{
	width: 20px;
	height: 20px;
	background: #eb6c5d;
	border-radius: 50%;
	margin-right: 5px;
}
.container-user .fa-user{
	margin-right: 2px;
	font-size: 20px;
	margin-left: 10px;
	color: #eb6c5d;
}
.container-user .fa-chevron-down{
	font-size: 12px;
	color: #eb6c5d;
}
.wrapper{
	min-height: calc(100vh - 271px);
	width: 100%;
}

.wrapper.registro{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-webkit-justify-content: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-align-items: center;
}

.wrapper-xxl{
	min-height: calc(100vh - 245px);
}

.contenedor-logo img{
	max-width: 120px;
}

.contenedor-login{
	height: 260px;
	padding: 15px 30px;
}
.contenedor-login:nth-child(2n){
	border-left: 1px solid #002956;
}

.titulo-login{
	text-transform: uppercase;
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 10px;
}
.subtitulo-login{
	text-transform: uppercase;
	width: 100%;
}
.contenedor-login .input-text{
	width: 100%;
	height: 30px;
	background: white;
	border:none;
	padding-left: 15px;
	outline: none;
}

.contenedor-login .boton{
	text-transform: uppercase;
	width: 185px;
}
.contenedor-filtro{
	padding:40px 0;
}
.contenedor-filtro .elemento{
	width: 210px;
	height: 40px;
	border:none;
	padding-left: 10px;
	outline: none;
	border-radius: 0;
}
.contenedor-filtro .boton{
	width: 96px;
}
.contenedor-filtro .contenedor-check{
	max-width: 870px;
}

.with-localizacion{
	background: #fff url(../img/localizacion.png) 10px center/20px no-repeat ;
	padding-left: 40px!important;
}

.elem-miga::after{
	content: '>';
	display: inline-block;
	margin-right: 3px;
	margin-left: 2px;
}
.elem-miga:last-of-type::after{
	display: none;
}
.elem-miga a{
	font-size: 12px;
}
.recuento{
	padding: 0 50px;
	border-right: 1px solid #002954;
}
.recuento:first-of-type{
	padding-left: 0;
}
.recuento:last-of-type{
	padding-right: 0;
	border-right: 0;
}
.recuento .numero{
	font-size: 36px;
	line-height: 1em;
}
.titulo-generico{
	text-transform: uppercase;
	font-weight: 400;
	font-size: 18px;
	height: 40px;
	line-height: 40px;
}
.titulo-generico-imagen{
	text-transform: uppercase;
	font-weight: 400;
	font-size: 18px;
}

.titulo-generico-xxl{
	font-size: 27px;
	height: 50px;
	line-height: 50px;
	font-weight: 400;
}
.contenedor-opciones{
	margin-top: 40px;
}
.opcion{
	width: calc(25% - 10px);
}
.opcion img{
	width: 100%;
}
.contenedor-ofertas{
	margin-top: 45px;
}
.oferta{
	margin-bottom: 10px;
}
.oferta:last-of-type{
	margin-bottom: 0;
}
.oferta:first-of-type{
	margin-top: 3px;
}
.oferta > div{
	max-width: 460px;
}
.nombre-oferta{
	text-transform: uppercase;
	font-weight: 500;
}
.guion::after{
	content: '-';
	display: inline-block;
	margin-left: 3px;
	margin-right: 3px;
}
.double-dot::after{
	content: ':';
	display: inline-block;
	margin-left: 1px;
	margin-right: 3px;
}

.without-dd::after{
	display: none!important;
}

.contenedor-opciones-secundarias{
	margin-top: 60px;
	margin-bottom: 100px;
}

.opcion-secundaria{
	width: 230px;
}

/*DETALLE OFERTA*/
.icon-circle{
	border-radius: 50%;
	width: 35px;
	min-width: 35px;
	height: 35px;
}
.oferta-liked{
	position: absolute;
	right: -10px;
	top: -10px;
}
.icon-circle i{
	color: white;
	font-size: 26px;
	font-weight: 300;
}

.detalle-puesto .detalle{
	width: 210px;
	margin-right: 20px;
}

.detalle-puesto .informacion{
	width: calc(100% - 240px);
}
.adjunto{
	width: 160px;
	overflow: hidden;
	margin-right: 20px;
	margin-bottom: 10px;
}
.adjunto:last-of-type{
	margin-right: 0;
}
.adjunto figure{
	margin-right: 10px;
}
.adjunto input{
	left: -140px;
}
.requisitos-detalle .detalle{
	margin-right: 4px;
}
.requisitos-detalle .detalle::after{
	content: ':';
	display: inline-block;
}

.contenedor-adjuntar-documentacion{
	width: 200px;
}

.contenedor-adjuntar-documentacion p{
	padding: 0 10px;
	min-width: 80px;
}
.contenedor-adjuntar-documentacion button{
	border: none;
	height: 25px;
	width: 100%;
	text-align: center;
	min-width: 90px;

}

.oferta-fue{
	margin-top: 20px;
}
.testimonio{
	margin-bottom: 20px;
}

.oferta-fue:first-of-type{
	margin-top: 0;
}
.imagen-oferta{
	width: 120px;
}
.imagen-oferta img{
	width: 100%;
}
.imagen-oferta-brother{
	width: calc(100% - 120px);
}

.label-for-checkbox::before{
	width: 15px;
	min-width: 15px;
	height: 15px;
	border: 1px solid white;
	border-radius: 4px;
	display: inline-block;
	background: white;
	content: '';
	margin-right: 8px;
	text-align: center;
}
.check-azul{
	color: #002956;
}
.check-azul::before{
	background: #6acfed;
}
input:checked + .check-azul::before{
	color: #002956!important;
}
.label-for-checkbox{
	margin-right: 30px;
}

.label-for-checkbox:last-of-type{
	margin: 0;
}

input:checked + .label-for-checkbox::before{
	content: "\2713";
	color: #eb6c5d;
	line-height: 18px;
}

.label-for-radio{
	font-size: 16px;
	margin-right: 20px;
	position: relative;
	transition:.5s;
}
input[type="radio"]{
	opacity: 0;
	position: absolute;
}
.label-for-radio:last-of-type{
	margin-right: 0;
}
.label-for-radio::before{
	width: 15px;
	height: 15px;
	display: inline-block;
	content: '';
	border-radius:50%;
	background: white;
	border: 1px solid rgba(235,108,93,.65);
	margin-right: 5px;
}
input:checked + .label-for-radio::after{
	width: 11px;
	height: 11px;
	display: inline-block;
	content: '';
	border-radius:50%;
	background:rgba(235,108,93,.65);
	position: absolute;
	left: 3px;
	top: 4px;
	transition:.5s;

}
.pagina{
	width: 25px;
	height: 25px;
	display: inline-block;
	line-height: 27px;
	margin: 0 5px;
	cursor: pointer;
}
.pagina.activo{
	background: #eb6c5d;
	color: white;
}

.pagina.last::after{
	content: '...';
}
.pagina-ultima{
	width: 25px;
	height: 25px;
	display: inline-block;
	line-height: 27px;
	margin: 0 5px;
}
.paginador .prev{color: #aaa;}

.enlace-footer{
	padding: 0 15px;
	border-right: 1px solid white;
}

.enlace-footer:first-of-type{
	padding-left: 0;
}
.enlace-footer:last-of-type{
	padding-right: 0;
	border-right: none;
}
.alerta{
	border-bottom: 1px solid #6acfed;
}

.alerta:last-of-type{
	border-bottom: 0;
}

.tiempo-ago{
	width: 150px;
	min-width: 150px;
}

.cuerpo-alerta{
	padding: 15px 20px 15px 40px;
	text-align: left;
}

.icon-accion{
	width: 25px;
	min-width: 25px;
	height: 25px;
	border-radius:50%;
	border: 2px solid #eb6c5d;	
	color: #eb6c5d;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
}
.icon-accion::before{
	content:'+';
}
.icon-accion.close{
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
}
.icon-accion.ok::before{
	content: "\2713";
	font-size: 16px;
}

.icon-accion.show-more::before{
	content: "\f078";
	font: normal normal normal 14px/1 FontAwesome;
}
.icon-accion.show-less::before{
	content: "\f077";
	font: normal normal normal 14px/1 FontAwesome;
}

.icon-accion.show-less{
	padding-bottom: 3px;
	padding-left: 1px;
}

.icon-accion.blanco{
	color: #FFF;
	border-color: #FFF;
}

.configuracion{
	margin-bottom: 15px;
}
.configuracion:last-of-type{
	margin-bottom: 0;
}
.interruptor{
	width: 175px;
	height: 25px;
	border: 1px solid #eb6c5d;
	text-transform: uppercase;
	color: #eb6c5d;
	font-weight: bold;
	position: relative;
	z-index: 2;
	transition:.5s;
}
.interruptor.activo{
	color: white;
}
.contenedor-interruptor .interruptor:last-of-type{
	border-left: none;
}


.contenedor-interruptor .fondo{
	width: 175px;
	height: 25px;
	background: #eb6c5d;
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	transition: .5s;
}
.contenedor-interruptor .fondo.on{
	left: 175px;
}

.contenedor-titulo-con-imagen h1{
	position: absolute;
	left: 20px;
	top: 20px;
	font-size: 24px;
}
.contenedor-titulo-con-imagen img{
	width: auto;
	max-width: 100%;
}
.contenedor-adjuntar-archivo{
	width: 320px;
}
.elem-adjunto input[type="text"]{
	width: 215px;
	border-radius: 0;
}
.boton-naranja-small{
	background: #eb6c5d;
	font-size: 12px;
	border: none;
	height: 40px;
	color: white;
	padding: 0 5px;
	min-width: 90px;
	cursor: pointer;
	border-radius: 0;
}
.boton-naranja-slim{
	background: #eb6c5d;
	font-size: 12px;
	border: none;
	height: 25px;
	color: white;
	padding: 0 5px;
	min-width: 90px;
	cursor: pointer;
}
.boton-azul-small{
	background: #002956;
	font-size: 18px;
	border: none;
	height: 30px;
	color: white;
	padding: 0 5px;
	min-width: 120px;
	cursor: pointer;
	line-height: 30px;
	display: inline-block;
}
.cursiva{
	font-style: italic;
}

.adjunto-documentacion .boton-naranja-slim{
	min-width: 160px;
	border-radius: 0;
}
.adjunto-documentacion input[type="text"]{
	width: 100%;
	height: 25px;
	line-height: 25px;
	padding-left: 10px;
	border-radius: 0;
}
.adjunto-documentacion div{
	position: relative;
}
.adjunto-documentacion input[type="file"]{
	left: auto;
	right: 0;
}
.adjunto-documentacion p{
	min-width: 300px;
	text-align: left;
}
.imagen-orientacion{
	width: 120px;
	height: 120px;
	margin-bottom: 20px;
	margin-right: 20px;
}
.video-orientacion{
	width: 260px;
	height: auto;
	margin-bottom: 20px;
	margin-right: 20px;
}
.enlace-show-more{
	background: rgba(0,41,86,.70);
	opacity: 0;
	transition:.5s
}
.enlace-show-more i{
	color: white;
	font-weight: bold;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-style: normal;
	border: 3px solid white;
	font-size: 26px;
	transition:.5s
}

.enlace-show-more:hover{
	opacity: 1;
}

.enlace-show-more i:hover{
	transform:scale(1.1);
	-webkit-transform:scale(1.8);
}

.video-orientacion .enlace-show-more i{
	border: none;
	width: auto;
	font-size: 40px;
	height: auto;
}

.js-orientacion{
	display: none;
}

.banda-gris-landing{
	height: 130px;
}
.titulo-landing{
	font-size: 36px;
	text-transform: uppercase;
	background: url(../img/background-landing-text.png) center/798px no-repeat;
	text-indent: -9999px;
	height: 150px;
}
.titulo-landing.postgrado{
	font-size: 36px;
	text-transform: uppercase;
	background: url(../img/background-landing-text_postgrado.png) center/798px no-repeat;
	text-indent: -9999px;
	height: 150px;
}

.editar{
	width: 90px;
	height: 25px;
	line-height: 25px;
}
.estudio{
	width: calc(50% - 20px);
	min-width: 250px;
	margin-bottom: 20px;
}

.formulario-contacto .input-text{
	border: 1px solid rgba(235,108,93,.65);
	height: 30px;
	line-height: 30px;
	margin-bottom: 13px;
	padding-left: 10px;
	border-radius: 0;

}
.formulario-contacto textarea.input-text{
	height: 76px;
	padding-top: 5px;
	line-height: 1.3em;
	resize:none;
	border-radius: 0;
}
.show-login-header{
	color: white;
	width: 100px;
	height: 30px;
	background: #eb6c5d;
	display: inline-block;
	font-size: 20px;
	line-height: 30px;
}

.contenedor-formulario-header::before{
	content: '';
	border: 12px solid rgba(0, 0, 0, 0);
	border-bottom-color: #eb6c5d;
	position: absolute;
	right: 38px;
	top: -20px;
	display: inline-block;
	-webkit-transition-delay: 2s; /* Safari */
	transition-delay: 2s;
	-webkit-transition:.5s;
	transition:.5s;

}

.contenedor-formulario-header{
	width: 250px;
	background: #eb6c5d;
	position: absolute;
	right: 0;
	top: 60px;
	z-index: 100;
	-webkit-box-shadow: 2px 2px 4px 0px rgba(50, 50, 50, 0.49);
	-moz-box-shadow:    2px 2px 4px 0px rgba(50, 50, 50, 0.49);
	box-shadow:         2px 2px 4px 0px rgba(50, 50, 50, 0.49);
	transition:.5s;
}

.contenedor-formulario-header.oculto{
	top:-300px;
}
.contenedor-formulario-header.oculto::before{
	top: 0px;
}
.contenedor-input{
	background: white;
	margin-bottom: 15px;
}

.contenedor-input input{
	border: none;
	height: 30px;
	line-height: 30px;
}
.contenedor-input i{
	height: 25px;
	width: 30px;
	line-height: 25px;
	font-size: 20px;
	margin-right: 5px;
	border-right: 1px solid #eb6c5d;
	color: #eb6c5d;
}

.contenedor-alertas-pop::before{
	content: '';
	border: 12px solid rgba(0, 0, 0, 0);
	border-bottom-color: #eb6c5d;
	position: absolute;
	right: 118px;
	top: -20px;
	display: inline-block;
	-webkit-transition-delay: 2s; /* Safari */
	transition-delay: 2s;
	-webkit-transition:.5s;
	transition:.5s;

}

.contenedor-alertas-pop{
	width: 310px;
	background: #eb6c5d;
	position: absolute;
	right: 0;
	top: 50px;
	z-index: 100;
	-webkit-box-shadow: 2px 2px 4px 0px rgba(50, 50, 50, 0.49);
	-moz-box-shadow:    2px 2px 4px 0px rgba(50, 50, 50, 0.49);
	box-shadow:         2px 2px 4px 0px rgba(50, 50, 50, 0.49);
	transition:.5s;
	padding-top: 25px;
}

.contenedor-alertas-pop.oculto{
	top:-300px;
}

.alerta-pop{
	margin-bottom: 8px;
}

.info-alerta{
	background: white;
	padding:10px;
	margin-right: 5px;
	width: calc(100% - 30px);
}

.cerrar-pop{
	position: absolute;
	right: 10px;
	top: 0px;
	color: white;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	font-size: 20px;
}

.popup-big{
	width: 100%;
	max-width: 1200px;
	background: white;
	padding: 40px 0 40px 0;
	display: inline-block;
	margin-top: calc(50vh - 300px);
}
.contenedor-botones-duo .boton{
	width: 150px;
}

.contenedor-botones-duo .boton:first-of-type{
	margin-right: 30px;
}

.movil{
	display: none;
}
.tablet{
	display: none;
}

.nombre-testimonio{
	text-transform: uppercase;
	font-weight: 500;
	overflow: hidden;
}

.info-perfil{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-start;
	-webkit-justify-content: flex-start;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 5px;
}

.js-cerrar-menu{
	display: none;
}

.listado-opciones-landing img{
	margin-bottom: 3px;
	max-width: 220px;
}

@media screen and (max-width: 1400px) {
	
}

@media screen and (max-width: 1024px) {
	.submenu ul{
		margin-left: 0!important;
	}

}
@media screen and (max-width: 980px) {
	.container-980{
		padding: 0 15px;
	}
	.contenedor-elementos{
		justify-content: space-around;
		-webkit-justify-content: space-around;
	}
	.elemento{
		margin-bottom: 20px;
	}
	.contenedor-filtro .boton{
		margin-bottom: 20px;
	}
	.oferta{
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.cuerpo-alerta{
		padding: 15px 10px 15px 20px;
	}
	.cuerpo-alerta p{
		padding-right: 20px;
	}
}
@media screen and (max-width: 960px) {
	.height-50{
		min-height: 50px;
		height: auto;
	}
	.listado-enlaces-footer{
		padding: 15px;
	}
	.enlace-footer{
		margin-bottom: 10px;
	}
	.enlace-footer:last-of-type{
		margin-bottom: 0;
	}
	.barra-inicio{
		padding: 0 15px;
	}
}

@media screen and (max-width: 956px){
	.wrapper.registro{
		min-height: calc(100vh - 291px);
	}
	.listado-enlaces-footer .enlace-footer:nth-child(3){
		border-right: 0;
	}

	.enlace-footer:last-of-type{
		padding-left: 0;
	}
	.enlace-footer:first-of-type{
		padding-left: 15px;
	}

}

@media screen and (max-width: 876px){
	.nombre-oferta{
		margin-bottom: 10px;
	}
	.titulo-landing{
		background-size: 100%;
		height: 100px;
	}
}

@media screen and (max-width: 710px) {
	.encabezado{
		padding-top: 50px;
	}
	.barra-inicio{
		position: fixed;
		top: 0;
		z-index: 100;
	}
	.listado-menu{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.js-show-menu{
		width: 30px;
		height: 25px;
		position: absolute;
		left: 0;
		top: 11px;


	}
	.js-show-menu span{
		width: 30px;
		height: 2px;
		background: #fff;
		display: inline-block;

	}
	.menu{
		height: auto!important;
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		position: fixed;
		width: 100%;
		top: -100vh;
		padding-top: 20px;
		z-index: 100;
	}
	.js-cerrar-menu{
		width: 50px;
		height: 50px;
		background: #eaeaea;
		font-size: 40px;
		border-radius: 50%;
		transform:rotate(45deg);
		-webkit-transform:rotate(45deg);
		margin-bottom: 10px;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
	}
	.cover.menu{
		display:none;background: rgba(0,0,0,.89);
	}
	.blur{
		-webkit-filter:blur(3px);
	}
	.menu > div{
		padding: 0;
	}
	.listado-menu{
		position: relative;
		z-index: 100;
	}
	.listado-menu li{
		width: 100%;
	}
	.submenu{
		height: auto!important;
		left: -200vh;
		width: 100%;
		position: fixed;
		top: 280px;
		display: inline-block;
		z-index: 90;
	}
	.submenu > li{
		display: none;
	}
	.container-login{
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
		-ms-align-items: center;
		align-items: center;
		-webkit-align-items: center;
	}
	.middle-width{
		width: 100%;
	}
	.contenedor-login:nth-child(2n){
		border-left: 0;
		border-top: 1px solid #002956;
	}
	.boton-skull-celeste{
		min-width: 120px;
	}
	.boton-gris{
		min-width: 120px;
		margin: 0 20px 0 0;
	}
	.boton-celeste{
		min-width: 120px;
		padding: 0 5px;
	}
	.contenedor-info-empresa{
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.contenedor-botones-detalle{
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		-o-flex-direction: row;
		flex-direction: row;
		margin-top: 10px;
		justify-content: flex-start;
		-webkit-justify-content: flex-start;
	}
	.contenedor-botones-detalle.last{
		margin-top: 30px;
	}
	.contenedor-nombre-oferta{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		-ms-align-items: flex-start;
		align-items: flex-start;
	}
	.estado-oferta{
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		-o-flex-direction: row;
		flex-direction: row;	
	}
	.estado-oferta span:first-of-type{
		margin-right: 5px;
	}
	.nombre-testimonio{
		line-height: .9em;
		margin-bottom: 5px;
	}
	.nombre-testimonio + p{
		margin-bottom: 10px;
	}

	.configuracion{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		justify-content: flex-start;
		-webkit-justify-content: flex-start;
	}
	.configuracion p{
		margin-bottom: 5px;
	}
	.configuracion p::before{
		display: none;
	}

	.estudio{
		width: 100%;
	}
	
	.lugar-realizacion{
		margin: 10px 0;
	}
	.contenedor-miga{
		margin: 15px 0;
	}
	.requisitos-puesto-detalle{
		margin: 20px 0;
	}
	.listado-detalles-puesto{
		margin-top: 0;
	}

	.listado-opciones-landing li{
		width: 32%;
	}
	.listado-opciones-landing li img{
		width: 100%;
	}
	.contenedor-logo img{
		max-width: 120px;
	}
}

@media screen and (max-width: 600px){
	.nombre-oferta{
		line-height: .9em;
	}
	.oferta{
		overflow: hidden;
	}
	.contenedor-contenedor-fecha{
		-ms-align-items: flex-start;
		align-items: flex-start;
		-webkit-align-items: flex-start;
	}
	.contenedor-fecha{
		justify-content: flex-start;
		-webkit-justify-content: flex-start;
		width: 100%;
	}
	.oferta > div{
		max-width:100%;
	}
	.opcion{
		width: 50%;
		margin-bottom: 20px;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		justify-content: flex-start;
		-ms-align-items: stretch;
		align-items: stretch;
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.titulo-opcion{
		font-size: 17px;
		width: 100%;
	}
	.adjunto-documentacion{
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.adjunto-documentacion p{
		margin-bottom: 10px;
		padding-left: 0;
		min-width: auto;
	}
	.adjunto-documentacion p::before{
		display: none;
	}
	.adjunto-documentacion .boton-naranja-slim{
		min-width: 100px;
	}
	.contenedor-cv-documentacion{
		padding:0;
	}
	.contenedor-titulo-con-imagen{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		padding-top: 20px;
	}
	.contenedor-titulo-con-imagen h1{
		position: relative;
		left: 0;
		top: 0;
	}
	.titulo-landing{
		height: 70px;
	}
	.listado-opciones-landing img{
		margin-bottom: 3px;
		max-width: 100%;
	}
}

@media screen and (max-width: 545px) {
	.contenedor-info{
		display: none;
	}
	.wrapper.registro{
		-ms-align-items: flex-start;
		align-items: flex-start;
		-webkit-align-items: flex-start;
	}
	.wrapper-oferta{
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
		justify-content: flex-start;
		-webkit-justify-content: flex-start;
	}
	.imagen-oferta{
		margin-bottom: 20px;
	}
	.imagen-oferta-brother{
		width: 100%;
		padding-left: 0;
	}
	.detalle-puesto{
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.detalle-puesto .detalle{
		width: 100%;
		text-align: left;
		margin-bottom: 5px;
		margin-top: 10px;
	}
	.detalle-puesto .informacion{
		width: 100%;
	}
	.contenedor-oferta-detalle{
		border: none;
		padding: 0;
	}
	.oferta-fue{
		padding: 0;
	}

	.cantidad-ofertas-activas{
		-webkit-order: -1;
		-moz-order: -1;
		-ms-order: -1;
		-o-order: -1;
		order: -1;
		margin-left: 0;
		margin-right: 5px;
	}


	.titulo-practicas-curriculares{
		text-align: left;
		margin-bottom: 10px;
	}
	.contenedor-info-testimonios{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.titulo-generico-imagen{
		padding: 15px;
	}
	.font-smallx2{
		font-size: 16px;
	}
	.alerta{
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.tiempo-ago{
		width: 100%;
		padding: 20px 0;
	}
	.contenedor-nombre-oferta{
		margin-bottom:5px;
	}
	.contenedor-nombre-oferta h1{
		margin-bottom: 5px;
	}
	.contenedor-nombre-empresa{
		margin-bottom: 5px;
	}
	.ubicacion{
		margin-bottom: 5px;
	}
	.contenedor-ofertas .ubicacion{
		margin-bottom: 0;
	}
	.contenedor-check{
		margin-bottom:20px;
	}
	.contenedor-check p{
		width: 100%;
		margin-bottom: 10px;
	}
	.contenedor-checkbox{
		width: 100%;
	}
	.contenedor-elementos{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.contenedor-ofertas{
		margin-top: 20px;
	}
	.mb-5-mvl{
		margin-bottom: 5px;
	}

	.titulo-landing{
		background:url(../img/background-landing-text-movil.jpg) center/100% no-repeat;
	}

	.titulo-landing.postgrado{
		background:url(../img/background-landing-text-movil_postgrado.png) center/100% no-repeat;
	}
}
@media screen and (max-width: 485px){
	.recuento{
		padding: 0 10px;
	}
	.listado-opciones-landing li{
		width: calc(50% - 10px);
		margin-bottom:20px;
		max-width: 320px;
	}
}
@media screen and (max-width: 427px){
	.enlace-footer:first-of-type{
		padding-left: 0;
	}
	.enlace-footer:nth-child(3){
		padding-right: 0;
	}
	.titulo-header{
		font-weight: normal;
	}
}
@media screen and (max-width: 400px){
	.listado-imagenes-orientacion{
		justify-content: center;
		-webkit-justify-content: center;
	}
	.listado-imagenes-orientacion .imagen-orientacion:nth-child(2n){
		margin-right: 0;
	}
	.imagen-orientacion:last-of-type{
		margin-right: 0;
	}
	.listado-videos-orientacion{
		justify-content: center;
		-webkit-justify-content: center;
	}
	.video-orientacion{
		margin-right: 0;
	}
	.titulo-generico-xxl{
		font-size: 20px;
	}
	.interruptor{
		width: 100px;
	}
	.contenedor-interruptor .fondo{
		width: 100px;
	}
	.contenedor-interruptor .fondo.on{
		left: 100px;
	}
	.contenedor-adjuntar-archivo{
		width: 100%;
	}
	.elem-adjunto{
		justify-content: center;
		-webkit-justify-content: center;
	}
	.elem-adjunto input[type="text"]{
		margin-bottom: 10px;
	}
	.contenedor-adjuntar-archivo a{
		text-align: center;
	}
	.contenedor-ofertas{
		padding: 15px 0;
	}
	.enlace-footer{
		width: 100%;
		padding: 0;
		border: 0;
	}
}

@media screen and (max-width: 345px) {
	

	.contenedor-botones-detalle.last .boton-gris{
		margin-bottom: 10px;
	}
	.label-for-checkbox{
		text-align: left;
	}
	.recuento{
		width: 50%;
		border: none;
	}
	.recuento:first-of-type{
		border-right: 1px solid #002954;
	}
	.recuento:last-of-type{
		margin-top: 20px;
	}
}

@media screen and (max-height:730px){
	.wrapper-xxl {
		margin-bottom:40px;
	}
}


