@charset "UTF-8";

/**
***Azul Correos: #00457D, rgb(0, 69, 125)
***Amarillo Correos: #FFD205, rgb(255, 210, 5)
***Gris: #E7E7E7, rgb(231, 231, 231)
***/
/*Estilos generales*/

/*Fuentes de Google*/
@import url("https://fonts.googleapis.com/css?family=PT+Sans");
@import url("https://fonts.googleapis.com/css?family=Oswald");

body 
{
	font-family: "PT Sans", Verdana !important;
	font-size: 1em;
	line-height: 20px;
	color: #333333;
	background-color: #FFFFFF;
	padding: 1em 3em 1em 3em;
	text-align: justify;
}

/*Texto sub-logo*/
.sublogotxt
{
	font-weight: bold;
	font-size: 1em;
	color: #00457D;
}

/*DIV titulo página*/
.pagetitle
{
	color: #00457D;
	margin-top: 2em !important
}



/*DIV texto ayuda*/
.helpdiv
{
	font-size: 0.85em;
	color: #000000;
}

.helpdivbold
{
	font-size: 1em;
	color: #000000;
	font-weight: bold;
}
.divHeader
{
	display:none;
	margin-bottom: 3em;
}

/*Botonera anterior-siguiente*/
.buttonset
{
	text-align: right;
	margin-top: 2em;
}

/*Botonera anterior-siguiente pagina respuesta superior*/
.buttonset-top
{
	text-align: right;
}

/*Botón*/
.button 
{
	background-color: #00457D;
	color: #FFFFFF;
	padding: 0.5em 1em 0.5em 1em;
	display: inline-block;
}

.button-file
{
	background-color: #00457D;
	color: #FFFFFF;
	padding: 0.2em 0.7em 0.2em 0.7em;
	display: inline-block;
	height: 2em;
}

/*Botón hover*/
.button:hover
{
	color: #FFFFFF;
	text-decoration: none;
}

.button-file:hover
{
	color: #FFFFFF;
	text-decoration: none;
}

/*Inputs simples*/
.textInput
{
	display: inline;
	height: 2em;
	background-color: #E7E7E7;
	width: 100%;
	border: 1px solid #CCCCCC;
	padding-left: 0.8em;
}

/*DIV field required*/
.divrequiredinput:before
{
	color: red;
    content: '*';
    position: absolute;
    margin-left: 0.2em;
    margin-top: 0.3em;
    font-size: 1.5em;
    z-index: 100;
}
.divrequiredselect:before
{
	color: red;
    content: '*';
    position: absolute;
    margin-left: 0.2em;
    margin-top: -0.3em;
    font-size: 1.5em;
    z-index: 100;
}
.divrequiredtextarea:before
{
	color: red;
    content: '*';
    position: absolute;
    margin-left: 0.2em;
    margin-top: 0.3em;
    font-size: 1.5em;
    z-index: 100;
}

/*input:invalid
{
  border: 2px solid red;
}

textarea:invalid
{
  border: 2px solid red;
}
select:invalid
{
	border: 2px solid red;
}*/

.textInputFile
{
	display: inline;
	height: 2em;
	background-color: #E7E7E7;
	width: 75%;
	border: 1px solid #CCCCCC;
	padding-left: 0.8em;
}

.centered-div
{
	text-align: center;
}
@media only screen and (max-width: 600px) 
{
	.textInputFile
	{
		width: 100%;
	}
}

.GDPRFullText
{
	display: none;
}

/*Estilos placeholder*/
::-webkit-input-placeholder 
{
	font-size: 0.85em;
}
::-moz-placeholder 
{
	font-size: 0.85em;
}
:-ms-input-placeholder 
{
	font-size: 0.85em;
}
::placeholder 
{
	font-size: 0.85em;
}

.alerta
{
	color: #FF0000;
	font-size: 0.85em;
	text-align: left;
}
.alerta::empty
{
	display:none;
}
.row-top-buffer
{
	padding-top: 1em;
}
.rowgroup
{
	padding-top: 2em;
}

