:root {
  /** Colores **/
  --colorPrimario : #f57d20;
  --grisBorder: #ebe6de;
  --grisHover: #161921;
}
html, body {
  width: 100%;
  overflow-x: hidden;
}
body{
  font-family: "Spline Sans", Sans-serif;
}
p{
  margin: 0;
  margin-bottom: 0!important;
}
a{
  color: var(--colorPrimario);
}
/* 
[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
  color: #fff;
  background-color: var(--colorPrimario)!important;
  text-decoration: none;
} */
.elementskit-menu-container{
  height: auto!important;
}
.hidden{
  display: none!important;
}
.elementskit-navbar-nav-default .elementskit-menu-close {
  border: 0!important;
  color: #ffffff!important;
}
html:lang(es-MX) .footerEng{
  display: none!important;
}
html:lang(en-US) .footerEsp{
  display: none!important;
}
.btnWave a{
  position: relative;
  transition: all 1s;
  overflow: hidden;
	background-color: #ef4028 !important; 

}
.btnWave a:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--grisHover);
  z-index: -1;

  transform: translateX(-100%);
  transition: all 1s;
}
.btnWave a:hover:before{
  transform: translateX(0);

}
.btnWave a:hover{
  transform: translateX(0);
  color: var(--colorPrimario);
}
table.tableTarifas.regular tr:first-child td:first-child {
  border: 0!important;
}
#logoWinjet img{
  width: 160px;
  height: auto;
}
@media (max-width: 767px){
  .elementor-3321 .elementor-element.elementor-element-0b46c2f .elementskit-navbar-nav > li > a {
    display: block;
    text-align: center;
  }
  .elementor-3321 .elementor-element.elementor-element-0b46c2f .elementskit-navbar-nav > li > a .elementskit-submenu-indicator {
    position: absolute;
    right: 110px;
    top: 12px;
    border: 0;
    color: #ffffff;
  }
  #topNavigation .info ul li{
    display: none;
  }
  #topNavigation .info ul li:last-child{
    display: block;
  }
  .tableTarifas tbody>tr td{
    font-size: 11px;
    padding: 5px 2px;

    background: transparent;
  }

  footer .hfe-nav-menu a{
    justify-content: center!important;
  }
  footer .elementskit-infobox{
    flex-direction: column;
    align-items: center!important;
  }
  footer .elementskit-box-header{
    margin-bottom: 25px;
  
  }
  footer .elementskit-info-box-icon{
    margin: 0!important;
  }
  footer .box-body{
    text-align: center;
  }
}
table tbody>tr:nth-child(odd)>td, table tbody>tr:nth-child(odd)>th{
  background: transparent;
}

.tarifasTable table tbody>tr td{
  border: 0;
  border-bottom: solid 1px;
  font-size: 13px;
  color: #161921;
  border-color: #808080;
}
.tableTarifas tbody>tr td, .tableTarifas tbody>tr td:hover, .tableTarifas tbody>tr:hover{
  background: transparent;
}
.elementor-widget-elementskit-pricing tbody tr td:first-child {
  width: 132px;
}
.elementor-widget-elementskit-pricing tbody tr td {
  font-size: 12px;
  padding: 5px;
}
table tbody tr:hover>td, table tbody tr:hover>th{
  background: transparent!important;
}
.tableTarifas h3.txtPrimary{
  font-family: "Spline Sans", Sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  color:#161921;
  text-align: center;
  color: var(--colorPrimario);
}
/**************** PRELOADER *******************/
#overlayer {
  width:100%;
  height:100%;  
  position:fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  z-index: 1001;
  background:#404246;
  position: absolute;

}
.preloader{
  position: absolute;
  top:calc(50% - 50px); 
  left: calc(50% - 50px);
  width: 100px;
  height: 100px;
  z-index: 1002;

}
.preloader span{
  font-family: "Exo 2";
  font-size: 18px;
  position: absolute;
  bottom:-47px;
  left: 25px;
  z-index: 3;
  color: #EE4358;
}
.loader {
  display: inline-block;
  position: absolute;
  z-index:3;
  top: 50%;
  /* animation: loader 2s infinite ease; */
  width: 76px;
  height: 76px;
  margin: auto;
}
.loader-item{
  position: relative;
}
.loader::before, .loader::after {
  content: "";
  position: absolute;
}
.loader-9 {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  -webkit-animation: counterClockwise 4s linear infinite;
          animation: counterClockwise 4s linear infinite;
}
.loader-9::before, .loader-9::after {
  border-radius: 50%;
}
.loader-9::before {
  width: 22px;
  height: 22px;
  background: #EE4358;
  -webkit-animation: clockwise 4s linear infinite;
          animation: clockwise 4s linear infinite;
}
.preloader .middle{
    border-radius: 50%;
    background: #EE4358;
    width: 48px;
    height: 48px;
    position: absolute;
    z-index: 3;
    top: 14px;
    left: 14px;
}
/* .loader-9::after {
  width: 4px;
  height: 4px;
  top: 8px;
  left: 8px;
  background: #fff;
  transform-origin: -4px -4px;
  -webkit-animation: counterClockwise 1s linear infinite;
          animation: counterClockwise 1s linear infinite;
} */

