/* Add h  ere all your css styles (customizations) */

.gris {
	color: #808080 !important;
}
.blanco {
	color: #ffffff !important;
}
/*
naranja: ff9f23;
naranja-claro: ffc376;
azul: 13008a;
gris: 808080;
azul: 13008a;

*/
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #c5c5c5 !important;
	opacity: 0.5; /* Firefox */
  }

/*//////////////////////////// INPUT LO QUIERO //////////////////////////////////////*/
.content-input input,
.content-select select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
}

.content-input input {
	visibility: hidden;
	position: absolute;
	right: 0;
}

.content-input {
	position: relative;
	margin-bottom: 30px;
	padding: 5px 0 5px 60px; /* Damos un padding de 60px para posicionar 
  el elemento <i> en este espacio*/
	display: block;
}

/* Estas reglas se aplicarán a todos las elementos i 
después de cualquier input*/
.content-input input + i {
	background: #f0f0f0;
	/*border:2px solid rgba(0,0,0,0.2);*/
	position: absolute;
	left: 0;
	top: 0;
	cursor: pointer;
}

/* Estas reglas se aplicarán a todos los i despues 
de un input de tipo checkbox*/
.content-input input[type="checkbox"] + i {
	width: 280px;
	height: 60px;
	border-radius: 30px;
}
/*
Creamos el círculo que aparece encima de los checkbox
con la etqieta before. Importante aunque no haya contenido
debemos poner definir este valor.
*/
.content-input input[type="checkbox"] + i:before {
	content: url("../img/icons/arrow.png"); /* No hay contenido, dentro del circulo */
	width: 60px;
	height: 60px;
	text-align: center;
	padding-top: 15px;
	background: #fff;
	border-radius: 50%;
	border: 1px solid #fff;
	position: absolute;
	z-index: 1;
	left: 0px;
	top: 0px;
	/*-webkit-box-shadow: 3px 0 3px 0 rgba(0,0,0,0.2);
  box-shadow: 3px 0 3px 0 rgba(0,0,0,0.2);
*/
	background: rgba(255, 149, 20, 1);
	background: -moz-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 0%,
		rgba(255, 122, 14, 1) 52%,
		rgba(255, 108, 10, 1) 80%,
		rgba(255, 108, 10, 1) 100%
	);
	background: -webkit-gradient(
		left top,
		right top,
		color-stop(0%, rgba(255, 149, 20, 1)),
		color-stop(52%, rgba(255, 122, 14, 1)),
		color-stop(80%, rgba(255, 108, 10, 1)),
		color-stop(100%, rgba(255, 108, 10, 1))
	);
	background: -webkit-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 0%,
		rgba(255, 122, 14, 1) 52%,
		rgba(255, 108, 10, 1) 80%,
		rgba(255, 108, 10, 1) 100%
	);
	background: -o-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 0%,
		rgba(255, 122, 14, 1) 52%,
		rgba(255, 108, 10, 1) 80%,
		rgba(255, 108, 10, 1) 100%
	);
	background: -ms-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 0%,
		rgba(255, 122, 14, 1) 52%,
		rgba(255, 108, 10, 1) 80%,
		rgba(255, 108, 10, 1) 100%
	);
	background: linear-gradient(
		to right,
		rgba(255, 149, 20, 1) 0%,
		rgba(255, 122, 14, 1) 52%,
		rgba(255, 108, 10, 1) 80%,
		rgba(255, 108, 10, 1) 100%
	);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9514', endColorstr='#ff6c0a', GradientType=1 );
}
.content-input input[type="checkbox"]:checked + i:before {
	left: 218px;
	top: 0px;
	width: 60px;
	height: 60px;
	-webkit-box-shadow: -3px 0 3px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 3px 0 -3px 0 rgba(0, 0, 0, 0.2);
}