.textArea
{
	width: 100%;
	min-height: 8em;
	background-color: #E7E7E7;
	border: 1px solid #CCCCCC;
	padding-left: 0.8em;
}

/*Estilos cargando*/
.loading-popup
{
	display:	none;
    position:   fixed !important;
    z-index:    1000 !important;
    top:        0 !important;
    left:       0 !important;
    margin:		0 !important;
    height:     100% !important;
    width:      100% !important;
    background-color: rgba( 255, 255, 255, .8) !important;
    background-position: 50% 50% !important;
    background-repeat:   no-repeat !important;
    background-size: 80px 80px;
}

.loading-image
{
	width: 100%;
	height: 100%;
	background-image: url("/quorum/img/cargandoLB.gif");
	background-repeat: no-repeat;
	background-position: center;
}

.loadring 
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%); 
	width: 100px;
	height: 100px;
	background: white;
	border: 3px solid #FFD205;
	border-radius: 50%;
	text-align: center;
	line-height: 95px;
	color: #00457D;
	letter-spacing:2px;
	box-shadow: 0 0 20px rgba(0,0,0,1);
}
.loadring:before 
{
	content: '';
	position: absolute;
	top: -3px;
	left: -3px;
	width: 100%;
	height: 100%;
	box-sizing: content-box;
	border: 3px solid transparent;
	border-top: 3px solid #00457D;
	border-right: 3px solid #00457D;
	border-radius: 50%;
	animation: animateCircle 2s linear infinite;
}
.loadspan 
{
	display: block;
	position: absolute;
	top: calc(50% - 2px);
	left: 50%;
	width: 50%;
	height: 4px;
	background: transparent;
	transform-origin:left;
	animation: animate 2s linear infinite;
}
.loadspan:before 
{
	content:'';
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background-color: #00457D;
	top: -6px;
	right: -8px;
	box-shadow: 0 0 20px #00457D;
}

 @keyframes animateCircle
{
	0%
	{
		transform: rotate(0deg);
	}
	100%
	{
		transform: rotate(360deg);
	}
}
@keyframes animate
{
	0%
	{
		transform: rotate(45deg);
	}
	100%
	{
		transform: rotate(405deg);
	}
}
/*Fin estilos cargando*/

.response-text
{
	border: 1px solid gray;
	padding: 10px;
	color: black;
	width: 95%;
	height: auto;
}

.spanbold
{
	font-weight: bold;
}

.span-font-16
{
	font-size: 1em;
}
.div-title-space-bottom
{
	padding-bottom: 1em;
}
.div-section-title
{
	border-bottom: 2px solid #CCCCCC;
    font-weight: bold;
    color: #00457D;
    width: 100%;
}

.comentarios 
{
	margin-left: 4em;
}
.mensaje 
{
	color: #0044cc;
	font-weight: bold;
	font-size: 0.85em;
	margin-left: 4.5em;
}

.formulario 
{
	margin-left: 4em;
	margin-top: 1em;
}

.personaContacto 
{
	margin-left: 1.5em;
}

.btn-group 
{
	margin-top: 0.9em;
	margin-bottom: 0.9em;
	height: 2.3em;
}


.custom-file-upload 
{
    background-color:#28467A;
    display: inline-block;
    padding: 0.5em;
    cursor: pointer;
    height: 3.1em;
    width: 3.1em;
    margin:0;
    text-align: center;
}

.external-link
{
	color: #00457D;
	font-size: 0.85em; 
}
.arrow-icon-link
{
	width: 1.5em;
	height: 1.5em;
}

@media only screen and (max-width:568px)
{
	.btn-top
	{
		display:block;
		margin-top: 0.7em;
 		text-align: center;		
 	}
}
			
.scrollable-menu 
{
    height: auto;
    max-height: 12.5em;
    overflow-x: hidden;
}

.justify
{
	text-align: justify;
}

.radioAlerta
{
	color: red;
	margin-left: 31em;
	margin-bottom: 1.3em;
}


/************************************************************************************************************* 
* Estilos combos - INICIO
*************************************************************************************************************/
/* Reset Select */
select 
{
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	outline: 0;
	box-shadow: none;
	border: 0 !important;
	background: transparent;
	background-image: none;
}