@-webkit-keyframes clockwise {
  to {
    transform: rotate(1turn);
  }
}

@keyframes clockwise {
  to {
    transform: rotate(1turn);
  }
}
@-webkit-keyframes counterClockwise {
  to {
    transform: rotate(-1turn);
  }
}
@keyframes counterClockwise {
  to {
    transform: rotate(-1turn);
  }
}
.qlwapp-container{
  opacity:  0;
  transition: all 6s ease-in;
}
@media screen and (min-width: 1024px){
.centrado{
 
  margin: 0 auto;
}
}

.anpulse{
  /* -webkit-animation: bounce-down-pulse 1.6s linear infinite;
  animation: bounce-down-pulse 1.6s linear infinite; */

   box-shadow: 0 0 0 0 rgba(245, 125, 32, 1);
	transform: scale(1);
	animation: pulseBtn 1.7s infinite;
}

#horariosWinjet p.subtitle span{
	background: #ef4028!important;
}
.alertpulse{
  -webkit-animation: bounce-down-pulse 1.6s linear infinite;
  animation: bounce-down-pulse 1.6s linear infinite;


}
@-webkit-keyframes bounce-down-pulse {
 25% {
      -webkit-transform: translateY(-5px);
 }
 50%, 100% {
      -webkit-transform: translateY(0);
 }
 75% {
      -webkit-transform: translateY(5px);
 }
}

@keyframes bounce-down-pulse {
  25% {
       transform: translateY(-5px);
  }
  50%, 100% {
       transform: translateY(0);
  }
  75% {
       transform: translateY(5px);
  }
}


/****************** BOTON "BUSCAR RUTAS"************************************/
.btnSearch.anpulse {
  background-color: #ef4028 !important;
  color: #ffffff !important;
}

.btnSearch.anpulse:hover {
  background-color: #161921 !important;
  color: #f57e1f !important;
}



@keyframes pulseBtn {
	0% {
		transform: scale(0.92);
		box-shadow: 0 0 0 0 rgba(245, 125, 32, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(245, 125, 32,  0);
	}

	100% {
		transform: scale(0.92);
		box-shadow: 0 0 0 0 rgba(245, 125, 32,  0);
	}
}
.elementor-section.elementor-section-boxed > .elementor-container {
  /* max-width: 1320px!important; */
}
.w900{
  max-width: 900px;
  margin: 0 auto;
}
.w930{
  max-width: 930px;
  margin: 0 auto;
}
.w1120{
  max-width: 1120px;
  margin: 0 auto;
}


#menu{
  transition: all .5s;
  padding: 25px 0;
}
#menu.scrolled-nav{
  position: fixed;
    top: 0;
    background: #fff;
    z-index: 10;
    width: 100%;
    left: 0;
    box-shadow: 0 16px 64px 0 rgb(0 0 0 / 4%), 0 8px 40px 0 rgb(0 0 0 / 4%);
}
@media  screen and (min-width: 1025px) {
#mision{
  margin-top: -540px;
}
#site-header{
  display: none!important;
}
}
@media (max-width: 1024px){
  .elementskit-menu-container {
      max-width: 100%!important;
  }
}