.content-input input[type="checkbox"]:checked + i {
	background: rgba(255, 149, 20, 1);
	background: -moz-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 44%,
		rgba(255, 125, 14, 1) 63%,
		rgba(255, 108, 10, 1) 76%,
		rgba(255, 108, 10, 1) 100%
	);
	background: -webkit-gradient(
		left top,
		right top,
		color-stop(44%, rgba(255, 149, 20, 1)),
		color-stop(63%, rgba(255, 125, 14, 1)),
		color-stop(76%, rgba(255, 108, 10, 1)),
		color-stop(100%, rgba(255, 108, 10, 1))
	);
	background: -webkit-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 44%,
		rgba(255, 125, 14, 1) 63%,
		rgba(255, 108, 10, 1) 76%,
		rgba(255, 108, 10, 1) 100%
	);
	background: -o-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 44%,
		rgba(255, 125, 14, 1) 63%,
		rgba(255, 108, 10, 1) 76%,
		rgba(255, 108, 10, 1) 100%
	);
	background: -ms-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 44%,
		rgba(255, 125, 14, 1) 63%,
		rgba(255, 108, 10, 1) 76%,
		rgba(255, 108, 10, 1) 100%
	);
	background: linear-gradient(
		to right,
		rgba(255, 149, 20, 1) 44%,
		rgba(255, 125, 14, 1) 63%,
		rgba(255, 108, 10, 1) 76%,
		rgba(255, 108, 10, 1) 100%
	);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9514', endColorstr='#ff6c0a', GradientType=1 );
	transition: 0.25s;
}

.content-input input[type="checkbox"] + i:after {
	content: "¡Lo quiero!";
	position: absolute;
	text-align: center;
	font-size: 30px;
	font-weight: 300;
	color: #ff9f23;
	top: 0.2em;
	left: 3em;
	/*opacity: 0  Ocultamos este elemento ;*/
	transition: 0.25;
}
/* Cuando esté checkeado cambiamos la opacidad a 1 y lo mostramos */
.content-input input[type="checkbox"]:checked + i:after {
	opacity: 1;
	color: #fff;
	left: 20px;
	transition: 0.25s;
}

/*//////////////////////////// END INPUT LO QUIERO //////////////////////////////////////*/

/*//////////////////////////// INPUT LO QUIERO 2 //////////////////////////////////////*/
.content-input-2 input,
.select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
}
.content-input-2 input {
	visibility: hidden;
	position: absolute;
	right: 0;
}
.content-input-2 {
	position: relative;
	margin-bottom: 30px;
	padding: 5px 0 5px 60px; /* Damos un padding de 60px para posicionar 
          el elemento <i> en este espacio*/
	display: block;
}
/* Estas reglas se aplicarán a todos las elementos i 
      después de cualquier input*/
.content-input-2 input + i {
	background: #f0f0f0;
	/*border:2px solid rgba(0,0,0,0.2);*/
	position: absolute;
	left: 0;
	top: 0;
	cursor: pointer;
}
/* Estas reglas se aplicarán a todos los i despues 
      de un input de tipo checkbox*/
.content-input-2 input[type="checkbox"] + i {
	width: 340px; /*largo del input*/
	height: 65px;
	border-radius: 40px;
}
/*
      Creamos el círculo que aparece encima de los checkbox
      con la etiqueta before. Importante aunque no haya contenido
      debemos poner definir este valor.
      */
