/*--------------------------------------------------------------*/
/*-----------------------ESTILO PRINCIPAL-----------------------*/
/*--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;700&display=swap');

@font-face {
    font-family: 'Pegasus Normal';
    src: url('fonts/PegasusNormal.woff2') format('woff2'),
        url('fonts/PegasusNormal.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

*{
	font-family: 'Exo 2', sans-serif !important;
	color: #222;
	margin: 0;
	padding: 0;
	line-height: 1.2;
	font-weight: 300;
	text-decoration: none;
	box-sizing: border-box;
	outline: none;
}

.fontd{font-family: 'Pegasus Normal' !important; text-transform: uppercase;}
moz-selection{background: #222;	color: #fff;}
*::-moz-selection{background: #222;	color: #fff;}

a{color: #bf4040;}
strong{font-weight: bold;}
p{margin-bottom: 15px; line-height: 1.6;}

p a:hover{text-decoration: underline;}

.btn{
	font-family: 'Pegasus Normal' !important;
	border: none;
	box-shadow: none;
	display: inline-block;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	font-size: 25px;
	padding: 25px 40px 17px 40px;
	transition:all 0.3s ease-out; 
	-webkit-trasition:all 0.3s ease-out;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center;
	background-color: transparent;
}

.btn1, .btn-primary{
	color: #f7e2e1;
	background-image: url("/images/estructura/btn1.png");
}
.btn1:hover, 
.btn1:focus, 
.btn1:active{
	opacity: 0.8;
}
.btn2{
	color: #f7e2e1;
	background-image: url("/images/estructura/btn2.png");
}
.btn2:hover, 
.btn2:focus, 
.btn2:active{
	opacity: 0.8;
}

/*--------------------------------------------------------------*/
/*-------------------------ESTILO COMÚN-------------------------*/
/*--------------------------------------------------------------*/

header .plaunch{
	width: 80px;
	height: 80px;
	background-image: url("/images/estructura/launch.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	cursor: pointer; 
}

header .launch{
	height: 25px;
	width: 35px;
	position: relative;
	transform: translateY(4px);
	z-index: 101;
}
header .launch span{
	background-color: #f7e2e1;
	display: block;
	height: 3px;
	left: 0;
	width: 100%;
	position: absolute;
	opacity: 1;
	-webkit-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out;
}
body.open header .launch span{background-color: #fff;}

header .launch span:nth-child(1){top: 0;}
header .launch span:nth-child(2){top: 10px;}
header .launch span:nth-child(3){top: 10px;}
header .launch span:nth-child(4){top: 20px;}

body.open header .launch span:nth-child(1){top: 18px; left: 50%; width: 0;}
body.open header .launch span:nth-child(2){transform: rotate(45deg); -webkit-transform: rotate(45deg);}
body.open header .launch span:nth-child(3){transform: rotate(-45deg); -webkit-transform: rotate(-45deg);}
body.open header .launch span:nth-child(4){top: 18px; left: 50%; width: 0;}

.anim3{transition:all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); -webkit-trasition:all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);}
.anim6{transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); -webkit-trasition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);}
.anim10{transition:all 1s cubic-bezier(0.165, 0.84, 0.44, 1); -webkit-trasition:all 1s cubic-bezier(0.165, 0.84, 0.44, 1);}

*::placeholder{color: inherit; opacity: 0.5;}
.ancla{cursor: pointer;}
img{width: auto; max-width: 100%; height: inherit;}
b{font-weight: bold; font-size: inherit; color: inherit;}
h1, h2, h3, h4, h5, h6{line-height: 1.2;}
input, button, select, textarea{font-family: inherit; margin: 0; width: 100%;}
select{-moz-appearance:none;-webkit-appearance:none;}
textarea{resize: vertical;}
textarea:focus, input:focus{box-shadow: none !important;}
div.icons > .btn-group, body > .jmodedit{display: none !important;}
.btn:hover, .btn:active, .btn:focus{text-decoration: none !important;}
.responsive{display: none;}

