/* logo */
/* Default styling, for mobile devices */
#Mainlogocontainer img {
  max-width: 100%;
}

/* Media query for desktop */
@media screen and (min-width: 768px) {
  #Mainlogocontainer img {
      max-width: none;
      display: inherit;
  }
}

/* Hover effect */
.box:hover {
  border-color: #007bff;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
  transform: translateY(-10px);
}

/* Hover effect for image */
.box figure img:hover {
  opacity: 0.8;
}

/* Optionally, add a background color and text color change on hover */
.box:hover .details {
  background-color: rgba(0, 123, 255, 0.1);
  color: #007bff;
}




/* The container */
.mycheckcontainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.mycheckcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.mycheckmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.mycheckcontainer:hover input ~ .mycheckmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.mycheckcontainer input:checked ~ .mycheckmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.mycheckmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.mycheckcontainer input:checked ~ .mycheckmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.mycheckcontainer .mycheckmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*  aqui empieza   ******************************************** */
.my-custom-select {
  position: relative;
  font-family: Arial;
}

.my-custom-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background-color: DodgerBlue;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: DodgerBlue;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}




.overlay{
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 1000;
  cursor: pointer; 
}

.menu-overlay{
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 45px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 1000;
  cursor: pointer; 
}

@media screen and (max-width:991px) {
.menu-overlay{
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 45px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 100;
  cursor: pointer; 
}}


.fielderror {
  background:#FBA795 !important;
}

.loader {
  position: fixed;
  left: 50%;
  top: 50%;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -76px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  z-index: 100;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.goog-te-banner-frame {
display:none;
}

.goog-tooltip {
    display: none !important;
}
.goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important; 
    box-shadow: none !important;
}

.myMiniTitle{
  padding-top:5px;
}

.oculto {
  display: none !important;
}

.modal-header {
  background: #4885ed;
}

.modal-title {
  color: #FFF;
}

.modal-header .close {
	margin-top: -8px;
	opacity: 1;
	color: #FFF;
	outline: none;
}

.modal-header .close:hover {
	background: none;
	outline: none;
}

.modal-header .close:active {
	outline: none;
}

.contentlogo {
  display: inline-block;
  width: 100%;
}

.contentlogo img {
  float: left;
}

.contentlogo .contact-phone {
  float: left;
  margin: 4px 0 0 10px;
  font-size: 13px;
  font-weight: bold;
}

.contentlogo .soap-icon-phone {
	display: inline-block;
	margin: 0 5px 0 0;
	color: #01b7f2;
}

.amenidades {
	margin: 12px 0 0 0;
}

.imgcentrado {
	display: block;
	width: 95%;
	left: 0;
	right: 0;
	margin: 0 auto 0 auto;
}

.atributos {
	text-align: left;
	padding: 0 0 0 15%;
}

.queincluye {
	display: block;
	text-align: center;
}

.txtch {
	font-size: 16px;
	line-height: 20px;
}


.txtxch {
	font-size: 10px;
	line-height:14px;
}

.tarifa {
	text-align: left !important;
	padding: 0 0 0 8px !important;
	margin: 5px 0 5px 0;
	font-size:1.2em;

}


.tarifa1 {
	text-align: right !important;
	padding: 0 8px 0 8px !important;
	margin: 5px 0 0 0;
	font-size:1.2em;
	float:right;

}
.tarifa2 {
	text-align: right !important;
	padding: 0 8px 0 8px !important;
	margin: 2px 0 0 0;
	font-size:1.66em;
}

.total-precio {
	color: #98ce44;
}

.margentop10 {
	margin-top: 10px;
}

.margentop20 {
	margin-top: 20px;	
}

#description1, #description2 {
	position: relative;
}

.box-cerrar {
    background: #01b7f2;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 20px;
    height: 20px;
    text-align: center;
    color: #FFF;
    cursor: pointer;
}