/* (1024x768) iPad 1 & 2, Landscape */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  #site-header{
    display: none!important;
  }
  #menu {
    transition: all .5s;
    padding: 10px 0;
  }
}
/* (768x1024) iPad 1 & 2, Portrait */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .itemValores.left{
    margin-left: -130px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  #headerLuga {
      background-position: center 0px, right 75%;
      background-size: 200%, 45%;
      background-attachment: scroll, scroll;
  }
}
/* (1024x768) iPad 1 & 2, XGA */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait)  {
  #headerLuga{
    background-position: center 0px, right 75%;
    background-size: 220%, 85%;
    background-attachment: scroll, scroll;
  }

}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait){

  
  .ord1{
    order: 1;
  }
  .ord2{
    order: 2;
  }
  .ord3{
    order: 3;
  }
}
@media screen and (max-width: 767px){


  .itemValores.left{
    margin-left: -543px;
  }
  .serviceItem img{
    width: auto;
  }
}

/*------------------------------  FORMULARIO DE CONTACTO  -----------------------*/
.formContact label{
  color: #313041;
  font-family: "Spline Sans", Sans-serif;
 
  
}
.formContact input[type=text], .formContact input[type=email], .formContact textarea{
  border: 0;;
  box-shadow: 0px 0px 28px -6px rgba(0,0,0,0.5);
  margin-top: 15px;
  margin-bottom: 8px;
}
.formContact input[type=submit]{
  font-family: "Spline Sans", Sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  font-style: normal;
  letter-spacing: 1.1px;
  word-spacing: 0px;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: #F57D20;
  border-style: none;
  padding: 21px 35px 21px 35px;
  outline: 0;
  margin-top: 25px;
}
.formContact input[type=submit]:hover, .formContact input[type=submit]:focus{
  outline: 0;
  background-color: #161921 ;
  color: var(--colorPrimario) ;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
  border-color: var(--colorPrimario);
}
/*---------------------------BOOKING MASK ------------------*/

.overHidden{
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  #holderReservation{
    /* transition: all .5s ease; */
    width: 33.33%;
    --content-width: 100%!important;
    position: absolute;
    top: 180px;
    left: 15px;
    z-index: 10;
   
  }
  #holderReservation.stickybook {
    position: fixed;
    z-index: 10;
    top: 100px;
    left: 15px;
    
  }
}


/**************   MOBILE  ************************/
.elementskit-menu-hamburger .elementskit-menu-hamburger-icon{
  height: 3px!important;
}
.menuMobile ul li a{
  justify-content: center;
}
.elementskit-menu-close{
  font-size: 30px!important;
  width: 32px!important;
  color: transparent!important;
  background: url('/wp-content/uploads/2022/10/close.png') center center no-repeat;
}
.site-navigation-toggle-holder{
  padding: 8px 22px!important;
}

.site-navigation-toggle-holder .site-navigation-toggle {
  width: 40px;
  background: url('/wp-content/uploads/2022/10/menu-toggle.png') center center no-repeat;
  background-color: transparent!important;
  transition: all .3s;
}
.site-navigation-toggle-holder .site-navigation-toggle i{
  opacity: 0;
}
/* .site-navigation-toggle-holder.elementor-active .site-navigation-toggle i{
  opacity: 1;
} */
.site-navigation-toggle-holder.elementor-active .site-navigation-toggle {
  background: url('/wp-content/uploads/2022/10/close.png') center center no-repeat;
  background-color: transparent;
}
.site-navigation-dropdown ul.menu li a{
  text-align: center;
  box-shadow: none!important;
  color: #494C50!important;
  font-family: "Exo 2";
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.76px;
  line-height: 35px;
  text-transform: uppercase;
}
#menu-main-menu{
  height: 100vh;;
}