.content-input-2 input[type="checkbox"] + i:before {
	content: url("../img/icons/arrow.png"); /* No hay contenido, dentro del circulo */
	width: 60px;
	height: 60px;
	text-align: center;
	padding-top: 13px;
	background: #fff;
	border-radius: 50%;
	border: 1px solid #ffffff;
	position: absolute;
	z-index: 1;
	left: 2px;
	top: 2px;
	/*gradiente*/
	background: rgba(255, 149, 20, 1);
	background: -moz-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 0%,
		rgba(255, 122, 14, 1) 52%,
		rgba(255, 108, 10, 1) 80%,
		rgba(255, 108, 10, 1) 100%
	);
	background: -webkit-gradient(
		left top,
		right top,
		color-stop(0%, rgba(255, 149, 20, 1)),
		color-stop(52%, rgba(255, 122, 14, 1)),
		color-stop(80%, rgba(255, 108, 10, 1)),
		color-stop(100%, rgba(255, 108, 10, 1))
	);
	background: -webkit-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 0%,
		rgba(255, 122, 14, 1) 52%,
		rgba(255, 108, 10, 1) 80%,
		rgba(255, 108, 10, 1) 100%
	);
	background: -o-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 0%,
		rgba(255, 122, 14, 1) 52%,
		rgba(255, 108, 10, 1) 80%,
		rgba(255, 108, 10, 1) 100%
	);
	background: -ms-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 0%,
		rgba(255, 122, 14, 1) 52%,
		rgba(255, 108, 10, 1) 80%,
		rgba(255, 108, 10, 1) 100%
	);
	background: linear-gradient(
		to right,
		rgba(255, 149, 20, 1) 0%,
		rgba(255, 122, 14, 1) 52%,
		rgba(255, 108, 10, 1) 80%,
		rgba(255, 108, 10, 1) 100%
	);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9514', endColorstr='#ff6c0a', GradientType=1 );
}
.content-input-2 input[type="checkbox"]:checked + i:before {
	left: 274px;
	top: 2px;
	width: 60px;
	height: 60px;
	-webkit-box-shadow: -3px 0 3px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 3px 0 -3px 0 rgba(0, 0, 0, 0.2);
}

.content-input-2 input[type="checkbox"]:checked + i {
	background: rgba(255, 149, 20, 1);
	background: -moz-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 44%,
		rgba(255, 125, 14, 1) 63%,
		rgba(255, 108, 10, 1) 76%,
		rgba(255, 108, 10, 1) 100%
	);
	background: -webkit-gradient(
		left top,
		right top,
		color-stop(44%, rgba(255, 149, 20, 1)),
		color-stop(63%, rgba(255, 125, 14, 1)),
		color-stop(76%, rgba(255, 108, 10, 1)),
		color-stop(100%, rgba(255, 108, 10, 1))
	);
	background: -webkit-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 44%,
		rgba(255, 125, 14, 1) 63%,
		rgba(255, 108, 10, 1) 76%,
		rgba(255, 108, 10, 1) 100%
	);
	background: -o-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 44%,
		rgba(255, 125, 14, 1) 63%,
		rgba(255, 108, 10, 1) 76%,
		rgba(255, 108, 10, 1) 100%
	);
	background: -ms-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 44%,
		rgba(255, 125, 14, 1) 63%,
		rgba(255, 108, 10, 1) 76%,
		rgba(255, 108, 10, 1) 100%
	);
	background: linear-gradient(
		to right,
		rgba(255, 149, 20, 1) 44%,
		rgba(255, 125, 14, 1) 63%,
		rgba(255, 108, 10, 1) 76%,
		rgba(255, 108, 10, 1) 100%
	);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9514', endColorstr='#ff6c0a', GradientType=1 );
	transition: 0.25s;
}

.content-input-2 input[type="checkbox"] + i:after {
	content: "¡Lo quiero!";
	position: absolute;
	text-align: center;
	font-size: 30px;
	font-weight: 300;
	color: #ff9f23;
	top: 0.5em;
	left: 3em;
	/*opacity: 0  Ocultamos este elemento ;*/
	transition: 0.25;
}
/* Cuando esté checkeado cambiamos la opacidad a 1 y lo mostramos */
.content-input-2 input[type="checkbox"]:checked + i:after {
	opacity: 1;
	color: #fff;
	transition: 0.25s;
}
/*//////////////////////////// END INPUT LO QUIERO 2 //////////////////////////////////////*/