.box-cerrar:hover {
	text-decoration: none;
	background: #FFF;
	border-left: solid 2px #01b7f2;
	border-bottom: solid 2px #01b7f2;
}

.btnenviar {
	background: #98ce44 !important;
}

.tt {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.tt i {
	color: #01b7f2;
}

.btncambiar {
	background: #01b7f2 !important;
	width: 100px !important;
}

.btncambiar:hover {
	background: #01b7f2 !important;
}

#header .mobile-menu-toggle {
    padding: 0;
    margin: 0;
    height: 40px;
    width: 45px;
    padding: 12px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 45;
    bottom: 0;
    display: none;
}

#header #celdamobilemenuicon{
	display:none;
}

#header .mobile-menu-toggle .icon-bar {
	background: white;
}

#header .mobile-language-button {
    background: url(../images/icon/mobile-menu.png) no-repeat center center #1a1a1a;
    padding: 0;
    margin: 0;
    height: 45px;
    width: 45px;
    padding: 12px;
    position: absolute;
    right: 45;
    top: 0;
    z-index: 45;
    bottom: 0;
    text-indent: -9999px;
    display: none;
}

#politicas.travelo-box {
	padding: 0 0 0 0 !important;
}

.headerpoliticas {
	background: #ecf0f1;
	padding: 20px;
}

.menupoliticas {
	list-style: none;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	display: inline-block;
	width: 100%;
}

.menupoliticas li {
	float: left;
	width: 33.33%;
}

.menupoliticas li a {
	display: block;
	width: 100%;
	cursor: pointer;
	padding: 4px;
}

.menupoliticas li a:hover{
	color: #01b7f2;
}

.menupoliticas li a.activo {
	color: #01b7f2;
}

.contenpoliticas {
	width: 100%; 
	height: 400px; 
	overflow: auto;
	padding: 20px;
	text-align: justify;
}

.selectmoneda {
  	padding: 0 0 0 0 !important;
    height: 22px !important;
    margin: 2px 0 0 0 !important;
}


@media screen and (min-width:511px) {
#amenitiescontainerxs{
	display:none;
}
#amenitiescontainernormal{
	display:block;
}

#cardescriptionright{
	display:block;
}

#cardescriptionleft{
	display:none;
}

}

@media screen and (max-width:510px) {
	
#amenitiescontainerxs{
	display:block;
}

#amenitiescontainernormal{
	display:none;
}

#cardescriptionright{
	display:none;
}

#cardescriptionleft{
	display:block;

}

		.descext{
	margin-bottom:20px;
	}

	.myxamenities{
	font-size:.9em; 
	display:block; 
	float:left;
	}

	.h5{
		font-weight:normal;
	}

	.imgcentrado {
		width: 95%;
		margin: 0 auto 8px auto;
	}

	.imgcentrado img {
		display: block;
		left: 0;
		right: 0;
		margin: 0 auto 0 auto;
	}

	.box-title {
		text-align: left;
	}

	.amenidades {
		text-align: center;
	}

	.atributos {
		display: block;
		width: 280px;
		height: 25px;
		left: 0;
		right: 0;
		margin: px auto 0 auto;
		text-align: center;
	}

	.atributos dt, .atributos dd {
		float: left;
		padding: 0 5px 0 5px;
	}

	.tarifa {
		text-align: left !important;
		padding: 0 0 0 8px !important;
		margin: 5px 0 5px 0;
	}

	.tarifa2 {
		text-align: right !important;
		padding: 0 8px 0 0 !important;
		margin: 5px 0 5px 0;
	}
}