/* Custom Select */
.selectdiv 
{
	position: relative;
	display: block;
	width: 100%;
	height: 2em;
	line-height: 2;
	background: #E7E7E7;
	overflow: hidden;
	border: 1px solid #CCCCCC;
}
select 
{
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0 3.5em 0 .8em;
	color: black;
	cursor: pointer;
}

/* Para quitar la flecha en IE */
select::-ms-expand 
{
	display: none;
}

/* Flecha */
.selectdiv::after 
{
	font: normal normal normal 0.8em/1 FontAwesome;
	content: '\f078';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding: 0.8em 0.8em;
	background: #00457D;/*color del fondo de la flecha*/
	color: white;/*Color de la flecha*/
	pointer-events: none;
	
	/* Transition */
	-webkit-transition: .25s all ease;
	-o-transition: .25s all ease;
	transition: .25s all ease;
}

/* IE no renderiza bien el icono del FontAwesome; pintamos una V Arial en su lugar*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) 
{
	.selectdiv::after 
	{
		font: normal normal bold 1em/1 Arial;
		content: 'V';
	}
}
/************************************************************************************************************* 
* Estilos combos - FIN
*************************************************************************************************************/

/************************************************************************************************************* 
* Estilos encuesta - INICIO
*************************************************************************************************************/
.divSurveyAsk
{
	background: #F2F2F2;
	padding: 1em;
	text-align: center;
	margin-top: 1.5em;
	color: #1F618D;
}
.radiosurveycontainer
{
	margin-left: 1em;
	display: inline-block;
	text-align: center;
	margin-bottom: 2em;
	margin-top: 1.5em;
}

.radiosurveycontainer label 
{
  display: inline-block;
  width: 3em;
  height: 3em;
  text-align: center;
  line-height: 3em;
  border: solid 2px #CCCCCC;
  transition: all 0.3s;
  background: #E7E7E7;
  color: black;
  margin-left: 0.5em;
  margin-right: 0.5em;
  cursor: pointer;
  border-radius: 50%;
}

.radiosurveycontainer input[type="radio"] 
{
	display: none;
}

.radiosurveycontainer input[type="radio"]:checked + label 
{
	border: solid 2px #00457D;
	background: #00457D;
	color: white;
	font-weight: bold;
}

/************************************************************************************************************* 
* Estilos encuesta - FIN
*************************************************************************************************************/