#mainMenu{
  transition: all .5s ease;
}
#mainMenu.stickybook{
  position: fixed;
  top: 0;
}




 /***********************  BARCO  ****************/

.boatWinjet {
  width: 100px!important;
  /* position: absolute; */
  top:5px;
  left:-10px;
  z-index: 10;
  
  -webkit-animation: boatMove 15s linear infinite;
}

.iconBox .elementskit-infobox{
  height: 405px;
}


@keyframes boatMove {
  0% { transform: translateX(-20px);}
  100% { transform: translateX(900px) ;}
}

@keyframes balanceBoat{
	0%{
		transform: rotate(0);
	}

	50%{
		transform: rotate(-3deg);
	}

	100%{
		transform: rotate(0);
	}
}


/***************---  MOBILE   ----************/




@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .hfe-nav-menu .menu-item a.hfe-menu-item:hover:before, .hfe-nav-menu .menu-item a.hfe-menu-item:hover:after, .hfe-nav-menu .menu-item a.hfe-menu-item:focus:before, .hfe-nav-menu .menu-item a.hfe-menu-item:focus:after, .hfe-nav-menu .menu-item a.hfe-menu-item.highlighted:before, .hfe-nav-menu .menu-item a.hfe-menu-item.highlighted:after, .hfe-nav-menu .current-menu-item:before, .hfe-nav-menu .current-menu-item:after, .hfe-pointer__double-line.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__double-line.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before{
    background-color: transparent!important;
  }

  html, body {
    width: 100%;
    overflow-x: hidden;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {

}
@media screen and (max-width: 767px){
  .boatWinjet {
    
    -webkit-animation: boatMove 8s linear infinite;
  }
  @keyframes boatMove {
    0% { transform: translateX(-100px);}
    100% { transform: translateX(500px) ;}
  }
  .hfe-nav-menu .menu-item a.hfe-menu-item:hover:before, .hfe-nav-menu .menu-item a.hfe-menu-item:hover:after, .hfe-nav-menu .menu-item a.hfe-menu-item:focus:before, .hfe-nav-menu .menu-item a.hfe-menu-item:focus:after, .hfe-nav-menu .menu-item a.hfe-menu-item.highlighted:before, .hfe-nav-menu .menu-item a.hfe-menu-item.highlighted:after, .hfe-nav-menu .current-menu-item:before, .hfe-nav-menu .current-menu-item:after,
  .hfe-pointer__double-line.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__double-line.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before{
    background-color: transparent!important;
  }
  html, body {
    width: 100%;
    overflow-x: hidden;
  }

  .hfe-pointer__double-line.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__double-line.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before{
    opacity: 0!important;
  }
  .reglamento ul, .reglamento ul li{
    display: block!important;
  }
  .reglamento ul li{
    margin-bottom: 15px!important;

  }


}

/*** estilos tabla tarifas***/

.tarifas{
   font-family:"Spline Sans", Sans-serif;
    display: flex;
    flex-direction: row;
  align-items:center;
}
.tarifas button:hover{

}
.tarifas button:focus{
  background-color:#f57d20!important;
}
.tarifas button {
  cursor:pointer;
  font-size:20px;
  width:70%;
  height:2rem!important;
 border-style:none;
  color:white;
   background-color: #ef4028!important;text-align: center; 
  border-radius:3px 3px 3px 3px;
  height:40px!important;
}

.tarifas select:hover{
   background-color:#ef4126!important;
}
.tablaTarifas tr th{
  background-color:#f57d20!important;
  padding:.5rem;
  color:white;
}
.tablaTarifas tr td,.tablaTarifas tr{
  text-align:center;
   padding:1rem;
}
.tablaTarifas  tr:nth-child(even){
    background-color:#dddddd;
}
.tablaTarifas {
  width:100%;
  font-family:"Spline Sans", Sans-serif;
  border-collapse: collapse;
  border-bottom:3px solid #c53d21;
}
h3{
  font-family:"Spline Sans", Sans-serif;
  
}
@keyframes select-animation {
  0% { transform: scale(1); }
  50% { transform: scale(0.97); }
  100% { transform: scale(1); }
}

button.interactive {
  animation: select-animation 1.5s infinite;
}
.tablaTarifas {
    border: none;
}

.tablaTarifas td, .tablaTarifas th {
    border: none;
}
.tablaTarifas tr{
	pointer-events:none!important;
}
/*************************/
.contMuelle:nth-child(1) {
	border-style:none!important;
}
.contMuelle:nth-child(2) {
    border-left: solid 1px var(--grisBorder);
}



/* Estilos personalizados Booking Mask */
#amletBookingMask .btnSelect {
    /* display: inline-block; */
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    /* color: var(--gris); */
    display: block;
    font-size: 14px;
    height: 60px;
    /* gap: 30px; */
    padding: 12px;
    position: relative;
    /* text-align: left; */
    color: #666666;
    width: 100%;
    background: #f3f3f3;
    cursor: pointer;
    border: solid 2px var(--colorPrimario);
    padding-left: 60px;
    border: 0;
   
    /* text-transform: uppercase; */
}
/*ICONO*/
.fa-arrow-right-arrow-left:before, .fa-exchange:before {
    content: "\f0ec";
    padding: 10px;
	margin-left:10px;
}
.fa-ticket:before {
    content: "\f145";
    padding: 13px;
}