@media screen and (min-width:321px) and (max-width:480px) { 
	
	.descext{
	margin-bottom:5px;
	}

	.h4{
		font-size:.8em;
	}

	.myxamenities{
	font-size:.9em; 
	display:block; 
	float:left;
	}

	.h5{
		font-weight:normal;
	}

	.imgcentrado {
		width: 95%;
		margin: 0 auto 8px auto;
		/*border: solid 1px #DDD;*/
	}

	.imgcentrado img {
		display: block;
		left: 0;
		right: 0;
		margin: 0 auto 0 auto;
	}

	.box-title1 {
		text-align: left;
	}

	.amenidades {
		text-align: center;
	}

	.atributos {
		display: block;
		width: 280px;
		height: 25px;
		left: 0;
		right: 0;
		margin: px auto 0 auto;
		text-align: center;
	}

	.atributos dt, .atributos dd {
		float: left;
		padding: 0 5px 0 5px;
	}

	.tarifa {
		text-align: left !important;
		padding: 0 0 0 8px !important;
		margin: 5px 0 5px 0;
	}

	.tarifa2 {
		text-align: right !important;
		padding: 0 8px 0 0 !important;
		margin: 5px 0 0 0;
	}
}

@media screen and (min-width:481px) and (max-width:640px) {
	
	.descext{
	margin-bottom:10px;
	}

	.myxamenities{
	font-size:1em; 
	display:block; 
	float:left;
	}




	.h4{
		font-size:.9em;
	}

	.h5{
		font-weight:normal;
		
	}

	.imgcentrado {
		width: 100%;
		margin: 0 auto 8px auto;
		/*border: solid 1px #DDD;*/
	}

	.imgcentrado img {
		display: block;
		left: 0;
		right: 0;
		margin: 0 auto 0 auto;
	}

	.box-title1 {
		text-align: left;
	}

	.amenidades {
		text-align: center;
	}

	.atributos {
		display: block;
		width: 280px;
		height: 25px;
		left: 0;
		right: 0;
		margin: px auto 0 auto;
		text-align: center;
	}

	.atributos dt, .atributos dd {
		float: left;
		padding: 0 5px 0 5px;
	}

	.tarifa {
		text-align: left !important;
		padding: 0 0 0 8px !important;
		margin: 5px 0 5px 0;
	}

	.tarifa2 {
		text-align: right !important;
		padding: 0 8px 0 8px !important;
		margin: 2px 0 0 0;
	}
}


@media (min-width:768px){
  .col-sm-hide{
    display:none;
  }

}

@media (min-width:992px){
  .col-sm-hide{
    display:block;
  }

}

div.absolutezero {
    position: absolute;
    top: 0px;
    left: 0px;
}

@media screen and (min-width: 641px) and (max-width: 768px) {
	
	.myxamenities{
	font-size:1.2em; 
	display:block; 
	float:left;
	}
	.atributos {
		text-align: left;
	}

	.h5{
		font-weight:normal;
	}

}

@media screen and (min-width:769px) and (max-width:960px) {
	.myxamenities{
	font-size:1.1em; 
	display:block; 
	float:left;
	}

	.h5{
		font-weight:bold;
	}

	.atributos {
		text-align: left;
	}
}

@media screen and (min-width:961px) and (max-width:1024px) {
.myxamenities{
	font-size:1.2em; 
	display:block; 
	float:left;
	}

.h5{
		font-weight:bold;
	}

}

@media screen and (min-width:1025px) {

	.h5{
		font-weight:bold;
	}

}

@media screen and (min-width: 320px) and (max-width: 768px) {
	
	.h5{
		font-weight:normal;
	}
}

@media screen and (min-width: 320px) and (max-width: 767px) {

	.h5{
			font-weight:normal;
		}

}





/* css para mi slider*/

* {box-sizing:border-box;}

.mybox{
  box-sizing:border-box;
}

/* paneles acordion */


/*Mapa con todas las locaciones */

 #mapTodasLocaciones {
        height: 400px;  /* The height is 400 pixels */
        width: 100%;  /* The width is the width of the web page */
       }

/* Main image container */
.mainimage-container {
  max-width: 1200px;
  position: relative;
  top:0px;
  left:0px;
  margin: auto;
  overflow:hidden;
}

  
/* Slideshow container */
.slideshow-container {
  max-width: 1200px;
  position: relative;
  top:0px;
  left:0px;
  margin: auto;
  overflow:hidden;
}