/*//////////////////////////// INPUT INICIAR TRAMITE //////////////////////////////////////*/

.content-input-tramite input,
.content-select select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
}

.content-input-tramite input {
	visibility: hidden;
	position: absolute;
	right: 0;
}

.content-input-tramite {
	position: relative;
	margin-bottom: 30px;
	padding: 5px 0 5px 60px; /* Damos un padding de 60px para posicionar 
  el elemento <i> en este espacio*/
	display: block;
}

/* Estas reglas se aplicarán a todos las elementos i 
después de cualquier input*/
.content-input-tramite input + i {
	background: #f0f0f0;
	/*border:2px solid rgba(0,0,0,0.2);*/
	position: absolute;
	left: 0;
	top: 0;
	cursor: pointer;
}

/* Estas reglas se aplicarán a todos los i despues 
de un input de tipo checkbox*/

.content-input-tramite input[type="checkbox"] + i {
	width: 390px;
	height: 70px;
	border-radius: 60px;
}
/*
Creamos el círculo que aparece encima de los checkbox
con la etqieta before. Importante aunque no haya contenido
debemos poner definir este valor.
*/
.content-input-tramite input[type="checkbox"] + i:before {
	content: url("../img/icons/arrow.png"); /* No hay contenido, dentro del circulo */
	text-align: center;
	padding-top: 15px;
	width: 60px;
	height: 60px;
	background: #fff;
	border: 1px solid #ffffff;
	border-radius: 50%;
	position: absolute;
	z-index: 1;
	left: 4px;
	top: 5px;
	/*gradiente*/
	background: rgba(255, 149, 20, 1);
	background: -moz-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 0%,
		rgba(255, 122, 14, 1) 52%,
		rgba(255, 108, 10, 1) 80%,
		rgba(255, 108, 10, 1) 100%
	);
	background: -webkit-gradient(
		left top,
		right top,
		color-stop(0%, rgba(255, 149, 20, 1)),
		color-stop(52%, rgba(255, 122, 14, 1)),
		color-stop(80%, rgba(255, 108, 10, 1)),
		color-stop(100%, rgba(255, 108, 10, 1))
	);
	background: -webkit-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 0%,
		rgba(255, 122, 14, 1) 52%,
		rgba(255, 108, 10, 1) 80%,
		rgba(255, 108, 10, 1) 100%
	);
	background: -o-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 0%,
		rgba(255, 122, 14, 1) 52%,
		rgba(255, 108, 10, 1) 80%,
		rgba(255, 108, 10, 1) 100%
	);
	background: -ms-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 0%,
		rgba(255, 122, 14, 1) 52%,
		rgba(255, 108, 10, 1) 80%,
		rgba(255, 108, 10, 1) 100%
	);
	background: linear-gradient(
		to right,
		rgba(255, 149, 20, 1) 0%,
		rgba(255, 122, 14, 1) 52%,
		rgba(255, 108, 10, 1) 80%,
		rgba(255, 108, 10, 1) 100%
	);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9514', endColorstr='#ff6c0a', GradientType=1 );
}
.content-input-tramite input[type="checkbox"]:checked + i:before {
	left: 320px;
	top: 5px;
	-webkit-box-shadow: -3px 0 3px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 3px 0 -3px 0 rgba(0, 0, 0, 0.2);
}

