@charset "UTF-8";
/* Start - Parpadeo simple */
.blink-simple {
	animation: blink-simple 1s steps(5, start) infinite;
	-webkit-animation: blink-simple 1s steps(5, start) infinite;
}
@keyframes blink-simple {
	to {
		visibility: hidden;
	}
}
@-webkit-keyframes blink-simple {
	to {
		visibility: hidden;
	}
}
/* End - Parpadeo simple */
/* Start - Parpadeo */
.blink {
	animation: blink 1s linear infinite;
	-webkit-animation: blink 1s linear infinite;
}
@keyframes blink {
	0% {
		opacity: 0;
	}
	25% {
		opacity: .5;
	}
	50% {
		opacity: 1;
	}
	75% {
		opacity: .5;
	}
	100% {
		opacity: 0;
	}
}
@-webkit-keyframes blink {
	0% {
		opacity: 0;
	}
	25% {
		opacity: .5;
	}
	50% {
		opacity: 1;
	}
	75% {
		opacity: .5;
	}
	100% {
		opacity: 0;
	}
}
/* End - Parpadeo */
img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
.back-to-top {
    bottom: /*15px*/ 40px !important;
    width:100%;
    position:fixed;z-index:9;
}

.back-to-top a {
    width:auto;
    height:auto;
    border-radius:67%;
    line-height:33px;
    padding:16px 24px;
    background:rgba(253, 0, 2, 0.8) !important;
    text-align:center;
    cursor:pointer;
    color:#ffffff;
    font-size:25px;
}

@media (min-width:768px){
    .back-to-top{
        display:none;
    }
}

/* CAPTCHA VISIONCLICK */
.vc-captcha::first-letter, .vc-captcha span {
	font-size: 0;
}

/* MODALES */
.modales {
    display: none;
    position: fixed;
    color: #676767;
}

.modales > div {
    position: relative;
    padding: 28px;
    font-family: verdana;
    font-size: 12px;
}

/* MODAL RGPD */
#modal-rgpd {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: left;
    z-index: 999991;
    background-color: rgba(0, 0, 0, .44);
}

#modal-rgpd > div {
    position: relative;
    width: 900px;
    max-width: calc(100% - 30px);
    background-color: rgba(255, 255, 255, .96);
    margin: 80px auto 15px;
    border: 1px solid #aaa;
    border-radius: 5px;
}

#modal-rgpd > div label.aceptar {
    margin: 25px 0 0;
    font-size: 13px;
}

#modal-rgpd > div label.aceptar input {
    vertical-align: -2px;
}

#modal-rgpd > div label.aceptar a {
    color: #000;
}

/* MODAL RGPD2 */
#modal-rgpd2 {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    text-align: left !important;
    z-index: 999991 !important;
    background-color: rgba(0, 0, 0, .44) !important;
}

#modal-rgpd2 h4 {
    color: inherit !important;
    line-height: 1.1 !important;
    font-weight: 500 !important;
    font-style: inherit !important;
    font-family: 'Roboto', sans-serif !important;
    text-align: inherit !important;
    font-size: 18px !important;
    margin: 10px 0 20px !important;
}

#modal-rgpd2 > div {
position: relative !important;
width: 900px !important;
max-width: calc(100% - 30px) !important;
background-color: rgba(255, 255, 255, .96) !important;
margin: 15px auto !important;
border: 1px solid #aaa !important;
border-radius: 5px !important;
}

#modal-rgpd2 > div label.aceptar {
margin: 25px 0 0 !important;
font-size: 13px !important;
}

#modal-rgpd2 > div label.aceptar input {
vertical-align: -2px !important;
}

#modal-rgpd2 > div label.aceptar a {
color: #000 !important;
}

/* MODAL COOKIES */
#modal-cookies {
    left: 0;
    bottom: 15px;
    max-width: 360px;
    text-align: center;
    background-color: rgba(255, 255, 255, .9);
    z-index: 999990;
    border: 1px solid #aaa;
    border-radius: 0 5px 5px 0;
    box-shadow: 1px 1px 10px rgba(120, 120, 120, .5);
}


/* BOTONES */
button.modal-rgpd-button, button.modal-rgpd-button2 {
    visibility: hidden;
}

a.form-btn {

}

.modales a {
    cursor: pointer;
}

a.modal-ko {
    padding: 4px 0 5px;
    background: #fff;
    color: #676767;
    border: 1px solid #fff;
    text-decoration: none;
    display: block;
    text-align: center;
    position: absolute;
    top: 4px;
    right: 4px;
    width: 29px;
    border-radius: 50%;
    cursor: pointer;
}