#amletBookingMask .select {
    margin-top: -12px;
    padding-left: 10px;
    gap: 6px;
}
.fa-calendar-alt:before, .fa-calendar-days:before {
    content: "\f073";
    padding-left: 15px;
}



element.style {
}
#dates input {
    color: var(--gris);
    background-image: none;
    cursor: pointer;
    font-size: 15px;
    padding-left: 15px;
    height: 60px;
    background: #f3f3f3;
    width: 100%;
    border-radius: 14px;
    outline: 0;
    margin-bottom: 30px;
    border: 0;
    border-bottom: 1px solid #ebe6de;
    padding-left: 60px;
    padding-top: 18px;
    font-weight: 600;
}


.btnSelect i {
    display: flex
;
    color: var(--colorPrimario);
    display: block;
    left: calc(95% - 16px);
    position: absolute;
    top: calc(50% - 9px);
}
/*CONTENEDOR*/
#amletBookingMask {
    background: #fff;
    font-family: var(--fuentePrincipal);
    padding: 20px 20px 5% 20px;
    position: relative;
    height: calc(100vh - 84px);
    margin-bottom: 0;
    height: auto;
	overflow: visible !important;
}



/**ORIGEN***/
#amletBookingMask .select, #amletBookingMask select, #editarH .select, #editarH select, #amletBookingMask .selectDest {
    position: relative;
    display: flex
;
    width: 100%;
    border-radius: 15px;
    height: unset;
    padding: 6px 8px 6px 12px;
	padding-left: 12px;
    background: #f3f3f3;
	color: #666666;
	gap:6px;
}
.select::after, select::after, #editarH select::after {
    content: "\25BC";
    position: absolute;
    top: 10px;
    right: 12px;
    padding: 1rem;
    background-color: #fff0;
    transition: 0.25s all ease;
    pointer-events: none;
    color: var(--colorPrimario);
    height: 40px;
    font-size: 12px;
}
/*JUNATR LOS BOTONES*/
#amletBookingMask .select {
    margin-top: -12px;
}
#amletBookingMask .selectDest {
    margin-top: -12px;
}
/*SEPARAR LOS 2 PRIMEROS*/
#sectOptions {
    column-gap: 20px;
    padding-bottom: 9px;
}
.greetings tarde h3{
	display:none;
}
/*2do DROPDOWN*/
#popticketsSelect.active {
    display: grid !important
;
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: start;
    justify-items: center;
    border-radius: 15px;
}

#amletBookingMask .popUpOptions button {
    border: 0;
    border-right: 1px solid #fff;
    color: #666;
    -webkit-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-size: 14px;
    height: 80px;
    background: #fff;
    -radius: 6px;
}



#amletBookingMask .ticketSelect {
    height: 100px;
    /* border-right: 1px solid #e5e5e5; */
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-positive: 1;
    width: 100%;
    border-radius: 12px;
}