.content-input-tramite input[type="checkbox"]:checked + i {
	background: rgba(255, 149, 20, 1);
	background: -moz-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 44%,
		rgba(255, 125, 14, 1) 63%,
		rgba(255, 108, 10, 1) 76%,
		rgba(255, 108, 10, 1) 100%
	);
	background: -webkit-gradient(
		left top,
		right top,
		color-stop(44%, rgba(255, 149, 20, 1)),
		color-stop(63%, rgba(255, 125, 14, 1)),
		color-stop(76%, rgba(255, 108, 10, 1)),
		color-stop(100%, rgba(255, 108, 10, 1))
	);
	background: -webkit-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 44%,
		rgba(255, 125, 14, 1) 63%,
		rgba(255, 108, 10, 1) 76%,
		rgba(255, 108, 10, 1) 100%
	);
	background: -o-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 44%,
		rgba(255, 125, 14, 1) 63%,
		rgba(255, 108, 10, 1) 76%,
		rgba(255, 108, 10, 1) 100%
	);
	background: -ms-linear-gradient(
		left,
		rgba(255, 149, 20, 1) 44%,
		rgba(255, 125, 14, 1) 63%,
		rgba(255, 108, 10, 1) 76%,
		rgba(255, 108, 10, 1) 100%
	);
	background: linear-gradient(
		to right,
		rgba(255, 149, 20, 1) 44%,
		rgba(255, 125, 14, 1) 63%,
		rgba(255, 108, 10, 1) 76%,
		rgba(255, 108, 10, 1) 100%
	);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9514', endColorstr='#ff6c0a', GradientType=1 );
	transition: 0.25s;
}

.content-input-tramite input[type="checkbox"] + i:after {
	content: "Tramita ¡ya!";
	position: absolute;
	text-align: center;
	font-size: 30px;
	font-weight: 300;
	color: #ff9f23;
	top: 0.5em;
	left: 3.9em;
	/*opacity: 0  Ocultamos este elemento ;*/
	transition: 0.25;
}
/* Cuando esté checkeado cambiamos la opacidad a 1 y lo mostramos */
.content-input-tramite input[type="checkbox"]:checked + i:after {
	opacity: 1;
	color: #fff;
	transition: 0.25s;
}
/*//////////////////////////// END INPUT INICIAR TRAMITE //////////////////////////////////////*/

/*** OVERLAY ***/
.contenedor {
	padding: 0 1em;
}

.contenedor2 {
	padding: 0 1em;
	position: relative;
	width: 100%;
}

.image {
	display: block;
	width: 100%;
	height: 620px !important;
}

.overlay {
	position: absolute;
	bottom: 0;
	left: 100%;
	right: 0;
	background-color: #1a2859;
	overflow: hidden;
	width: 0;
	height: 100%;
	transition: 0.2s ease;
}

.contenedor:hover .overlay {
	width: 100%;
	left: 0;
}
.contenedor {
	position: relative;
	width: 50%;
}

.image {
	display: block;
	width: 100%;
	height: auto;
}

.contenedor2:hover .overlay {
	width: 100%;
	left: 0;
}
/*** OVERLAY ***/

a.borde {
	color: #808080;
	text-decoration: none !important;
}
/*.borde:after{
content: '';
display: block;
margin: auto;
height: 3px;
width: 0px;
background: transparent;
transition: width .5s ease, background-color .5s ease;
}*/
/*.borde:hover{
color: #808080;
border-bottom: 3px solid blue;
-webkit-transition: border-color 1.5s ease;
-moz-transition: border-color 1.5s ease;
-o-transition: border-color 1.5s ease;
-ms-transition: border-color 1.5s ease;
transition: border-color 1.5s ease; 
}*/
.block-valor {
	background: #ffc376;
}

.block-valor span {
	font-size: 2em;
	font-weight: bold;
}
.block-valor:hover {
	background: #ff9f23;

	-webkit-transition: 0.8s;
	-moz-transition: 0.8s;
	-o-transition: 0.8s;
	-ms-transition: 0.8s;
	transition: 0.8s;
}

.block-valor:hover span {
	color: white;
	font-size: 4em;
	font-weight: bold;

	-webkit-transition: font-size 0.8s;
	-moz-transition: font-size 0.8s;
	-o-transition: font-size 0.8s;
	-ms-transition: font-size 0.8s;
	transition: font-size 0.8s;
}

#myVideo {
	position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
}

.prueba-circulo {
	background-color: blue;
	padding: 50px;
	border-radius: 50%;
}