#textBkGr5 {
display:block;
}

#textBkGr6 {
display:none;
}

.mySlides img{
  height: auto;
  width:100%;
  right:0px;
  margin:auto; 
  vertical-align: middle;
}



/*cuando es mas grande que 768*/
@media (min-width: 768px) {  

#textBkGr5 {
display:none;
}

#textBkGr6 {
display:block;
}

.slideshow-container{
  width: 100%;
  min-height:433px;
  position: relative;
  top:0px;
  left:0px;
  margin: auto;
  overflow:hidden;
}

.mySlides img{
  height: 435px;
  width:1068px;
  top:0px;
  margin-left:-150px;
  }


}

@media (min-width: 838px) {  

.mySlides img{
  margin-left:-100px;
  }
	}

@media (min-width: 868px) {  

.mySlides img{
  margin-left:-50px;
  }
	}

	@media (min-width: 938px) {  

.mySlides img{
  margin-left:-50px;
  }
	}


	@media (min-width: 1038px) {  

.mySlides img{
  margin-left:-0px;
  }
	}

	@media (min-width: 1068px) {  

.mySlides img{
  height: auto;
  width:100%;
  top:0px;
  left:0px;
  margin:auto;
  vertical-align:middle;
  }
	}

/*cuando es mas grande que 1050*/
@media (min-width: 1050px) {  
.slideshow-container{
  width: 100%;
  position: relative;
  top:0px;
  left:0px;
  margin: auto;
  overflow:hidden;

}
}



.containerpepe {
  max-width: 1200px;
  position: relative;
  margin: auto;
  overflow:visible;
  background: #ffffff;
}



/*cuando es mas grande que 550*/
@media (min-width: 550px) {  
.containerpepe{
  max-width: 1200px;
  position: relative;
  margin: auto;
  overflow:visible;
  padding-top:45px;
  background: #ffffff;

}
}


@media (max-width: 550px) {  
.containerpepe{
  max-width: 1200px;
  position: relative;
  margin: auto;
  overflow:visible;
  padding-top:30px;
  background: #ffffff;

}
}

@media (max-width: 450px) {  
.containerpepe{
  max-width: 1200px;
  position: relative;
  margin: auto;
  overflow:visible;
  padding-top:0px;
  background: #ffffff;

}
}




.formbusca-container {
  width: 100%;
  position: relative;
  margin: auto;
  overflow:visible;
  left:0px;
}

.formbusca-container-fake{


}



/*@media (min-width: 650px){
.formbusca-container {
  top:90px;
  width: 300px;
  position: absolute;
  margin: auto;
  overflow:visible;
  left:30px;
}
}*/

@media (min-width: 768px){
.formbusca-container {
  top:50px;
  width: 450px;
  position: absolute;
  margin: auto;
  overflow:visible;
  padding-left:30px;
  padding-right:30px;
}


 
 /**/



.formbusca-container-fake{
bottom:80px; 

}



}

@media (min-width: 900px){
.formbusca-container {
  bottom:50px;
  width: 500px;
  position: absolute;
  margin: auto;
  overflow:visible;
  padding-left:30px;
  padding-right:30px;

}
}


 .promotermscontainer{
  display:block; 
  padding: 20px 20px 20px 20px; 
  width:100%; 
  height:auto; 
  background-color:#f5f5f5;
  color:#585858; 
  margin: 0 0 20px 0;
  font-family: "Proxima Nova",sans-serif;
 }

  .promolinetc{
    font-size: 1em;
    padding: 30px 70px 30px 70px;
  }

  @media (max-width: 768px){
  .promolinetc{
  /*font-size: 1.6vw;*/
  padding: 20px 30px 20px 30px;
  }
  }

 @media (max-width: 500px){
  .promolinetc{
  /*font-size: 2.1vw;*/
  padding: 20px 20px 20px 20px;
  }
  }