#amletBookingMask select :active{
	background: #000000;
}
#amletBookingMask select :focus{
	background: #000000;
}

/*LETRAS DE ORIGEN Y DESTINO */
#amletBookingMask label {
    /* display: none; */
    color: #fff;
    
    font-size: 12px;
    margin-bottom: 0;
    text-transform: uppercase;
    margin-top: 10px;
    text-align: center !important;
}
#selectOpen label {
    margin-top: 0;
    color: #000;
    font-weight: 600;
}

element.style {
}
.elementor *, .elementor :after, .elementor :before {
    box-sizing: border-box;
}
.greetings {
    text-transform: uppercase;
    font-size: 15px;
	display:none;
}
#amletBookingMask #destino {
     border-bottom: none; 
}

#amletBookingMask #rutas.active select {
    font-weight: 600;
    
}
/* Por defecto muestra español */
.dates-es { display: block; }
.dates-en { display: none; }

/* Cuando el idioma es inglés */
.lang-en .dates-es, .en .dates-es { display: none; }
.lang-en .dates-en, .en .dates-en { display: block; }

#horariosWinjet select {
    font-size: 19px;
    border: solid 2px var(--grisBorder);
    border-radius: 12px;
    font-family: 'Source Sans Pro', Helvetica, Arial, Lucida, sans-serif;
    margin: 12px 0 25px 0;
    width: 100%;
	background-color: #f3f3f3;
    color: #000;
}


.bx-viewport {
    -webkit-transform: translatez(0);
    border-radius: 10px;
}

/*horarios*/


#horariosHolder h3, .itemSlider h3 {
    color: var(--colorPrimario);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 1px;
    height: 45px;
    font-family: "Spline Sans", Sans-serif;
    margin-top: 0px;
}
.contMuelle .horas {
    display: flex
;
    flex-direction: column;
    margin-top: -5%;
    margin-bottom: -18px;
    align-items: center;
}

#holderCalendar .bxslider li {
    background: #f1f0f6;
    color: #161921;
    border-radius: 6px;
}
.selectDate {
    color: var(--colorPrimario);
    cursor: pointer;
    transition: all .5s ease;
    border-radius: 4px;
    text-align: center;
    display: flex
;
    flex-direction: column;
    align-items: center;
    color: #161921;
}


@media screen and (max-width: 600px) {
  #horariosHolder h3, .itemSlider h3 {
    font-size: 18px; /* más pequeño en móvil */
    height: auto; /* para que crezca según el contenido */
    margin-bottom: 12px; /* espacio debajo */
    line-height: 1.2; /* mejora separación si son varias líneas */
  }
}
@media screen and (max-width: 600px) {
  #horariosHolder {
    padding: 10px; /* espacio interior general */
  }

 /* #horariosHolder h3 {
    margin-bottom: 12px; /* más separación respecto al siguiente texto */
	/*  margin-top: 5px;
  }
*/
  #horariosHolder p, #horariosHolder span {
    font-size: 16px; /* tamaño legible */
    display: block;
    margin-top: 4px;
  }
}


#horariosHolder {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: scale(1);
  opacity: 1;
}

#horariosHolder.zoom-in {
  transform: scale(1.05);
  opacity: 1;
}





    /* Estilos SOLO para tablets como iPads */

/* === Calendario moderno con redondeado sutil === */
/* === Estilo moderno para daterangepicker  === */

/* Contenedor principal del calendario */
.daterangepicker {
  border: none !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
  width: auto !important;
  min-width: 580px !important;
  max-width: 800px !important;
  background: #ffffff !important;
  overflow: hidden;
  /*font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;*/
  padding: 0 !important;
}

/* Eliminar elementos de flecha */
.daterangepicker:after,
.daterangepicker:before {
  display: none;
}

/* Contenedor de calendarios lado a lado */
.daterangepicker .drp-calendar {
  width: 50% !important;
  padding: 24px 20px !important;
  display: inline-block !important;
  vertical-align: top !important;
  position: relative;
  box-sizing: border-box;
}