a.modal-ko:hover {
    background: #676767 !important;
    color: #fff !important;
    border: 1px solid #fff !important;
}

a.modal-btn {
    font-size: 14px;
    margin: 4px 1px 4px 0;
    padding: 6px 18px;
    text-decoration: none;
    display: inline-block;
    width: auto;
    color: #676767;
    background: #fff;
    border: 1px solid #676767;
}

a.modal-btn.modal-ok {
    color: #fff !important;
    background: #fd0002;
    border: 1px solid #fff;
}

a.modal-btn:hover {
    color: #fff;
    background: #676767;
    border: 1px solid #fff;
}

a.modal-btn.disabled, a.modal-btn.disabled:hover {
    color: #fff;
    background: #ccc;
    border: 1px solid #fff;
    cursor: default;
}

.ui-autocomplete { position: absolute; cursor: default; z-index:999930 !important; }
.ui-front { z-index: 99999; }

/* Start - Imagen de fondo */
:root {
	--blur: blur(10px);
}
.object-fit-contain {
	object-fit: contain !important;
}
.bgImage {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: -5;
	overflow: hidden;
}
.bgImage img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
}
.bgImage.parallax img {
	position: fixed;
	z-index: 0;
	top: 0;
	display: none;
}
.bgImage.parallax.show img {
	display: block;
}
.bgBlur {
	filter: var(--blur);
	-webkit-blur: var(--blur);
}
.bgGlass::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background-color: #0009;
}
.bgGlass *,
.bgGlass *:before {
	color: #fff !important;
}
@media (max-width: 575px) {
	.object-fit-contain-xs-only {
		object-fit: contain;
	}
	.bgImage-xs-only {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		z-index: -5;
	}
	.bgImage-xs-only img {
		object-fit: cover;
		object-position: center;
		width: 100%;
		height: 100%;
	}
	.bgBlur-xs-only {
		filter: var(--blur);
		-webkit-blur: var(--blur);
	}
	.bgGlass-xs-only::before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		z-index: 0;
		background-color: #0009;
	}
	.bgGlass-xs-only *,
	.bgGlass-xs-only *:before {
		color: #fff !important;
	}
} 
@media (min-width: 576px) and (max-width: 767px) {
	.object-fit-contain-sm-only {
		object-fit: contain;
	}
	.bgImage-sm-only {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		z-index: -5;
	}
	.bgImage-sm-only img {
		object-fit: cover;
		object-position: center;
		width: 100%;
		height: 100%;
	}
	.bgBlur-sm-only {
		filter: var(--blur);
		-webkit-blur: var(--blur);
	}
	.bgGlass-sm-only::before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		z-index: 0;
		background-color: #0009;
	}
	.bgGlass-sm-only *,
	.bgGlass-sm-only *:before {
		color: #fff !important;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.object-fit-contain-md-only {
		object-fit: contain;
	}
	.bgImage-md-only {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		z-index: -5;
	}
	.bgImage-md-only img {
		object-fit: cover;
		object-position: center;
		width: 100%;
		height: 100%;
	}
	.bgBlur-md-only {
		filter: var(--blur);
		-webkit-blur: var(--blur);
	}
	.bgGlass-md-only::before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		z-index: 0;
		background-color: #0009;
	}
	.bgGlass-md-only *,
	.bgGlass-md-only *:before {
		color: #fff !important;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.object-fit-contain-lg-only {
		object-fit: contain;
	}
	.bgImage-lg-only {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		z-index: -5;
	}
	.bgImage-lg-only img {
		object-fit: cover;
		object-position: center;
		width: 100%;
		height: 100%;
	}
	.bgBlur-lg-only {
		filter: var(--blur);
		-webkit-blur: var(--blur);
	}
	.bgGlass-lg-only::before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		z-index: 0;
		background-color: #0009;
	}
	.bgGlass-lg-only *,
	.bgGlass-lg-only *:before {
		color: #fff !important;
	}
}
@media (min-width: 1200px) {
	.object-fit-contain-xl-only {
		object-fit: contain;
	}
	.bgImage-xl-only {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		z-index: -5;
	}
	.bgImage-xl-only img {
		object-fit: cover;
		object-position: center;
		width: 100%;
		height: 100%;
	}
	.bgBlur-xl-only {
		filter: var(--blur);
		-webkit-blur: var(--blur);
	}
	.bgGlass-xl-only::before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		z-index: 0;
		background-color: #0009;
	}
	.bgGlass-xl-only *,
	.bgGlass-xl-only *:before {
		color: #fff !important;
	}
}
/* End - Imagen de fondo */