.prueba-circulo:hover {
	border: 2px solid red;
	transition: 1s;
	-webkit-animation: rotation 2s infinite linear;
}

/******/

#loading {
	width: 200px;
	height: 200px;
	margin: 120px auto;
	position: relative;
}
.outer-shadow,
.inner-shadow {
	z-index: 4;
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}
.inner-shadow {
	top: 50%;
	left: 50%;
	width: 160px;
	height: 160px;
	margin-left: -80px;
	margin-top: -80px;
	border-radius: 100%;
	background-color: #ffffff;
	box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.hold {
	position: absolute;
	width: 100%;
	height: 100%;
	clip: rect(0px, 200px, 200px, 100px);
	border-radius: 100%;
	background-color: #fff;
}
.fill,
.dot span {
	background-color: #f50;
}
.fill {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	clip: rect(0px, 100px, 200px, 0px);
}
.left .fill {
	z-index: 1;
	-webkit-animation: left 1s linear;
	-moz-animation: left 1s linear;
	animation: left 1s linear both;
}
@keyframes left {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		transform: rotate(180deg);
	}
}
@-webkit-keyframes left {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(180deg);
	}
}
.right {
	z-index: 3;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	transform: rotate(180deg);
}
.right .fill {
	z-index: 3;
	-webkit-animation: right 1s linear;
	-moz-animation: right 1s linear;
	animation: right 1s linear both;
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	animation-delay: 1s;
}
@keyframes right {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		transform: rotate(180deg);
	}
}
@-webkit-keyframes right {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(180deg);
	}
}
.inner-shadow img {
	margin-left: 8px;
	margin-top: 7px;
}

/*** OVERLAY ***/
.contenedor-valores {
	padding: 0 1em;
	position: relative;
	width: 50%;
}

.contenedor2 {
	padding: 0 1em;
	position: relative;
	width: 50%;
}

.image-valores {
	display: block;
	width: 100%;
	height: 370px !important;
}

.overlay-valores {
	position: absolute;
	bottom: 0;
	left: 100%;
	right: 0;
	background-color: #ff9f23;
	overflow: hidden;
	width: 0;
	height: 100%;
	transition: 0.1s ease;
}

.contenedor-valores:hover .overlay-valores {
	width: 100%;
	left: 0;
}
.contenedor-valores {
	position: relative;
	width: 50%;
}

.image {
	display: block;
	width: 100%;
	height: auto;
}

.contenedor2:hover .overlay-valores {
	width: 100%;
	left: 0;
}
/*** OVERLAY ***/