.daterangepicker .drp-calendar.left {
  padding-right: 12px !important;
}

.daterangepicker .drp-calendar.right {
  padding-left: 12px !important;
}

/* Separador visual entre calendarios */
.daterangepicker .drp-calendar.right::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #e2e8f0 40%, #e2e8f0 60%, transparent);
}

/* Header del mes */
.daterangepicker th.month {
  font-size: 18px !important;
  font-family: "Spline Sans", Sans-serif;
  font-weight: 500 !important;
  padding: 8px 0 16px 0 !important;
  color: #1e293b !important;
  background: transparent !important;
  border: none !important;
  text-align: center !important;
}

/* Días de la semana */
.daterangepicker thead tr th {
  font-size: 11px !important;
  font-weight: 500 !important;
  color: #64748b !important;
  padding: 8px 4px !important;
  border: none !important;
  background: transparent !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  text-align: center !important;
}

/* Celdas de los días */
.daterangepicker td {
  border: none !important;
  border-radius: 6px !important;
  width: 32px !important;
  height: 32px !important;
  text-align: center !important;
  vertical-align: middle !important;
  padding: 2px !important;
  position: relative;
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #334155 !important;
}

/* Hover en días disponibles */
.daterangepicker td.available:hover {
 
  color: #0f172a !important;
  transform: scale(1.05);
  border-color: transparent !important;
}

/* Días activos (seleccionados) */
.daterangepicker td.active,
.daterangepicker td.active:hover {

  color: #ffffff !important;
  font-weight: 600 !important;
  border-color: transparent !important;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3) !important;
}

/* Fecha de inicio */
.daterangepicker td.start-date {
  background: #f57e1f !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  border-color: transparent !important;
  box-shadow: 0 2px 2px rgba(245, 125, 32) !important;
}

/* Fecha de fin */
.daterangepicker td.end-date {
  background: #003283 !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  border-color: transparent !important;
  box-shadow: 0 2px 2px rgba(3, 48, 125) !important;
}

/* Rango entre fechas */
.daterangepicker td.in-range {
  background-color: #ffe6cc !important;
  border-radius: 6px !important;
 /* color: #1e40af !important;*/
}

/* Días de fin de semana */
.daterangepicker td.weekend {
  border-radius: 6px!important
}

/* Días no disponibles */
.daterangepicker td.off,
.daterangepicker td.disabled {
  color: #cbd5e1 !important;
  cursor: not-allowed !important;
  background-color: transparent !important;
}

/* Día actual */
.daterangepicker td.today {
  position: relative;
}

.daterangepicker td.today::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
 /* background-color: #f59e0b;*/
  border-radius: 50%;
}

/* Botones de navegación del mes */
.daterangepicker .prev,
.daterangepicker .next {
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  color: #64748b !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 14px !important;
}

.daterangepicker .prev:hover,
.daterangepicker .next:hover {
  background: #e2e8f0 !important;
  color: #334155 !important;
  transform: scale(1.05);
}

/* Tabla del calendario */
.daterangepicker table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 1px !important;
  margin: 0 !important;
}

/* Remover padding de tabla */
.daterangepicker .drp-calendar .calendar-table {
  padding: 0 !important;
}

/* Ajustar ancho de columnas */
.daterangepicker .drp-calendar.left .calendar-table {
  padding-right: 0 !important;
}

.daterangepicker .drp-calendar.right .calendar-table {
  padding-left: 0 !important;
}

/* Headers de etiquetas IDA/VUELTA */
.daterangepicker .calendar-header {
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 16px;
}

.daterangepicker .drp-calendar.left .calendar-header {
  color: #059669;
}

.daterangepicker .drp-calendar.right .calendar-header {
  color: #dc2626;
}