/************************************************************************************************************* 
* Estilos radiobutton - INICIO
*************************************************************************************************************/
.radioalonecontainer 
{
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default radio button */
.radioalonecontainer input 
{
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom radio button */
.radiocheckmark 
{
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: white;
  border-radius: 50%;
  border: 2px solid #00457D;
  cursor: pointer;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiocheckmark::after
{
	content: "";
	position: absolute;
	display: none;
}

/* Show the indicator (dot/circle) when checked */
.radioalonecontainer input:checked ~ .radiocheckmark::after 
{
	display: block;
}

/* Style the indicator (dot/circle) */
.radioalonecontainer .radiocheckmark::after 
{
	top: 3px;
	left: 3px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #00457D;
}

/************************************************************************************************************* 
* Estilos radiobutton - FIN
*************************************************************************************************************/

/************************************************************************************************************* 
* Estilos checkbox - INICIO
*************************************************************************************************************/
.checkcontainer
{
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.checkcontainer input 
{
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkcheckmark 
{
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: white;
	cursor: pointer;
	border: 2px solid #00457D;
}


/* Create the checkmark/indicator (hidden when not checked) */
.checkcheckmark:after 
{
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.checkcontainer input:checked ~ .checkcheckmark:after 
{
	display: block;
}

/* Style the checkmark/indicator */
.checkcontainer .checkcheckmark:after 
{
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid #00457D;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/************************************************************************************************************* 
* Estilos checkbox - FIN
*************************************************************************************************************/

/************************************************************************************************************* 
* Estilos Timeline - INICIO
*************************************************************************************************************/

/*Small*/
.tlpointersmall 
{
	width: 100%;
	height: 40px;
	position: relative;
	background: #979797; 
	font-size: 1em;
	text-align: center;
	vertical-align: middle;
	line-height: 40px;
	margin-top: 5px;
	color: white;
}
.tlpointeractivesmall
{
	background: #00457D;
	color: white;
}
.tlpointeractivesmall:after {
    content:'';
    position: absolute;
    left: 0;
    right: 0;
    margin: 40px auto;
    width: 0;
    height: 0;
    border-top: 15px solid #00457D;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
}

.tlpointer 
{
	width: 100%;
	height: 50px;
	position: relative;
	background: #979797; 
	font-size: 1em;
	text-align: center;
	vertical-align: middle;
	line-height: 50px;
	color: white;
}

.tlpointercontainer
{
	padding-left: 0px !important;
}
.tlpointeractive
{
	background: #00457D;
	color: white;
}
.tlpointerfirst:after
{
	border-left: none !important;
}
.tlpointer:after 
{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 0;
	border-left: 15px solid white;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
}
.tlpointer:before 
{
	content: "";
	position: absolute;
	right: -15px;
	bottom: 0;
	width: 0;
	height: 0;
	border-left: 15px solid #979797;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
}
.tlpointeractive:before 
{
	border-left: 15px solid #00457D;
}

/************************************************************************************************************* 
* Estilos Timeline - FIN
*************************************************************************************************************/

/************************************************************************************************************* 
* Estilos Modal - INICIO
*************************************************************************************************************/
/* The Modal (background) */
.modalContainer
{
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	color: #7b7b7b;
	margin-left: 0.8em;
	margin-right: 0.8em;
}

.modal-backdrop /*Sobreescribir el css de bootstrap*/
{
	background-color: rgba( 255, 255, 255, .8) !important;
}

/* Modal Content/Box */
.modalLB 
{
	background-color: #fefefe;
	margin: 5% auto; /* 15% from the top and centered */
	padding: 40px 20px;
	border: 1px solid #888;
	overflow: auto;
	max-width: 80%;
}

/* The Close Button */
.close
{
	color: #7b7b7b;
	float: right;
	font-size: 28px;
	font-weight: bold;
	z-index: 10;
    display: block;
	text-align: right;
	right: auto;
	pointer-events: auto;
}

.close:hover,
.close:focus
{
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.modalContainer h2.section--title 
{
	font-size: 20pt;
	padding-bottom: 0px;
	width: auto;
	line-height: 40px;
	font-weight: bold;
}

.modalContainer h2.section--title:after 
{
	background-color: #ffd204;
	content: "";
	display: block;
	height: 3px;
	margin-top: 20px;
	width: 30px;
	margin-left: 45%;
}

.lbTitle
{
	text-align: center;
	margin-bottom: 20px;
}

.modalContent
{
	padding: 40px;
	border: none;
	overflow-y: auto;
    max-height: 65vh;
}

/* Estilos ligthbox mÃ³vil*/
@media only screen and (max-width: 768px) 
{
   .modalLB 
	{
		width: 87%;
	}
	
	.close
	{
		width: 85%;
	}
			
	.modalContent 
	{
		padding: 10px;
	}
}


/************************************************************************************************************* 
* Estilos Modal - FIN
*************************************************************************************************************/

/************************************************************************************************************* 
* Tablas Multienvio - INICIO
*************************************************************************************************************/
.mstable
{
	border: 1px solid black;
	width: 100%;
	font-size: 0.8em;
}
.mstable th
{
	background-color: #00457D;
	color: white;
	font-weight: bold;
	padding-left: 0.1em;
}
.mstable td
{
	padding-left: 0.1em;
}

.mstableTotal
{
	border: 1px solid black;
	width: 100%;
	font-size: 0.8em;
	background-color: #00457D;
	color: white;
	font-weight: bold;
	padding-left: 0.1em;
	margin-top: 0.5em;
}

/************************************************************************************************************* 
* Tablas Multienvio - FIN
*************************************************************************************************************/