.parallax {
	/*background-image: url("../img/bg/mision_vision.jpg");*/
	/* Set a specific height */
	height: 700px;
	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.parallax-sm {
	/*background-image: url("../img/bg/mision_vision.jpg");*/
	/* Set a specific height */
	height: 350px;
	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.etiqueta-edicion {
	background: #ecf0f1;
	color: #2c3e50;
	padding: 10px;
	font-weight: bold;
}

.marcador-url {
	background: #74b9ff;
	/*color: #ecf0f1;*/
}

/* blog */
@media only screen and (max-width:550px){
	.display-4{
		font-size: 2rem;
	}
}

.bd-callout-warning {
    border-left-color: #f0ad4e !important;
}
.bd-callout-info {
    border-left-color: #5bc0de;
}
.bd-callout{
	padding: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid #eee;
    border-left-width: .25rem;
    border-radius: .25rem;
}
.img-portada-blog{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.portada-post{
	background: #e9ecef;
    padding-top: 1em;
    padding-bottom: 1em;
    border-radius: 10px;
    margin-bottom: 1.5em;
}
.img-thumbnail-post{
	background-size: cover;
    width: 200px;
    background-repeat: no-repeat;
    background-position: center;
}
.img-thumbnail-recientes{
	background-size: contain;
    width: 200px;
    background-repeat: no-repeat;
    background-position: center;
}
.thumbnail-vinculo, .thumbnail-vinculo:hover{
	color: #2c3e50;
	text-decoration: none;
}
.display-4{
	font-size: 3rem;
}
.lead{
	font-size: 1rem;
}

/****** SLIDE VIDEOS ******/
.bannerSlide{
	position: relative;
	width: 100%;
	min-height: 100vh;
}
.bannerSlide .imgBx{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.bannerSlide .imgBx img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: none;
	opacity: 0;
	transition: 0.5s;
	background-position: center;
}

.bannerSlide .imgBx img.active{
	opacity: 1;
}

.controls{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	width: 80px;
}

.controls li{
	position: relative;
	width: 80px;
	height: 80px;
	background: #fff;
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.controls li:hover{
	background: #ffeb3b;
}

.controls li:before{
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	border-left: 3px solid #111;
	border-bottom: 3px solid #111;
	transform: rotate(45deg);
}

.controls li:nth-child(2):before{
	transform: rotate(225deg);
}

.contentBx{
	position: absolute;
	bottom: 0;
	max-width: 700px;
}

.contentBx div{
	display: none;
}

.contentBx div.active{
	display: block;
	padding-left: 30px;
	margin-left: 100px;
	background: rgba(0, 0, 0, 0.2);
}

.contentBx div h2{
	color: #fff;
	font-size: 2em;
}

.contentBx div p{
	color: #fff;
	font-size: 1.1em;
}

.contentBx div a{
	color: #111;
	font-size: 1.1em;
	display: inline-block;
	padding: 10px 30px;
	background: #fff;
	margin-top: 10px;
	font-weight: 500;
	text-decoration: none;
	letter-spacing: 2px;
	text-transform: uppercase;

}

.trailer{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10000;
	background: rgba(0,0,0,0.95);
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	visibility: hidden;
	opacity: 0;
	transition: 0.5s;
}
.trailer.activeTrailer{
	visibility: visible;
	opacity: 1;
}
.trailer video{
	position: relative;
	max-width: 900px;
	outline: none;
}
.closeVideo{
	position: absolute;
	top: 30px;
	right: 30px;
	cursor: pointer;
	filter: invert(1);
	max-width: 32px;
}
@media (max-width: 991px){
	.trailer video{
		max-width: 90%;
	}
}
@media only screen and (max-width:550px){
	.drag-area{
		height: 350px !important;
	}
	.drag-area header{
		font-size: 16px !important;
	}
	.drag-area span{
		font-size: 18px !important;
	}
	.drag-area button{
		font-size: 16px !important;
	}
}


/***/
.play-button{
	background: #9f23ff;
	padding: 15px 40px;
	border-radius: 5px;
	margin-bottom: 10px;
	opacity: 0.7;
	text-decoration: none;
	color: #fff;
	border: 3px solid #9f23ff;
	text-transform: uppercase;
	transition: 0.4s;
}
.play-button:hover{
	text-decoration: none;
	color: #fff;
	opacity: 1;
}

/** MODAL FRM CLIENTE **/
#modal-frm-cliente > .modal-dialog{
	/*max-width: 90% !important;*/
}

/******* DRAG AND DROP IMAGE *******/
.drag-area{
	background: #5256ad;
	border: 2px dashed #fff;
	height: 400px;
	/* width: 700px; */
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	visibility: visible;
}
.drag-area.active{
	visibility: hidden;
}
.drag-area.activeDrag{
	border: 2px solid #fff !important;
}

.drag-area header{
	font-size: 25px;
	font-weight: 500;
	color: #fff !important;
}
.drag-area span{
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	margin: 10px 0 15px 0;
}
.drag-area button{
	padding: 10px 25px;
	font-size: 20px;
	font-weight: 500;
	border: none;
	outline: none;
	background: #fff;
	color: #5256ad;
	border-radius: 5px;
	cursor: pointer;
}
/*.drag-area img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 5px;
}*/
#cancel-img-dragged{
	position: absolute;
	right: 15px;
	top: 15px;
	font-size: 20px;
	cursor: pointer;
	display: none;
	transition: 0.3s;
}
#cancel-img-dragged.active{
	display: block;
	z-index: 9999;
}
#cancel-img-dragged.active:hover{
	height: 42px;
}
#cancel-img-dragged > span{
	background: #e74c3c;
	padding: 10px;
	font-size: 13px;
	color: #ecf0f1;
}
.imageDropArea{
	position: absolute;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: -1;
	visibility: hidden;
}
.imageDropArea img{
	height: 100%;
	width: 100%;
	object-fit: contain;
}
.imageDropArea.active{
	z-index: 1;
	visibility: visible;
}