/* Responsivo */
@media (max-width: 768px) {
  .daterangepicker {
    min-width: 320px;
    max-width: 95vw;
  }
  
  .daterangepicker .drp-calendar {
    width: 100%;
    display: block;
    padding: 16px !important;
  }
  
  .daterangepicker .drp-calendar.right::before {
    display: none;
  }
  
  .daterangepicker .drp-calendar.right {
    border-top: 1px solid #e2e8f0;
    margin-top: 16px;
    padding-top: 32px !important;
  }
  
  .daterangepicker td {
    width: 36px;
    height: 36px;
  }
}

/* Animaciones suaves */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.daterangepicker {
  animation: slideIn 0.3s ease-out;
}

/* Personalización adicional para el tema oscuro (opcional) */
@media (prefers-color-scheme: dark) {
  .daterangepicker {
    background: #1e293b;
    color: #f1f5f9;
  }
  
  .daterangepicker th.month {
    color: #000000 !important;
  }
  
  .daterangepicker thead tr th {
    color: #94a3b8 !important;
  }
  
  .daterangepicker td span {
    color: #e2e8f0;
  }
  
  .daterangepicker td.available:hover span {
    background-color: #e72816;
    color: #f1f5f9;
  }
  
  .daterangepicker .prev,
  .daterangepicker .next {
    background: #f3f3f3 !important;
    border-color: none!important;
    color: #94a3b8 !important;
  }
}

/* OPCIÓN 1: Prioridad específica para start-date y end-date */
/*.daterangepicker td.start-date,
.daterangepicker td.end-date {
  background-color: inherit !important;
}*/

.daterangepicker td.start-date.in-range {
  background: #f57e1f !important;
}

.daterangepicker td.end-date.in-range {
  background:  #e72816 !important;
}

/* Responsivo */
@media (max-width: 768px) {
  .daterangepicker {
    min-width: 320px !important;
    max-width: 95vw !important;
    width: 100% !important;
   
    flex-direction: column !important;
  }
  
  .daterangepicker .drp-calendar {
    width: 100% !important;
    display: block !important;
    padding: 16px !important;
    max-width: 100% !important;
  }
  
  .daterangepicker .drp-calendar.right::before {
    display: none !important;
  }
  
  .daterangepicker .drp-calendar.right {
    border-top: 1px solid #e2e8f0 !important;
    margin-top: 0 !important;
    padding-top: 16px !important;
    padding-bottom: 24px !important;
  }
  
  .daterangepicker td {
    width: 36px !important;
    height: 36px !important;
  }
  
  .drp-calendar.left {
    padding-bottom: 0 !important;
  }
  
  /* Asegurar que las tablas no excedan el ancho */
  .daterangepicker .calendar-table {
    width: 100% !important;
    margin: 0 auto !important;
  }
}


.daterangepicker td.end-date {
  box-shadow: 0 2px 2px rgba(231, 40, 22) !important; /* Reemplaza el rgba() por el color hexadecimal */
}


.daterangepicker td.end-date {
    background: #e72816 !important;
    
}

@media (max-width: 980px) {
    .daterangepicker.drop-up {
        margin-top: 330px!important;
		left: -8px!important;
		right:0px!important;
        height: 690px!important;
		align-items:center;
    }
}


/* Añade esto al final de tu CSS */
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date,
.daterangepicker td.off.in-range {
  background: var(--selection-color) !important;
  color: white !important;
  pointer-events: auto !important;
}

.daterangepicker td.off.start-date {
  --selection-color: #f57e1f; /* Naranja */
}

.daterangepicker td.off.end-date {
  --selection-color: #e72816; /* Azul */
}
/* Solución para días seleccionados que se vuelven invisibles */
.daterangepicker td.start-date,
.daterangepicker td.end-date {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Forzar visibilidad en días de otros meses seleccionados */
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
  display: table-cell !important;
  background: #f57e1f !important; /* Color start-date */
  color: white !important;
}

.daterangepicker td.off.end-date {
  background:  #e72816 !important; /* Color end-date */
}

/* Reset para días normales no disponibles */
.daterangepicker td.off:not(.start-date):not(.end-date) {
  color: #cbd5e1 !important;
  background: transparent !important;
}

/* Asegurar que los días en rango sean visibles */
.daterangepicker td.in-range {
  opacity: 1 !important;
}