label.checkbox{margin-bottom: 0; position: relative; padding: 0;}
label.checkbox span{
	position: relative; 
	font-size: 13px; 
	font-weight: 400;
	line-height: 1.2;
	cursor: pointer;
}
label.checkbox span a{font-size: inherit; font-weight: inherit; color: #bf4040;}
label.checkbox span a:hover{text-decoration: underline;}
label.checkbox input{position: absolute; top: 0; left: 0; opacity: 0;}
label.checkbox span:before{
	content: "\f00c" !important;
	font-family: "FontAwesome" !important;
	color: transparent;
	width: 15px;
	height: 15px;
	display: inline-block;
	vertical-align: text-top;
	margin-right: 7px;
	text-align: center;
	line-height: 16px;
	font-size: 13px;
	background-color: #fff;
	border: 1px solid #bf4040 !important;
	vertical-align: initial;
}

label.checkbox input[type="checkbox"]:checked + span:before{
  background-color: #bf4040;
  color: #fff !important;
}
label.checkbox input:disabled + span:before{
  opacity: 0.5;
}

.cookies{
	background-color: #fff;
	position: fixed;
	z-index: 99;
	bottom: 0;
	left: 0;
	width: 100%;
	box-shadow: 0 0 30px rgba(0,0,0,0.2);
	display: none;
}
.cookies p{margin: 0; padding: 0; font-size: 13px;}
.cookies .btn{
	font-size: 13px;
	padding: 5px 15px;
	vertical-align: middle;
}
body.notfound .cookies{display: none;}
.cms-cookies table{width: 100%; margin-bottom: 30px;}
.cms-cookies table td{
	padding: 5px 10px; 
	background-color: rgba(0,0,0,0.05); 
	border: 2px solid transparent;
	font-size: 15px;
}
.cms-cookies thead td{font-weight: bold;}

i.fa{color: inherit; font-family: "FontAwesome" !important;}

.logo img{transition:all 0.3s ease-out; -webkit-trasition:all 0.3s ease-out;}

.w{color: #fff;}

.logo:hover img{opacity: 0.8;}

.alert{
	padding: 30px;
	background-color: #8BC34A;
	border: none;
	margin: 20px;
	border-radius: 0;
	position: fixed;
	z-index: 10;
	width: 90%;
	max-width: 700px;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	box-shadow: 0 0 100px rgba(0,0,0,0.5);
}
.alert *{
	color: #fff;
	box-shadow: none;
	text-shadow: none;
}
.alert-success{background-color: #8BC34A;}
.alert-warning{background-color: #FFC107;}
.alert-error{background-color: #F44336;}
.alert h4{color: #fff; text-shadow:none; margin-bottom: 10px; font-size: 22px; text-transform: capitalize;}
.alert p{margin-bottom: 0; color: #fff; text-shadow: none; line-height: 1;}
.alert .close{color: #fff; text-shadow: none; opacity: 1; position: absolute; top: 0; right: 15px; font-size: 30px; cursor: pointer;}

.popup{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-color: #fff;
	padding: 30px;
	display: none;
	z-index: 100;
}
.popup > i{
	position: absolute;
	top: -40px;
	right: -40px;
	color: #fff;
	font-size: 32px;
	cursor: pointer;
}

.popup > div{display: none;}

.popupoverlay{
	position: fixed;
	cursor: pointer;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: opacity .3s ease-out;
	opacity: 0;
	background-image: radial-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
	z-index: 100;
	display: none;
	animation-name: fadeIn;
	animation-duration: 0.3s;
	animation-fill-mode: both;
}

.popupoverlay.open{display: block;}
.popup.open{display: block;}
.lpopup{cursor: pointer;}

.m{width: 100%; max-width: 1260px; margin: 0 auto;}
.m500{width: 100%; max-width: 500px; margin: 0 auto;}
.m700{width: 100%; max-width: 700px; margin: 0 auto;}
.m900{width: 100%; max-width: 900px; margin: 0 auto;}
.m1000{width: 100%; max-width: 1000px; margin: 0 auto;}

.ova{overflow: auto;}
.rel{position: relative;}

.tl{text-align: left;}
.tc{text-align: center;}
.tr{text-align: right;}
.tj{text-align: justify;}

.h100{height: 100%;}

.bg{background-repeat: no-repeat; background-position: center; background-size: cover;}

.f{display: flex; flex-flow: row wrap; justify-content: flex-start; align-content: flex-start;}
.f.lr{justify-content: space-between;}
.f.c{justify-content: center;}
.f.r{justify-content: flex-end;}
.f.cv{align-content: center; align-items: center;}
.f.b{align-content: flex-end; align-items: flex-end;}

.f > .c10{width: 100%;}
.f > .c9{width: 90%;}
.f > .c8{width: 80%;}
.f > .c7{width: 70%;}
.f > .c66{width: 66.6666666%;}
.f > .c6{width: 60%;}
.f > .c5{width: 50%;}
.f > .c4{width: 40%;}
.f > .c33{width: 33.3333333%;}
.f > .c3{width: 30%;}
.f > .c25{width: 25%;}
.f > .c2{width: 20%;}
.f > .c15{width: 15%;}
.f > .c1{width: 10%;}
.f > .c05{width: 05%;}
.f > .vac{align-self: center;}	
.f > .f1{flex: 1;}

.pd1{padding: 1px;}
.pd2{padding: 2px;}
.pd3{padding: 3px;}
.pd4{padding: 4px;}
.pd5{padding: 5px;}
.pd5-0{padding: 5px 0;}
.pd5-10{padding: 5px 10px;}
.pd10-5{padding: 10px 5px;}
.pd10{padding: 10px;}
.pd10-0{padding: 10px 0;}
.pd0-10{padding: 0 10px;}
.pd10-30{padding: 10px 30px;}
.pd10-20{padding: 10px 20px;}
.pd10-15{padding: 10px 15px;}

.pd15{padding: 15px;}
.pd15-0{padding: 15px 0;}
.pd0-15{padding: 0 15px;}
.pd15-30{padding: 15px 30px;}

.pd20{padding: 20px;}
.pd20-0{padding: 20px 0;}
.pd0-20{padding: 0 20px;}
.pd20-30{padding: 20px 30px;}
.pd20-15{padding: 20px 15px;}
.pd20-10{padding: 20px 10px;}

.pd30{padding: 30px;}
.pd30-0{padding: 30px 0;}
.pd0-30{padding: 0 30px;}
.pd30-20{padding: 30px 20px;}
.pd30-15{padding: 30px 15px;}
.pd30-10{padding: 30px 10px;}

.pd40{padding: 40px;}
.pd40-0{padding: 40px 0;}
.pd0-40{padding: 0 40px;}
.pd40-20{padding: 40px 20px;}
.pd40-15{padding: 40px 15px;}
.pd40-10{padding: 40px 10px;}

.pd50{padding: 50px;}
.pd50-0{padding: 50px 0;}
.pd0-50{padding: 0 50px;}
.pd50-30{padding: 50px 30px;}
.pd50-20{padding: 50px 20px;}
.pd50-15{padding: 50px 15px;}
.pd50-10{padding: 50px 10px;}

.pd60{padding: 60px;}
.pd60-0{padding: 60px 0;}
.pd0-60{padding: 0 60px;}
.pd60-30{padding: 60px 30px;}
.pd60-20{padding: 60px 20px;}
.pd60-15{padding: 60px 15px;}
.pd60-10{padding: 60px 10px;}

.pd70{padding: 70px;}
.pd70-0{padding: 70px 0;}
.pd0-70{padding: 0 70px;}
.pd70-30{padding: 70px 30px;}
.pd70-20{padding: 70px 20px;}
.pd70-15{padding: 70px 15px;}
.pd70-10{padding: 70px 10px;}

.pd80{padding: 80px;}
.pd80-0{padding: 80px 0;}
.pd0-80{padding: 0 80px;}
.pd80-30{padding: 80px 30px;}
.pd80-20{padding: 80px 20px;}
.pd80-15{padding: 80px 15px;}
.pd80-10{padding: 80px 10px;}

.pd90{padding: 90px;}
.pd90-0{padding: 90px 0;}
.pd0-90{padding: 0 90px;}
.pd90-30{padding: 90px 30px;}
.pd90-20{padding: 90px 20px;}
.pd90-15{padding: 90px 15px;}
.pd90-10{padding: 90px 10px;}

.pd100{padding: 100px;}
.pd100-0{padding: 100px 0;}
.pd0-100{padding: 0 100px;}
.pd100-30{padding: 100px 30px;}
.pd100-20{padding: 100px 20px;}
.pd100-15{padding: 100px 15px;}
.pd100-10{padding: 100px 10px;}

.pd120{padding: 120px;}
.pd120-0{padding: 120px 0;}
.pd0-120{padding: 0 120px;}
.pd120-30{padding: 120px 30px;}
.pd120-20{padding: 120px 20px;}
.pd120-15{padding: 120px 15px;}
.pd120-10{padding: 120px 10px;}

.pd150{padding: 150px;}
.pd150-0{padding: 150px 0;}
.pd0-150{padding: 0 150px;}
.pd150-30{padding: 150px 30px;}
.pd150-20{padding: 150px 20px;}
.pd150-15{padding: 150px 15px;}
.pd150-10{padding: 150px 10px;}

.pd-nr{padding-right: 0 !important;}
.pd-nl{padding-left: 0 !important;}
.pd-nt{padding-top: 0 !important;}
.pd-nb{padding-bottom: 0 !important;}

/*--------------------------------------------------------------*/
/*---------------------ESTILO MANTENIMIENTO---------------------*/
/*--------------------------------------------------------------*/

body.mantenimiento:after{
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('/images/estructura/bg_mantenimiento.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: -1;
}
body.mantenimiento h1{
	margin-top: 50px; 
	text-transform: uppercase; 
	color: #000000;
	font-weight: bold;
	font-size: 55px;
}
body.mantenimiento h2{
	color: #000000;
	margin-bottom: 50px;
}
body.mantenimiento .sc i{
	background-color: #fff;
	color: blue;
	width: 60px;
	height: 60px;
	line-height: 60px;
	border-radius: 50%;
	font-size: 24px;
}
body.mantenimiento .sc i:hover{
	color: #fff;
	background-color: transparent;
	border: 2px solid #fff;
}
body.mantenimiento fieldset{
	border: none;
	padding-bottom: 40px;
	position: relative;
}
body.mantenimiento fieldset input{
	height: 35px;
	padding: 0 10px;
	margin-bottom: 5px;
}

/*--------------------------------------------------------------*/
/*-------------------------SOLO FIREFOX-------------------------*/
/*--------------------------------------------------------------*/
@-moz-document url-prefix(){}

/*--------------------------------------------------------------*/
/*----------------------------ESTILO----------------------------*/
/*--------------------------------------------------------------*/

body{background-color: #f7e2e1;}
.bgw{background-color: #fff;}

header{
	position: relative;
	padding: 20px 30px 10px 30px;
	z-index: 10 !important;
}
header .logo img{
	width: 211px;
	height: 60px;
}

.is-sticky header{box-shadow: 0 0 60px #000;}
header{background-color: #f7e2e1; transition: box-shadow 0.3s ease;}
header:after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 26px;
	background-image: url("/images/estructura/ph_corte1.png");
	background-position: center;
	transform: translateY(100%);
}

body.home .headerwrapper{height: auto !important;}
body.home header{background-color: transparent;}
body.home .is-sticky header{background-color: #f7e2e1;}
body.home header:after{opacity: 0;}
body.home .is-sticky header:after{opacity: 1;}

section.portada:before{
	content: "";
	background-image: linear-gradient(to top, transparent, rgba(255,255,255,0.5));
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 200px;
	z-index: 1;
}
section.portada{
	height: 100vh;
	background-color: #f7e1e0;
	overflow: hidden;
}

section.portada .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    background-color: #000;
}

section.portada .video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0.7;
    pointer-events: none;
}

body.home header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}

header > .f{position: relative; z-index:  10;}

section.portada h1 .tit{
	display: block;
	text-align: center;
	font-family: 'Pegasus Normal' !important;
	text-transform: uppercase;
	font-size: 100px;
	line-height: 1;
	font-weight: bold;
}

section.portada h1 .desc{
	text-align: center;
	display: block;
	text-transform: none;
	font-size: 36px;
}

section.portada .more{
	text-align: center; 
	margin-top: 80px;
	text-align: center;
	position: absolute;
	bottom: 60px;
	width: 100%;
	left: 0;
}
section.portada .more i{
	width: 60px;
	height: 60px;
	line-height: 60px;
	background-color: #fff;
	color: #bf4040;
	font-size: 34px;
	text-align: center;
	cursor: pointer;
	border-radius: 50%;
	box-shadow: 0 0 100px white;
}

section.portada .more i:hover{
	box-shadow: 0 0 100px #bf4040;
	background-color: #bf4040;
	color: #fff;
}

.wow{
	animation-duration: 1.7s;
	transition-timing-function: ease;
}

@keyframes fadeVk {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeVk {
  animation-name: fadeVk;
}

.delay1{animation-delay: 0.1s;}
.delay2{animation-delay: 0.2s;}
.delay3{animation-delay: 0.3s;}
.delay4{animation-delay: 0.4s;}


.h1{font-size: 80px;}
.h2{font-size: 70px;}
.h3{font-size: 50px;}
.h4{font-size: 40px;}
.h5{font-size: 30px;}
.h6{font-size: 25px;}
.h7{font-size: 22px;}
.crojo{color: #bf4040;}

.bgdeg{
	background-image: url("/images/estructura/bg_deg.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.k2vk.viajes .item_cat .img{
	height: 450px;
	opacity: 0.9;
}

.k2vk.viajes .item_cat .tit{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	padding: 100px 15px 30px 15px;
	color: #fff;
	background-image: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.k2vk.viajes .item_cat{display: block; position: relative;}

.k2vk.viajes .item_cat:hover .img{opacity: 1;}

section.paises .item{
	display: block;
	text-align: center;
}

section.paises .item img{
	transform: translateY(-50px);
	position: relative;
	transition: all 0.3s ease;
}
section.paises .item .h3{position: relative; z-index: 1;}
section.paises .item:hover img{
	filter: brightness(1.1);
	transform: translateY(-60px);
}

header .buscador i{
	color: #bf4040;
	font-size: 20px;
	margin-right: 20px;
}

button{width: auto;}

.grey{
	background-color: #f7e1e0;
}

.k2vk.cat.blog .item .img{
	height: 300px;
	margin-bottom: 15px;
	opacity: 0.9;
}

.k2vk.cat.blog .item:hover .img{
	opacity: 1;
}

.k2vk.cat.blog .item .tit{margin-bottom: 10px;}


section.opiniones .nom{margin-bottom: 15px;}

.psw{
	padding: 30px 90px;
	position: relative;
}

.psw .sw{
	position: absolute;
	top: 75px;
	cursor: pointer;
}

.psw .sw i{
	width: 60px;
	text-align: center;
	height: 60px;
	border-radius: 50%;
	line-height: 55px;
	font-size: 36px;
	border: 3px solid #bf4040;
	color: #bf4040;;
}

.psw .sw i:hover{
	color: #fff;
	background-color: #bf4040;
}

.psw .sw.n{right: 0;}
.psw .sw.p{left: 0;}

footer{
	background-color: #bf4040;
	position: relative;
}

footer:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 81px;
	background-image: url("/images/estructura/bg_footer.png");
	background-repeat: repeat-x;
	background-position: center;
	background-size: auto;
	transform: translateY(-100%);
}

#subs input{
	background-color: rgba(0,0,0,0.3);
	color: #fff;
	border: none;
	padding: 15px 25px;
	border-radius: 3px 0 0 3px;
	font-size: 16px;
}

#subs i{
	background: rgba(0,0,0,0.6);
	color: #fff;
	height: 49px;
	width: 49px;
	vertical-align: top;
	text-align: center;
	line-height: 49px;
	border-radius: 0 3px 3px 0;
}

footer .logo img{width: 180px; height: 51px; margin-bottom: 30px;}
.h6.d{
	font-size: 21px;
	text-transform: uppercase;
	letter-spacing: 10px;
	margin-bottom: 20px;
}

footer ul li a{color: #fff; opacity: 0.7;}
footer ul li a:hover{opacity: 1;}
footer ul li a span {
    color: inherit;
}

footer ul li {
    list-style: none;
    margin: 10px 0;
}


footer .social{margin-top: 20px;}
footer .social i{
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	background-color: #fff;
	border-radius: 50%;
	color: #bf4040;
}

#menu{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(247, 225, 224, 0.9);
	transition: opacity .3s ease-out;
	opacity: 0;
	pointer-events: none;
	z-index: 5;
}

body.open #menu{
	opacity: 1;
	pointer-events: auto;
}

#menu .moduletable_menu ul{
	padding: 60px;
	background-image: url("/images/estructura/bg_menu.png");
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

#menu .moduletable_menu ul li{
	text-align: center;
	list-style: none;
}

#menu .moduletable_menu ul li *{
	color: #fff;
	margin: 1vh 0;
	display: inline-block;
	font-size: 20px;
}

#menu .moduletable_menu ul li *:hover{text-decoration: underline;}

.pageheader{
	position: relative;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.pageheader > .m{
	padding: 90px 30px;
	position: relative;
	z-index: 1;
}

.pageheader:after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("/images/estructura/ph_corte2.png");
	background-repeat: no-repeat;
	background-position: center bottom;
}
.pageheader.blanco:after{background-image: url("/images/estructura/ph_corte2_w.png");}

.pageheader:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.45);
}

.pageheader .h1{
	color: #fff;
	text-align: center;
	font-family: 'Pegasus Normal' !important; 
	text-transform: uppercase;
	font-size: 60px;
}

.breadcrumb{text-align: center;}
.breadcrumb li{display: inline-block; list-style: none;}
.breadcrumb li:first-child{display: none;}
.breadcrumb li span{
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 3px;
	color: #fff;
}

.breadcrumb li span.divider img{display: none;}
.breadcrumb li span.divider:after{
	content: "\f105";
	font-family: "FontAwesome";
	margin: 0 10px;
}

.breadcrumb li > span{opacity: 0.7;}

.cms-legal .h4{margin-bottom: 15px;}

.manchas a{display: block;}
.manchas:not(.sinhover) .mancha:hover .ico svg{margin-bottom: 15px;}
.manchas .mancha{
	text-align: center;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;

}

.manchas .mancha .ico svg{
	max-width: 100px;
	max-height: 100px;
	margin-bottom: 30px;
	transition: all 0.3s ease-in-out;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea{
	line-height: 1.2;
	padding: 13px 18px;
	background-color: rgba(255,255,255,0.85);
	border: none;
	box-shadow: none;
	font-size: 17px;
	border-radius: 3px;
}

.popup input[type="text"],
.popup input[type="email"],
.popup input[type="password"],
.popup textarea{
	background-color: rgba(0,0,0,0.1);
}

section.mapa{height: 60vh;}
#mapagoogle{
	background-image: url("/images/estructura/bg_mapa.jpg");
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	display: block;
	height: 100%;
}

#mapagoogle .ext{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

#mapagoogle .ext div{
	color: #fff;
	font-size: 30px;
}

#mapagoogle:hover .ext{opacity: 1;}

.k2vk.viajes .items .item .imag .bg{
	height: 250px;
	opacity: 0.9;
}

.k2vk.viajes .items .item .imag .precio{
	position: absolute;
	bottom: 0;
	left: 0;
	background-image: url("/images/estructura/bg_precio.png");
	background-repeat: no-repeat;
	background-position: top right;
	padding: 45px 45px 10px 15px;
	font-size: 35px;
	line-height: 1;
	font-weight: bold;
}
.k2vk.viajes .items .item .imag .precio span{
	color: white;
	line-height: 1;
	font-size: 23px;
	margin-left: 2px;
}
.k2vk.viajes .items .item:hover .imag .bg{opacity: 1;}
.k2vk.viajes .items .item .tit{
	margin-top: 10px;
	margin-bottom: 5px;
}
.k2vk.viajes .items .item{margin-bottom: 10px;}

.k2vk.finalview section.imag img{display: block;}
.k2vk.finalview section.imag .video{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.k2vk.finalview section.imag .video i{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 70px;
	height: 70px;
	line-height: 70px;
	background-color: #fff;
	color: #bf4040;
	font-size: 21px;
	text-align: center;
	cursor: pointer;
	border-radius: 50%;
	box-shadow: 0 0 100px #fff;
}

.k2vk.finalview section.imag .video:hover i{
	box-shadow: 0 0 100px #bf4040;
	background-color: #bf4040;
	color: #fff;
}


.k2vk.finalview .galeria .item {
    padding-right: 15px;
    padding-top: 15px;
}
.k2vk.finalview .galeria .item {
    width: 25%;
}

.k2vk.finalview .galeria .item:nth-child(4n) {
    padding-right: 0;
}
.k2vk.finalview .galeria .item a {
    height: 200px;
}

.galeria a.rokbox::after {
    content: "\f002";
    font-family: "FontAwesome" !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    color: #bf4040;
    background-color: #fff;
    box-shadow: 0 0 60px #fff;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-trasition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
}

.galeria a.rokbox {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: block;
    position: relative;
    background-color: rgba(191,64,64,0);
    background-blend-mode: luminosity;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-trasition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.galeria a.rokbox:hover{
	background-color: rgba(191,64,64,1);
}

a.rokbox:hover:after{
	opacity: 1;
}

.txtng summary{
	/*opacity: 0; pointer-events: none;*/
	display: none;
}

.txtng h4 *{font-size: inherit; font-weight: inherit; color: inherit;}
.txtng ul li, .txtng ul li *{
	line-height: 1.4;
	font-size: 18px;
}
.txtng ul{margin-left: 20px;}

.txtng h4{margin-bottom: 15px;}
.txtng h5{
	margin-bottom: 10px;
	margin-top: 5px;
	font-weight: bold;
	font-size: 21px;
}

.k2share ul li{
	list-style: none;
	display: inline-block;
	margin: 0 3px;
}

.k2share ul{margin-top: 15px;}
.k2share ul li a{
	font-size: 21px;
	width: 55px;
	display: block;
	height: 55px;
	line-height: 55px;
	border-radius: 50%;
	background-color: #f7e2e1;
	color: #bf4040;
}

.k2share ul li a:hover{
	background-color: #bf4040;
	color: #fff;
}

.acymailing_form .acyfield_email{display: none;}
.acymailing_form p{margin: 0;}
#unsubpage{
	width: 100%;
	max-width: 1260px;
	margin: 0 auto;
	padding: 100px 30px;
}
#unsubpage input[type="submit"]{width: auto;}
#unsubpage form label{display: block; margin: 10px 0;}
#unsubpage form input[type="checkbox"]{width: auto;}

.buscar form button{
	background-color: #bf4040;
	color: #fff;
	border: none;
	margin-left: 5px;
	display: block;
	height: 46px;
	width: 46px;
	border-radius: 2px;
}

#xmap ul{margin-left: 15px; margin-bottom: 20px;}
#xmap ul li img{display: none;}
#xmap ul li a:hover{color: #bf4040;}

.fixwh{
	position: fixed;
	bottom: 24px;
	right: 90px;
	z-index: 10;
}

.fixwh a{display: block;}
.fixwh i{
	color: #fff;
	width: 60px;
	height: 60px;
	line-height: 60px;
	border-radius: 50%;
	text-align: center;
	font-size: 35px;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.fixfb{
	position: fixed;
	bottom: 24px;
	right: 20px;
	z-index: 10;
	width: 60px;
	height: 60px;
	line-height: 39px;
	border-radius: 50%;
	text-align: center;
	font-size: 35px;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	background-color: #0084ff;
	padding: 13px;
}

.fixfb a{display: block;}

.cmsnosotros .galeria a.rokbox{height: 140px;}
.cmsnosotros .galeria .item{width: 16.66%; padding: 5px;}

.homeresponsive{opacity: 0.7;}
.homeresponsive a.rokbox{
	height: 100%;
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.opcap input {
  display: inline-block;
  width: 60px !important;
  margin-left: 5px;
}