/*** cargar imagen ****/
.btn-cargar-imagen{
	padding: 10px 25px;
	font-size: 15px;
	font-weight: 500;
	border: none;
	outline: none;
	color: #fff;
	border-radius: 5px;
	cursor: not-allowed;
	background: #808488;
	transition: 0.4s;
}
.btn-cargar-imagen.active{
	cursor: pointer;
	background: linear-gradient(135deg, #fbb04f 0%, #ee9827 100%);
}

/*  */
.row-datos-identificacion > div:nth-child(1){
	background: #E6E6E7!important;
	color: #111 !important;
	transition: 0.4s;
}
.row-datos-identificacion:hover > div:nth-child(1){
	background: #343a40!important;
	color: #fff !important;
}

/* overlay cargando información */
.overlay-cargando-informacion{
	height: 100%;
    width: 100%;
    background: rgba(128, 132, 136, 0.5);
    position: absolute;
    z-index: -1;
	display: flex;
    align-items: center;
    justify-content: center;
	visibility: 0;
}
.overlay-cargando-informacion.active{
	visibility: 1;
	z-index: 1;
}
.icono-carga-overlay{
	background: #ff9f23;
	align-content: center;
	align-items: center;
	padding: 10px;
	border-radius: 50px;
	display: flex;
	color: #fff;
}
pre {
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

.btn-foto-ine{
	border: solid 2px rgba(197, 197, 197, 0.42) !important; border-radius: 25px;
	color:#ff9f23;
	width:350px;
	font-weight:lighter;
	transition: 0.4s;
}
.btn-foto-ine img{
	height:35px;
	opacity: 0.3;
	transition: 0.4s;
}
.btn-foto-ine:hover{
	color:#fff;
	cursor: pointer;
	background: #ff9f23;
}
.btn-foto-ine:hover img{
	opacity: 1 !important;
}

.borde-naranja{
	border: solid 2px rgba(197, 197, 197, 0.42) !important; border-radius: 25px;
	color:#ff9f23;
	font-weight:lighter;
	transition: 0.4s;
	text-align: center;
}
.borde-naranja:hover{
	color: white !important;
	cursor: pointer;
	background: #ff9f23;
}

/**************/
.wrapper-foto{
	position: relative;
	height: 300px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.wrapper-foto .image-foto{
	position: absolute;
	height: 100%;
	width: 100%;
	align-items: center;
	justify-content: center;
}
.wrapper-foto .image-foto img{
	height: 100%;
	width: 100%;
	object-fit: contain;
	visibility: hidden;
}
#div-image-foto.active img{
	visibility: visible !important;
}

/****/
.content-foto{
	height: 300px;
	width: 100%;
}
.content-foto img{
	height: 100%;
	width: 100%;

}

.btn-naranja{
	background: #ff9f23;
	border-radius: 20px;
	color: #fff;
	cursor: pointer;
	width: 240px;
	margin-top: 2em;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	padding: 7px;
	font-weight: lighter;
	transition: 0.3s;
}
.btn-naranja:hover{
	font-weight: bold;
}