/* Slide text container */
@media (max-width: 560px){
.slide-text-container {
   /* background: rgba(255, 255, 255, 0.5);*/
    padding:10px;
    position:absolute;
    display:block;
    bottom:35px;
    left:45px;
    text-align:left;
    margin: auto;
  }
}

@media (max-width: 767px){
.slide-text-container {
    /*background: rgba(255, 255, 255, 0.5);*/
    padding:20px;
    position:absolute;
    display:block;
    bottom:35px;
    left:45px;
    text-align:left;
    margin: auto;
  }
}



 

.textline1 {
   font-size:8vw;
   line-height:8.8vw; 
  font-weight:normal;

  }

.textline2 {
  font-size:3.5vw; 
  font-weight:normal;
}

.textline3 {
 font-size:2.8vw; 
  font-weight:normal;
}

.textline4 {
 font-size:2.1vw; 
  font-weight:normal;
  text-align:right;
}



/* Cuando es mas grande que 768*/
@media (min-width: 768px) {
.slide-text-container {
  /*background: rgba(255, 255, 255, 0.5);*/
  display:block;
  /*height:200px;
  width:450px;*/
  padding:20px;
  text-align:right;
  position:absolute;
  top:40px;
  right:60px;
  margin: auto;
}

.textline1 {
	
   font-size:4vw; 
   line-height:4.4vw;
  font-weight:normal;
  }

.textline2 {
  font-size:3vw;
  line-height:3.3vw; 
  font-weight:normal;
}

.textline3 {
 font-size:2vw;
 line-height:2.2vw; 
 font-weight:normal;
}

.textline4 {
 font-size:1.5vw;
 line-height:1.7vw; 
 text-align:right;
 font-weight:normal;
}


}


/* Cuando es mas grande que 768*/
@media (min-width: 938px) {
.slide-text-container {
  /*background: rgba(122, 122, 122, 0.5);*/
  display:block;
  padding:35px;
  text-align:right;
  position:absolute;
  top:40px;
  right:70px;
  margin: auto;
}




}

.myFirstOffice {
    display: block;
}

/* Show First Image while loading */
.myFirstSlide {
    display: block;
}

/* Hide the images by default */
.mySlides {
    display: none;
    opacity:1;
}

/* Next & previous buttons */
.prevmySlide, .nextmySlide {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

/* Position the "next button" to the right */
.nextmySlide {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prevmySlide:hover, .nextmySlide:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */

.textline {
  
  font-family:'verdana';
  color: #373737;
  text-shadow:2px 2px 10px white;
  width: 100%;
  padding-left:0px;
  padding-right:0px;
  text-align:right;
}





/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dotmySlide {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.activemySlide, .dotmySlide:hover {
  background-color: #717171;
}

/* Fading animation */


@-webkit-keyframes myslidesfade {
    0%   {opacity: .4;}
    7%  {opacity: 1;}
    93%  {opacity: 1;}
    100% {opacity: .6;}
}

@keyframes myslidesfade {
    0%   {opacity: .4;}
    7%  {opacity: 1;}
    93%  {opacity: 1;}
    100% {opacity: .6;}
}

.myslidesfade {
  -webkit-animation-name: myslidesfade;
  -webkit-animation-duration: 6s;
  -webkit-animation-delay: 0S;
  animation-name: myslidesfade;
  animation-duration: 6s;
  animation-delay:0s;
}


.mychswitch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.mychswitch input {display:none;}

.mychslider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.mychslider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .mychslider {
  background-color: #2196F3;
}

input:focus + .mychslider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .mychslider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.mychslider.round {
  border-radius: 34px;
}

.mychslider.round:before {
  border-radius: 50%;
}

#MobileMenuText a:hover {
	color:white;
}

@media (max-width: 475px) {  
.hide-xs {
  display:none;
}

@media (max-width: 300px) {  
.hide-xxs {
  display:none;
}


.h3-xs-inlineblock {
  display:inline-block;
}
}