@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
  /* Colors */

  --bs-primary: #238c59;
  --bs-secondary: #0085d1;
  --bs-primary-rgb: 8, 33, 52;
  --bs-secondary-rgb: 28, 153, 232;
  --bs-primary-medium: #84909a;
  --bs-body-color: #212529;


  /* --gris-medio: rgba(0, 0, 0, 0.03); */
  --gris-dark: #333;
  --gris-muted: #999;
  --gris-medium: #dbd2d2;
  --gris-light: #e2e2e2;
  --gris-claro: #fafafa;
  --white: #fff;
  --black: #000;
  --red: #e53040;
  --swiper-theme-color: #cfae8b;
  --swiper-navigation-size: 2.125rem;
  

  /* Borders and shadows*/
  --border-radius: 0;
  --card-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  --card-shadow-hover: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);

  /* Spaces */
  /* --wdtPadding: 1.2em 2em 1em 2em;
  --wdtPadding-2: 0.7rem 1.2rem; */
  --letter-spacing: 1.2px;
  --line-height-btn: 2rem;

  /* Tipography */
  /* Separado title de body por si se quieren usar dos tipografías distintas */
  --title-font: "Montserrat", serif;
  --body-font: "Roboto", serif;
  --text-xs: .6875rem;
  --text-small: 0.875rem;
}
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}
body > form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
}
body > form > #vue {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
body {
  background: var(--white);
  font-family: var(--body-font);
}
a {
  color: var(--bs-secondary);
  text-decoration: none;
}
a:hover {
  color: var(--bs-primary);
}
.no-accent-link {
  color: var(--bs-body-color);
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  font-family: var(--title-font);  
  text-wrap: balance;
}
.h5 {
  line-height: 1.8rem;
}
/* Decoración titulares */
.title::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 1.875rem;
  width: 5.625rem;
  height: 0.1875rem;
  background-color: var(--bs-secondary);
  -webkit-transform: translate(-50%, 50px);
  -moz-transform: translate(-50%, 50px);
  -ms-transform: translate(-50%, 50px);
  -o-transform: translate(-50%, 50px);
  transform: translate(-50%, 50px);
}
/* Cuando el titular es a la izquierda */
.title-left::after {
  position: absolute;
  content: "";
  left: 2.875rem;
  bottom: 1.875rem;
  width: 5.625rem;
  height: 0.1875rem;
  background-color: var(--bs-secondary);
  -webkit-transform: translate(-50%, 50px);
  -moz-transform: translate(-50%, 50px);
  -ms-transform: translate(-50%, 50px);
  -o-transform: translate(-50%, 50px);
  transform: translate(-50%, 50px);
}
.hight-text {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}
.pt-60 {
  padding-top: 30px !important;
}
.pb-60 {
  padding-bottom: 30px !important;
}
.py-60 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
.p-100 {
  padding: 30px;
}
.py-100 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}
.pb-100 {
  padding-bottom: 50px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-30 {
  margin-bottom: 15px !important;
}
.mb-40 {
  margin-bottom: 20px !important;
}
.mt-40 {
  margin-top: 20px !important;
}
.pt-40 {
  padding-top: 20px !important;
}

/* Background colors */
.bg-corporativo-1 {
  background-color: var(--bs-primary);
}
.bg-corporativo-1-medium {
  background-color: var(--bs-primary-medium);
}
.bg-corporativo-2 {
  background-color: var(--bs-secondary);
}
.bg-gris-claro {
  background-color: var(--gris-claro);
}

/* Buttons */
.btn {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing);
  line-height: var(--line-height-btn);
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.btn-1 {
  color: var(--white) !important;
  background-color: var(--bs-primary);
  border: 1px solid var(--bs-primary);
}
.btn-1:hover {
  background-color: var(--bs-secondary);
  border: 1px solid var(--bs-secondary);
}
.btn-2 {
  color: var(--white) !important;
  background-color: var(--bs-secondary);
  border: 1px solid var(--bs-secondary);
}
.btn-2:hover {
  background-color: var(--bs-primary);
  border: 1px solid var(--bs-primary-medium);

}
.general-section {
  padding: 3.5rem 1rem;
}
.sub-section {
  padding: 1.875rem 0;
}
.container-900 {
  max-width: 56.25rem;
  margin: 0 auto;
}

/* Navbar */
header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1040;
  transition: 0.75s ease;
}
.degradado {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
header.sticky {
  -webkit-box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 2px -2px rgb(0 0 0 / 10%);
  background-color: var(--white);
  padding-bottom: 0;
}
header.bg-white {
  box-shadow: 0 4px 2px -2px rgb(0 0 0 / 10%);
}
header #logo .logo_normal {
  display: block;
}
header #logo .logo_sticky,
header.sticky #logo .logo_normal,
header.bg-white #logo .logo_normal {
  display: none;
}
header.sticky #logo .logo_sticky,
header.bg-white #logo .logo_sticky {
  display: block;
}
.navbar-dark .navbar-nav .nav-link {
  color: var(--white);
  font-size: 0.875rem;
}
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--bs-secondary);
}

.navbar-dark .navbar-nav .nav-link.active {
  color: var(--bs-secondary) !important;
  width: fit-content;
}

.navbar-nav .nav-link.active:after {
  content: " ";
  background-color: var(--bs-secondary);
  display: block;
  height: 2px;
  width: 100%;
}
header.sticky .navbar-dark .navbar-nav .nav-link,
header.bg-white .navbar-dark .navbar-nav .nav-link {
  color: var(--bs-body-color);
}
header.sticky .navbar-dark .navbar-nav .nav-link:hover,
header.bg-white .navbar-dark .navbar-nav .nav-link:hover {
  color: var(--bs-secondary);
}
header .navbar-dark .navbar-toggler {
  border-color: transparent;
}
header.sticky .navbar-dark .navbar-toggler,
header.bg-white .navbar-dark .navbar-toggler {
  color: var(--bs-primary);
  border-color: transparent;
}
header .navbar-dark .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
header.sticky .navbar-dark .navbar-toggler .navbar-toggler-icon,
header.bg-white .navbar-dark .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* CARDS */
.general-card {
  box-shadow: var(--card-shadow);
  -o-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
}
.general-card:hover {
  -webkit-box-shadow: var(--card-shadow-hover);
  -moz-box-shadow: var(--card-shadow-hover);
  box-shadow: var(--card-shadow-hover);
}
.general-card-img {
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.allotjament-img {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  position: relative;
  text-decoration: none;
}
.card-img-top {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 18.75rem;
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
}
.general-card .glow-wrap {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  margin-top: -10px;
}
.general-card .glow {
  display: block;
  position: absolute;
  width: 40%;
  height: 300%;
  background: rgba(255, 255, 255, 0.2);
  top: -18.75rem;
  filter: blur(5px);
  transform: rotate(45deg) translate(-450%, 0);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.general-card:hover .glow {
  transform: rotate(45deg) translate(450%, 0);
  transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.general-card:hover img,
.general-card:hover .glow-wrap {
  margin-top: 0;
}
.ubicacion {
  font-size: var(--text-small);
  line-height: 1.2;
  color: var(--gris-muted);
  margin: 15px 0;
}
.cuerpo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.caracteristicas {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--bs-secondary);
  justify-content: space-between;
  align-items: flex-end;
  font-weight: 500;
  font-size: 18px;
}
/* Con background */
.precio-dark {
  text-align: right;
  color: var(--white);
}
/* Sin background */
.precio-light {
  color: var(--bs-primary) !important;
  text-align: right;
}

/* En funció de si la card es horizontal o vertical s'utilitza un o l'altre */
/* Con background */
.concepto-dark {
  font-size: var(--text-small);
  color: var(--white);
  font-weight: 400;
  text-transform: lowercase;
}
/* Sin background */
.concepto-light {
  font-size: var(--text-small);
  color: var(--bs-primary);
  font-weight: 400;
  text-transform: lowercase;
}
.pie {
  position: absolute;
  padding: 05px 10px;
  top: -20px;
  right: 0;
  background: var(--bs-secondary);
  width: fit-content;
  height: fit-content;
  -webkit-border-radius: var(--border-radius) 0 0 var(--border-radius);
  -moz-border-radius: var(--border-radius) 0 0 var(--border-radius);
  -ms-border-radius: var(--border-radius) 0 0 var(--border-radius);
  -o-border-radius: var(--border-radius) 0 0 var(--border-radius);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

/* Horizontal accommodation card */
.horizontal-card-pie {
  border-radius: var(--border-radius);
  background: var(--bs-secondary);
  display: flex;
  padding: 5px 20px;
  color: var(--white);
}

/* PÀGINES INTERNES */
/* Hero */

.cap-imatge {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 250px;
}
.cap-frase {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.cap-frase h1 {
  max-width: 800px;
  padding: 0 15px;
}
.cap-frase,
.cap-frase h1 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: var(--white);
  margin-bottom: 0;
}

/* Services */
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: var(--gris-claro);
  border-bottom: 0;
}
/* HOME */

/* Carrusel */
.swiper-carrusel .swiper-slide::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
}
.swiper-carrusel .swiper-button-next,
.swiper-carrusel .swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 23px;
  color: var(--bs-primary) !important;
}
.portada-frase {
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50% -50%);
  transform: translate(-50%, -50%);
}
.portada-frase .titular-slide {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: var(--white);
}
.portada-frase p {
  color: var(--white);
}

/* Buscador */
.contenidor-carrusel-cercador {
  position: relative;
}
.portada-cercador {
  background-color: rgba(255, 255, 255, 0.3);
}
/* Texto introductorio */
.intro-img {
  margin-left: 3rem;
}

/* Apartamentos destacados */
.apartamentos-destacados > .general-card {
  height: 23.75rem;
}

.swiper-apartamentos-destacados {
  padding-left: 2.8125rem;
  padding-right: 2.8125rem;
}
.swiper-apartamentos-destacados .swiper-slide a {
  text-decoration: none;
}
.swiper-apartamentos-destacados .swiper-wrapper,
.swiper-apartamentos-destacados .swiper-slide {
  height: initial;
}
.swiper-apartamentos-destacados .swiper-slide {
  background-color: var(--white);
}
.swiper-apartamentos-destacados .swiper-slide img {
  width: 100%;
  height: 11.5625rem;
  object-fit: cover;
}

/* Bottom banner */
.banner-home {
  background-color: #2b2b2b;
}
.banner-home-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 250px;
}
.banner-home-texto .titulo {
  color: var(--white);
  font-size: 1.875rem;
  margin-bottom: 1.875rem;
}

/* Partners */
.partners ul {
  flex-wrap: wrap;
  flex-direction: column;
}
.partners ul li img {
  height: 50px;
}

/* Newsletter */
#newsletterModal .modal-header {
  border-bottom-color: transparent !important;
}
#newsletterModal .modal-body {
  padding: 0 2rem 2rem 2rem !important;
  color: var(--bs-primary);
}
.newsletter h2 {
  margin-bottom: 1rem;
  text-align: center;
}
.newsletter #ctl00_subtitleNewsLetter {
  margin-bottom: 2.5rem;
  text-align: center;
}
.newsletter .row-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 660px;
  margin: auto;
}
#ctl00_emailNewsLetter {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  transition: 150ms;
}
#ctl00_emailNewsLetter:active,
#ctl00_emailNewsLetter:focus {
  box-shadow: none;
}
#ctl00_Suscribirme {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.newsletter .group-check-policy {
  max-width: 660px;
  margin: 1rem auto;
}
.newsletter .group-check-policy input {
  margin-right: 5px;
}
.newsletter #ctl00_emailNewsLetter.invalid-input {
  border-color: var(--red);
}
.newsletter .group-check-policy label {
  border-bottom: 1px solid transparent;
  transition: 150ms;
}
.newsletter .invalid-input-checkbox label {
  color: var(--red);
  border-bottom-color: var(--red);
}
#newsletterModalFeedback .modal-header,
#newsletterModalFeedback .modal-footer {
  border-color: transparent !important;
}
#ctl00_modalWelcomeImg {
  margin-top: 1rem;
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
}
#ctl00_visibleNewsLetter {
  color: var(--white);
  background-color: var(--bs-secondary) !important;
}

/* Footer */
footer {
  background-color: #2b2b2b;
  padding-top: 50px;
  color: var(--white);
}
footer a {
  color: var(--white);
  transition: all 0.2s;
}
footer a:hover {
  color: rgba(255, 255, 255, .85)
}
footer .copyright {
  color: var(--white);
  font-size: var(--text-small);
}
footer .enlaces {
  display: inline;
  font-size: var(--text-small);
  font-weight: 700;
}
.logo-footer {
  height: 83px;
}
/* Breadcrumb */
.breadcrumbs {
  background-color: var(--gris-dark);
  padding: 10px 0;
  font-size: 12px;
}
.breadcrumbs ul {
  margin: 0;
  padding: 0;
  color: var(--gris-muted);
}
.breadcrumbs ul li:first-child {
  padding-left: 20px;
}
.breadcrumbs ul li:first-child::before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f015";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--white);
}
.breadcrumbs ul li a {
  color: var(--white);
  opacity: 0.7;
}
.breadcrumbs ul li a:hover {
  color: var(--white);
  opacity: 1;
}
.breadcrumbs ul li {
  display: inline-block;
  padding-right: 8px;
  margin-right: 3px;
  position: relative;
}
.breadcrumbs ul li:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f105";
  position: absolute;
  right: 0;
  top: 2px;
}
.breadcrumbs ul li:last-child:after {
  content: "";
}

/* Listados */

.listado .precio-mes::after,
.grid-vista .precio-mes::after,
.list-vista .precio-mes::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "|";
  font-weight: 300;
  font-size: 12px;
  display: inline;
  color: var(--gris-muted);
}
.listado .estrellas {
  margin-left: 20px;
}
.listado .estrellas ul li {
  margin-left: 4px;
  margin-right: 0 !important;
}
.listado .estrellas i {
  color: var(--bs-secondary);
}
.listado .estrellas ul li:first-child {
  margin-left: 0;
}

.alert-stay {
  margin: 5px 0;
}
[v-cloak] {
  display: none;
}
.fas.fa-heart {
  color: var(--gris-muted);
}
.fas.fa-heart:hover,
.fas.fa-heart.red {
  color: var(--red);
}
.fa-heart {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 999;
  font-size: 24px;
}
.fa-heart-grid {
  top: 2rem;
  left: 2rem;
}

/* Ficha alojamiento */
.social-network {
  padding-left: 0;
}
.social-network li svg {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  color: var(--corporativo-1);
}
.equipamiento ul {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  margin-bottom: 0;
}

.text-small {
  font-size: var(--text-small);
  line-height: 1.8;
  color: var(--bs-body-color);
}
.equipamiento ul li i,
.restricciones ul li i.fa-check {
  color: var(--bs-secondary);
}
.equipamiento ul.restriccions li i,
.restricciones ul li i.fa-times {
  color: var(--red);
}
.caracteristicas-ficha {
  margin-top: 0;
}
.distribucion .texto,
.normas .texto {
  font-size: var(--text-small);
  line-height: 1.8;
  color: var(--bs-body-color);
}

.owl-prev,
.owl-next {
  position: absolute;
  top: 50%;
  color: var(--white) !important;
  transform: translate(0, -50%);
  font-size: 70px !important;
}

.owl-prev:hover,
.owl-next:hover {
  color: #eee !important;
  background: transparent !important;
}

.owl-prev:focus,
.owl-next:focus {
  outline: 0;
}

.owl-prev {
  left: 2%;
}

.owl-next {
  right: 2%;
}
.swiper-container,
.swiper-slide img {
  width: 100%;
}

.swiper-carrusel {
  width: 100%;
  height: 40vh;
}
.swiper-title {
  letter-spacing: var(--letter-spacing);
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffb431'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffb431'%2F%3E%3C%2Fsvg%3E");
}

.leyenda-calendarios {
  padding: 1em 0;
}
.leyenda-calendarios ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.leyenda-calendarios ul li {
  float: left;
  margin-right: 10px;
}
.leyenda-calendarios span {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--gris-muted);
  padding: 4px;
}
.leyenda-calendarios span.diesEscollits {
  color: var(--white);
  background-color: var(--bs-secondary);
}
.leyenda-calendarios span.diesDisponibles {
  color: var(--black);
}
.leyenda-calendarios span.diesNoDisponibles {
  color: var(--gris-muted);
  text-decoration: line-through;
  background-color: var(--gris-light);
}
.bg-white {
  background: var(--white);
}
.form_title {
  margin-bottom: 10px;
}
.form_title h3 {
  margin: 0;
  padding: 0;
}
.form_title p {
  color: var(--gris-muted);
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: var(--text-small);
}

.self-building-square-spinner,
.self-building-square-spinner * {
  box-sizing: border-box;
}
.self-building-square-spinner {
  height: 40px;
  width: 40px;
  top: calc(-10px * 2 / 3);
  margin: auto;
}
.self-building-square-spinner .square {
  height: 10px;
  width: 10px;
  top: calc(-10px * 2 / 3);
  margin-right: calc(10px / 3);
  margin-top: calc(10px / 3);
  background: var(--gris-muted);
  float: left;
  position: relative;
  opacity: 0;
  animation: self-building-square-spinner 6s infinite;
}
.self-building-square-spinner .square:nth-child(1) {
  animation-delay: calc(300ms * 6);
}
.self-building-square-spinner .square:nth-child(2) {
  animation-delay: calc(300ms * 7);
}
.self-building-square-spinner .square:nth-child(3) {
  animation-delay: calc(300ms * 8);
}
.self-building-square-spinner .square:nth-child(4) {
  animation-delay: calc(300ms * 3);
}
.self-building-square-spinner .square:nth-child(5) {
  animation-delay: calc(300ms * 4);
}
.self-building-square-spinner .square:nth-child(6) {
  animation-delay: calc(300ms * 5);
}
.self-building-square-spinner .square:nth-child(7) {
  animation-delay: calc(300ms * 0);
}
.self-building-square-spinner .square:nth-child(8) {
  animation-delay: calc(300ms * 1);
}
.self-building-square-spinner .square:nth-child(9) {
  animation-delay: calc(300ms * 2);
}
.self-building-square-spinner .clear {
  clear: both;
}
@keyframes self-building-square-spinner {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
    top: 0;
  }
  50.9% {
    opacity: 1;
    top: 0;
  }
  55.9% {
    opacity: 0;
    top: inherit;
  }
}

.loader {
  width: 48px;
  height: 48px;
  display: block;
  margin: 15px auto;
  position: relative;
  color: var(--white);
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader::after,
.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 50%;
  transform: scale(0.5) translate(0, 0);
  background-color: var(--bs-primary);
  border-radius: 50%;
  animation: animloader 1s infinite ease-in-out;
}
.loader::before {
  background-color: var(--bs-secondary);
  transform: scale(0.5) translate(-48px, -48px);
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animloader {
  50% {
    transform: scale(1) translate(-50%, -50%);
  }
}

.portada-cercador label {
  font-size: var(--text-small);
  color: var(--white);
}
.buscador-label {
  text-transform: uppercase;
}
.fa-magnifying-glass:before,
.fa-search:before {
  content: "\f002";
  font-weight: 500;
  font-size: 1rem;
}
input.llegada,
input.salida {
  background: var(--white) url(../img/icono-calendario.svg) right 0.75rem center
    no-repeat;
  background-size: 24px 24px;
}
input.llegada:hover,
input.salida:hover {
  background: var(--white) url(../img/icono-calendario2.svg) right 0.75rem
    center no-repeat;
  background-size: 24px 24px;
  border: 1px solid var(--bs-primary);
}
.portada-cercador input.llegada,
.portada-cercador input.salida {
  background: rgba(255, 255, 255, .85) url(../img/icono-calendario.svg) right 0.75rem center
    no-repeat;
  background-size: 24px 24px;
}
.portada-cercador input.llegada:hover,
.portada-cercador input.salida:hover {
  background: var(--white) url(../img/icono-calendario2.svg) right 0.75rem
    center no-repeat;
  background-size: 24px 24px;
  border: 1px solid var(--bs-secondary);
  color: var(--black);
}
.portada-cercador .form-control {
  color: #999;
}
.form-control {
  font-size: 0.875rem;
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.7rem 1rem;
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
}
.form-select {
  font-size: 0.875rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  border-radius: var(--border-radius);
}
.form-label {
  text-transform: uppercase;
  font-size: var(--text-xs);
}
select option {
  color: #171a0f;
}

.portada-cercador select.huespedes {
  background: rgba(255, 255, 255, .85) url(../img/icono-personas.svg) right 0.75rem center
    no-repeat;
  background-size: 24px 24px;
  cursor: pointer;
  color: #999;
}
.portada-cercador select.huespedes:hover {
  background: var(--white) url(../img/icono-personas2.svg) right 0.75rem center
    no-repeat;
  background-size: 24px 24px;
  border: 1px solid var(--bs-secondary);
  color: var(--black);
}
select.huespedes {
  background: rgba(255, 255, 255, .85) url(../img/icono-personas.svg) right 0.75rem center
    no-repeat;
  background-size: 24px 24px;
  cursor: pointer;
}
select.huespedes:hover {
  background: var(--white) url(../img/icono-personas2.svg) right 0.75rem center
    no-repeat;
  background-size: 24px 24px;
  border: 1px solid var(--bs-primary);
}
.portada-cercador select.destino {
  background: rgba(255, 255, 255, .85) url(../img/icono-destino.svg) right 0.75rem center
    no-repeat;
  background-size: 24px 24px;
  cursor: pointer;
  color: #999;
}
.portada-cercador select.destino:hover {
  background: var(--white) url(../img/icono-destino2.svg) right 0.75rem center
    no-repeat;
  background-size: 24px 24px;
  border: 1px solid var(--bs-secondary);
  color: var(--black);
}
select.destino {
  background: var(--white) url(../img/icono-destino.svg) right 0.75rem center
    no-repeat;
  background-size: 24px 24px;
  cursor: pointer;
}
select.destino:hover {
  background: var(--white) url(../img/icono-destino2.svg) right 0.75rem center
    no-repeat;
  background-size: 24px 24px;
  border: 1px solid var(--bs-primary);
}
.contenedor-cabecera-listado {
  padding: 0.75rem 1.25rem;
  margin-top: 1rem;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  background-color: var(--bs-secondary);
}
.contenedor-cabecera-listado .nav-pills .nav-link.active {
  background-color: transparent;
  color: var(--gris-dark);
}
.contenedor-cabecera-listado .nav-pills .nav-link {
  padding: 0;
  color: var(--bs-secondary);
  cursor: pointer;
}
.ficha #map {
  width: 100%;
  height: 250px;
}
.container-description {
    position: relative;
    max-height: 300px;
    overflow: hidden;
    transition: 250ms;
}

.white-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 100%);
    transition: 250ms;
    opacity: 1;
}

/* Calendar */
.table.calendarios-ficha thead th,
.table.calendarios-ficha th,
.table.calendarios-ficha td {
  border: none;
  text-align: center;
}
.table.calendarios-ficha tbody th {
  font-size: var(--text-small);
  font-weight: 400;
}
.table.calendarios-ficha td.dia-libre {
  border: 1px solid var(--gris-light);
  color: var(--gris-muted);
}

.table.calendarios-ficha td.dia-ocupado {
  background-color: var(--gris-light);
  text-decoration: line-through;
  color: var(--gris-muted);
}

.table.calendarios-ficha td.dia-seleccionado {
  background-color: var(--bs-primary);
  color: var(--white);
}
.swiper-disponibilidad .swiper-button-next.swiper-button-black,
.swiper-disponibilidad .swiper-button-prev.swiper-button-black {
  top: 6%;
  border: 1px var(--gris-claro) solid;
  width: 49px;
  height: 49px;
  background-color: var(--white);
  background-size: 20px 20px;
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
  --border-radius: var(--border-radius);
  border-radius: var(--border-radius);
}

.swiper-disponibilidad .swiper-button-prev.swiper-button-black {
  left: 0;
}

.swiper-disponibilidad .swiper-button-next.swiper-button-black {
  right: 0;
}
.ficha .table.calendarios-ficha {
  border-collapse: initial;
}

.table.calendarios-ficha td {
  padding: 6px;
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
}
.leyenda-calendarios {
  display: flex;
  align-items: center;
}

.leyenda-calendarios .no-disponible,
.leyenda-calendarios .disponible,
.leyenda-calendarios .fecha-seleccionada {
  display: flex;
  align-items: center;
  color: var(--gris-muted);
  margin-right: 30px;
  margin-bottom: 5px;
}

.leyenda-calendarios .cuadrado {
  display: inline-block;
  width: 39px;
  height: 39px;
  margin-right: 15px;
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
}

.leyenda-calendarios .no-disponible .cuadrado {
  background-color: var(--gris-light);
}

.leyenda-calendarios .disponible .cuadrado {
  border: 1px solid var(--gris-light);
}

.leyenda-calendarios .fecha-seleccionada .cuadrado {
  background-color: var(--bs-primary);
}

.ordenar {
  cursor: pointer;
}

.text-cabecera-listado {
  font-size: 0.813rem;
  color: var(--gris-dark);
  padding-right: 5px;
}

.ordenar .fletxes {
  position: relative;
  width: 10px;
  height: 16px;
  display: inline-block;
}

.ordenar .fletxes .fas,
.ordenar .fletxes .fal {
  position: absolute;
  left: 0;
  color: var(--tercer);
}

.estrellas div ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
}

.map-img {
  max-width: 100%;
}
.whatsapp-widget {
  position: fixed;
  bottom: 10px;
  right: 10px;
}

/* Propietarios*/
.como-funciona .contenedor {
  width: 100%;
  max-width: 1390px;
  margin-left: auto;
  margin-right: auto;
}
.como-funciona .tarjeta {
  background-color: var(--gris-claro);
  overflow: hidden;
}
.swiper-como-funciona {
  padding-left: 45px;
  padding-right: 45px;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
  color: var(--bs-secondary);
}
.swiper-como-funciona .swiper-slide {
  height: auto;
}
.swiper-como-funciona .swiper-slide .imagen {
  text-align: center;
}
.swiper-como-funciona .swiper-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.swiper-como-funciona .swiper-slide .tarjeta-cuerpo {
  padding: 15px;
}
section > .preguntas-frecuentes {
  max-width: 800px;
  margin: 0 auto;
}
.preguntas-frecuentes > .container,
.contactenos > .container {
  max-width: 800px;
  margin: 0 auto;
}
.preguntas-frecuentes .accordion-button:not(.collapsed) {
  background-color: transparent;
}
.preguntas-frecuentes .accordion-button:focus {
  box-shadow: none;
}
.accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
}
.accordion-button:not(.collapsed)::after {
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231c99e8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-flush .accordion-item .accordion-button {
  font-weight: 700;
}
.btn-white {
  color: var(--bs-primary);
  background-color: #fff;
  border-color: var(--bs-primary);
}
.btn-white:hover {
  color: #fff;
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.btn-white:focus {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}
.btn-link {
  color: var(--bs-primary);
}
.btn-link:hover {
  color: var(--bs-secondary);
  text-decoration: none;
}
.nuestro-equipo .foto {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  overflow: hidden;
}
.nuestro-equipo .foto img {
  border-radius: 50%;
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.nuestro-equipo .nombre {
  font-size: 20px;
}
.nuestro-equipo .texto {
  width: 75%;
  margin: 0 auto;
}

.gero ul li {
  margin-bottom: 15px;
}
.gero.check ul {
  list-style: none;
  padding-left: 0;
}

.gero.check ul li {
  background: url(../img/check-solid.svg) left 8px no-repeat;
  padding-left: 30px;
  font-size: 1rem;
  line-height: 2rem;
  margin-bottom: 15px;
}

/* Error 404 */
.pagina-error-404 {
  width: 100%;
}
.pagina-error-404 #vue {
  margin-top: 67px;
}
.pagina-error-404 .h1-error {
  font-size: 38px;
  color: var(--black);
}
.pagina-error-404 .background-404 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 80px 0;
  height: 100%;
}
.pagina-error-404 .gero h2,
.pagina-error-404 .gero p {
  color: var(--black) !important;
}
.pagina-error-404 .gero h2 {
  margin-top: 20px;
  font-size: 20px;
}
.pagina-error-404 .gero p {
  line-height: 1.1;
  max-width: 500px;
}
.pagina-error-404 .boton {
  margin-top: 40px;
}

.gero,
.gero p,
.gero span {
  font-family: var(--body-font) !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  color: var(--bs-body-color) !important;
}
.gero table {
  width: 100%;
  margin-bottom: 10px;
  font-size: 13px;
}
.gero table td,
.gero table th,
table td,
table th {
  padding: 10px;
}
.gero table tr:nth-child(even) {
  background: var(--gris-claro);
  background: rgba(0, 0, 0, 0.03);
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--bs-secondary);
}
.form-control:focus,
.form-select:focus {
  border-color: #86b7fe;
  box-shadow: none;
}

/* Blog */
.blog .nav-link.active h2 {
  color: #fff;
}
.blog-listado img {
  width: 100%;
  height: 205px;
  object-fit: cover;
}
.blog-listado a {
  transition: all 0.2s;
  text-decoration: none;
}
.blog-listado a:hover {
  text-decoration: none;
}
.blog-listado .card-text {
  color: var(--bs-body-color);
  margin-bottom: 1rem;
}
.blog-listado .card-text div:not(:first-child),
.blog-listado .card-text p:not(:first-child) {
  display: none;
}
.blog-listado .card-text > div:nth-child(1),
.blog-listado .card-text > p:nth-child(1) {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-listado .card-text {
  color: var(--bs-body-color);
}
.blog-listado .card-text p,
.blog-listado .card-text div {
  margin-bottom: 1rem;
}
.blog-listado .card-link {
  font-size: var(--text-small);
  font-weight: 700;
}
.texto-intro {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  font-size: 18px;
  text-align: center;
}
.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

    .categories span {
        display: inline-block;
        padding: 0.15rem 0.5rem;
        margin: 0.15rem 0.25rem;
        color: var(--bs-secondary);
        font-size: var(--text-small);
        background-color: var(--bs-secondary_claro);
        border: 1px solid var(--bs-secondary);
        cursor: pointer;
    }

        .categories span.selected {
            background-color: var(--bs-secondary);
            color: var(--white);
        }

/* Form-Check */

.form-check input[type="checkbox"] {
  float: left;
  margin-left: -1.5em;
}

.form-check input[type="checkbox"] {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: var(--white);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}
.form-check input[type="checkbox"] {
  border-radius: 0.25em;
}
.form-check input[type="checkbox"]:active {
  filter: brightness(90%);
}
.form-check input[type="checkbox"]:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(207, 174, 139, 0.25);
}
.form-check input[type="checkbox"]:checked {
  background-color: var(--bs-secondary);
  border-color: var(--bs-secondary);
}
.form-check input[type="checkbox"]:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check input[type="checkbox"]:checked[type="radio"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check input[type="checkbox"][type="checkbox"]:indeterminate {
  background-color: var(--bs-secondary);
  border-color: var(--bs-secondary);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check input[type="checkbox"]:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check input[type="checkbox"][disabled] ~ .form-check-label,
.form-check input[type="checkbox"]:disabled ~ .form-check-label {
  opacity: 0.5;
}

.footer-adress,
.footer-phones {
  position: relative;
  padding: 0px 0px 0px 22px;
}
.footer-adress i,
.footer-phones i {
  position: absolute;
  left: 0;
  top: 8px;
}
.footer-adress,
.footer-phones {
  line-height: 2;
}
.search-sticky-top {
  top: 55px;
  box-shadow: 0 4px 2px -2px rgb(0 0 0 / 10%);
}
button:focus {
  outline: 0;
}
.idiomas a {
  font-size: var(--text-small);
}
.buscador-disponibilidad .form-control:disabled,
.buscador-disponibilidad .form-control[readonly],
.buscador-listado .form-control:disabled,
.buscador-listado .form-control[readonly] {
  background-color: var(--white);
}
.navbar-brand.logo_normal img {
  height: 30px;
}
.navbar-brand.logo_sticky img {
  height: 50px;
}

.dropdown-item {
  font-size: var(--text-small);
}
.whatsapp-widget-text {
  display: none !important;
}
.propietarios .formulario-contacto > h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}
.propietarios aside .card {
  border: 0;
}
.propietarios aside .card a {
  color: var(--bs-body-color);
}
.propietarios aside .card a:hover {
  text-decoration: none;
}
.faqs > .container {
  max-width: 800px;
  margin: 0 auto;
}
.accordion {
  --bs-accordion-active-color: var(--bs-secondary);
  --bs-accordion-active-bg: var(--gris-claro);
  --bs-accordion-btn-focus-border-color: var(--bs-secondary);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(255, 185, 1, 0.25);
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffb901'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-flush .accordion-item .accordion-button {
  font-weight: 700;
}
.btn.nueva-busqueda {
  font-size: 0.875rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  line-height: 1.7;
}
.form-control:disabled,
.form-control[readonly] {
  background-color: var(--white);
}
.pagina .foto img {
  width: 100%;
  object-fit: cover;
}

/* Noticies Blog */
.noticias .card-img-top {
  height: 230px;
  object-fit: cover;
}

.noticias a {
  color: var(--bs-body-color);
  text-decoration: none;
}

.noticias a:hover {
  text-decoration: none;
}
.noticias .dia {
  font-size: 20px;
}

.noticias .mes {
  font-size: 12px;
  text-transform: uppercase;
}

.noticias .any {
  font-size: 12px;
  text-transform: uppercase;
  margin-left: 2px;
}

.noticias article {
  margin-bottom: 30px;
}

.noticias .card-text > div:nth-child(1),
.noticias .card-text > p:nth-child(1) {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ver-mas {
  font-weight: 500;
  text-decoration: none;
  color: var(--bs-secondary);
  transition: color 0.15s;
}

a:hover .ver-mas {
  color: var(--bs-primary);
}

/* Testimonios */
.contenedor-con-sombra {
    padding: 2rem 1rem;
    box-shadow: 0rem .125rem .5rem rgba(0,0,0,.1) !important;
    border-radius: 1rem;
}

@media (min-width: 768px) {
    .contenedor-con-sombra {
        padding: 3rem;
    }
}

.testimonios h2 {
    margin-bottom: 1.5rem;
}

.testimonios .texto span {
    font-family: 'Raleway', sans-serif !important;
    font-size: 1rem !important;
    text-align: center !important;
    white-space: unset !important;
    text-decoration-color: unset !important;
}

.swiper-testimonios {
    padding-left: 3rem;
    padding-right: 3rem;
}

    .swiper-testimonios > .swiper-wrapper {
        margin-bottom: 3rem;
    }

.testimonios .estrellas {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: nowrap;
}

.testimonios .estrellas i {
  color: var(--bs-secondary);
  font-size: var(--text-small);
}

.testimonios .concepto {
  line-height: 2;
}
.opiniones {
  font-size: 20px;
  font-weight: 700;
  color: var(--primario);
}
.testimonios .nota-review {
  font-size: 20px;
  font-weight: 700;
  color: var(--bs-secondary);
}
.testimonios .nombre {
  font-weight: 700;
  margin-bottom: 15px;
}
.testimonio .rating {
  font-size: 20px;
  font-weight: 700;
  color: var(--bs-secondary);
  margin-bottom: 15px;
}
.swiper-carrusel .swiper-button-next,
.swiper-carrusel .swiper-button-prev {
  color: var(--white);
}
.swiper-apartamentos-destacados .swiper-button-next,
.swiper-apartamentos-destacados .swiper-button-prev {
  color: var(--bs-secondary);
}
.swiper-disponibilidad .swiper-button-next,
.swiper-disponibilidad .swiper-button-prev {
  color: var(--bs-secondary);
}
.swiper-disponibilidad .swiper-button-next,
.swiper-disponibilidad .swiper-button-prev {
  width: calc(var(--swiper-navigation-size) / 34 * 27);
  top: 25px;
}
.swiper-testimonios .swiper-button-next,
.swiper-testimonios .swiper-button-prev {
    background-size: 10px 27px;
    border-radius: 50rem;
    display: block;
    width: 2rem;
    height: 2rem;
    color: #fff;
    background-color: rgba(7, 45, 66, .3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-testimonios .swiper-button-next:after, 
.swiper-testimonios .swiper-button-prev:after {
    font-size: 1rem;
}
.alert-stay {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--red) !important;
}
.tarifas .precio {
  font-weight: 700;
}
.tarifas .nombre {
  font-size: 0.875rem;
}

/* Reserva iframe */
.reserva_iframe {
  width: 100%;
  height: 1950px;
}

.nav-unshown {
  display: none;
}

#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  opacity: 0;
  transition: 0.3s ease-in-out;
}

#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 90%;
  max-width: 20.625rem;
  height: 100%;
  background: var(--white);
  transition: 0.3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

#nav-input:checked ~ #nav-close {
  display: block;
  opacity: 0.5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  box-shadow: 5px 0 5px -2px #f1f1f1;
}
#nav-content .cerrar-filtros {
  position: absolute;
  right: 25px;
}
#leaflet-map {
  width: 100%;
  height: calc(100vh - 66px);
  margin: 0 auto;
}

.col-mapa > .sticky-top {
  top: 66px;
}
.leaflet-popup-close-button {
  display: none !important;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-content {
  border-radius: 0 !important;
  margin: auto !important;
}

.leaflet-popup-content-wrapper {
  text-align: center !important;
}
.leaflet-popup-content p {
  margin: 10px 0;
}
.info-window .map-img {
  height: 225px;
  object-fit: cover;
}
.info-window h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.info-window {
  font-family: var(--body-font);
}
.info-window .title {
  font-size: inherit;
  line-height: inherit;
  color: var(--bs-primary);
  text-decoration: none;
}
.info-window .map-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bs-primary);
  margin-bottom: 10px;
}

.filtros .titulo-bloque.numero-alojamientos {
  font-weight: 700;
}
.filtros .titulo-bloque {
  font-weight: 600;
}
.filtros label {
  font-size: var(--text-small);
}
.alert-danger {
  text-align: center;
  --bs-alert-color: var(--red);
  --bs-alert-bg: transparent;
  --bs-alert-border-color: none;
}

/* Move reCAPTCHA v3 badge to the left */
.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  left: 0px !important;
}

.grecaptcha-badge:hover {
  width: 256px !important;
}
.leaflet-container a.btn {
  color: var(--white) !important;
  line-height: 1;
}
.info-window .caracteristicas {
  font-size: var(--text-small);
}
/* ------------------
* Css Datepicker *
------------------ */

.ui-widget-content {
  border: 1px solid #ddd;
  background: var(--white);
  color: var(--gris-dark);
}
.ui-widget {
  font-family: var(--body-font);
  font-size: 1em;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}
.ui-helper-clearfix:after {
  clear: both;
}
.ui-widget.ui-widget-content {
  border: 1px solid var(--gris-claro);
  padding: 0.75rem;
}
.ui-datepicker {
  width: 17em;
  padding: 0;
  border: 1px solid var(--gris-claro);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.ui-datepicker table {
  width: 100%;
  font-size: 13px;
  margin: 0;
  border-collapse: collapse;
}
.ui-datepicker .ui-datepicker-header {
  border: none;
  background: var(--white);
  color: var(--gris-dark);
  font-weight: 400;
  position: relative;
  padding: 0.2em 0;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px;
}
.ui-datepicker .ui-datepicker-header .ui-state-hover {
  background: var(--gris-claro);
  border-color: transparent;
  cursor: pointer;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.ui-datepicker thead {
  background: var(--white);
  color: var(--gris-dark);
}
.ui-datepicker .ui-datepicker-title {
  margin-top: 0.4em;
  margin-bottom: 0.3em;
  color: var(--gris-dark);
  font-size: 0.875rem;
  line-height: 1.8em;
  text-align: center;
}
.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-next-hover,
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-prev-hover {
  width: 20px;
  height: 20px;
  top: 10px;
  border: none;
}
.ui-datepicker .ui-datepicker-prev {
  left: 10px;
}
.ui-datepicker .ui-datepicker-next {
  right: 10px;
}
.ui-datepicker .ui-datepicker-prev-hover {
  left: 10px;
}
.ui-datepicker .ui-datepicker-next-hover {
  right: 10px;
}
.ui-datepicker .ui-datepicker-next span {
  background: url(../img/fletxa-dreta.svg);
  width: 14px;
  height: 20px;
  background-repeat: no-repeat;
}
.ui-datepicker .ui-datepicker-prev span {
  background: url(../img/fletxa-dreta.svg);
  width: 14px;
  height: 20px;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.ui-datepicker th {
  padding: 0.75em 0;
  color: var(--gris-dark);
  font-weight: normal;
  border: none;
  border-top: 1px solid var(--white);
  text-align: center;
}
.ui-datepicker td {
  background: var(--white);
  border: none;
  padding: 0;
}
.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  text-decoration: none;
}
.ui-widget-content a {
  color: var(--gris-dark);
}
.ui-datepicker td .ui-state-default {
  background: transparent;
  border: none;
  text-align: center;
  padding: 0.5em;
  margin: 0;
  font-weight: 500;
  color: var(--bs-primary-medium);
  border-radius: 0;
}
.ui-datepicker td .ui-state-active,
.ui-datepicker td .ui-state-hover {
  background: var(--bs-secondary);
  color: var(--white);
}
.ui-datepicker td.ui-state-disabled,
.ui-datepicker td.ui-state-disabled .ui-state-default {
  opacity: 1;
  color: var(--gris-medium);
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 0;
  margin-left: 0;
  top: 0;
  margin-top: 0;
}
#ui-datepicker-div {
  display: none;
  z-index: 99999 !important;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  filter: Alpha(Opacity=35);
  background-image: none;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
}
.ui-widget-header a {
  color: var(--gris-dark);
}
.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}
.ui-datepicker .ui-icon {
  text-indent: -99999px;
  overflow: hidden;
}
.ui-icon {
  vertical-align: middle;
}

/* ------------------
* Css Font Awesome *
------------------ */
/*!
 * Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2022 Fonticons, Inc.
 */
.fa {
  font-family: var(--fa-style-family, "Font Awesome 6 Pro");
  font-weight: var(--fa-style, 900);
}

.fa,
.fa-classic,
.fa-sharp,
.fas,
.fa-solid,
.far,
.fa-regular,
.fal,
.fa-light,
.fat,
.fa-thin,
.fad,
.fa-duotone,
.fass,
.fa-sharp-solid,
.fab,
.fa-brands {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.fas,
.fa-classic,
.fa-solid,
.far,
.fa-regular,
.fal,
.fa-light,
.fat,
.fa-thin {
  font-family: "Font Awesome 6 Pro";
}

.fab,
.fa-brands {
  font-family: "Font Awesome 6 Brands";
}

.fad,
.fa-classic.fa-duotone,
.fa-duotone {
  font-family: "Font Awesome 6 Duotone";
}

.fass,
.fa-sharp {
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
}
.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em;
}

.fa-xs {
  font-size: 0.75em;
  line-height: 0.08333em;
  vertical-align: 0.125em;
}

.fa-sm {
  font-size: 0.875em;
  line-height: 0.07143em;
  vertical-align: 0.05357em;
}

.fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em;
}

.fa-xl {
  font-size: 1.5em;
  line-height: 0.04167em;
  vertical-align: -0.125em;
}

.fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}
.fa-ul {
  list-style-type: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  left: calc(var(--fa-li-width, 2em) * -1);
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit;
}
.fa-facebook-f:before {
  content: "\f39e";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-users:before {
  content: "\f0c0";
}
.fa-door-open:before {
  content: "\f52b";
}
.fa-bath:before,
.fa-bathtub:before {
  content: "\f2cd";
}
.fa-expand:before {
  content: "\f065";
}
.fa-wifi-3:before,
.fa-wifi-strong:before,
.fa-wifi:before {
  content: "\f1eb";
}
.fa-air-conditioner:before {
  content: "\f8f4";
}
.fa-check:before {
  content: "\f00c";
}
.fa-oven:before {
  content: "\e01d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-times:before {
  content: "\f00d";
}
.fa-hiking:before {
  content: "\f6ec";
}
.fa-map-marker-smile:before {
  content: "\f60d";
}
.fa-phone:before {
  content: "\f095";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-mobile::before {
  content: "\f3ce";
}
.fa-arrow-up-long:before,
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-info-circle::before {
  content: "\f05a";
}
.fa-sort::before {
  content: "\f0dc";
}
.fa-list::before {
  content: "\f03a";
}
.fa-grip-horizontal::before {
  content: "\f58d";
}
.fa-filter::before {
  content: "\f0b0";
}
.fa-globe::before {
  content: "\f0ac";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-circle::before {
  content: "\f111";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-half-alt:before,
.fa-star-half-stroke:before {
  content: "\f5c0";
}
.fa-bed-front:before {
  content: "\f8f7";
}
.fa-bed-alt:before,
.fa-bed-front:before {
  content: "\f8f7";
}
.fa-couch:before {
  content: "\f4b8";
}
.fa-bed-bunk:before {
  content: "\f8f8";
}
.fa-bed:before {
  content: "\f236";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-sink:before {
  content: "\e06d";
}
.fa-door-open:before {
  content: "\f52b";
}
.fa-door-closed:before {
  content: "\f52a";
}
.fa-times:before,
.fa-xmark:before {
  content: "\f00d";
}
.fa-handshake::before {
    content: "\f2b5";
}

.fa-thumbs-up::before {
    content: "\f164";
}

.fa-house-building::before {
    content: "\f1ad";
}

.fa-shield-dog::before {
    content: "\f6f1";
}
.fas.fa-heart {
  color: var(--gris-muted);
}
.fas.fa-heart:hover,
.fas.fa-heart.red {
  color: var(--red);
}
@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../fontawesome/webfonts/fa-brands-400.woff2") format("woff2"),
    url("../fontawesome/webfonts/fa-brands-400.ttf") format("truetype");
}
:root,
:host {
  --fa-style-family-classic: "Font Awesome 6 Pro";
  --fa-font-light: normal 300 1em/1 "Font Awesome 6 Pro";
}

@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url("../fontawesome/webfonts/fa-light-300.woff2") format("woff2"),
    url("../fontawesome/webfonts/fa-light-300.ttf") format("truetype");
}

.fal,
.fa-light {
  font-weight: 300;
}
:root,
:host {
  --fa-style-family-classic: "Font Awesome 6 Pro";
  --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Pro";
}

@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../fontawesome/webfonts/fa-regular-400.woff2") format("woff2"),
    url("../fontawesome/webfonts/fa-regular-400.ttf") format("truetype");
}

.far,
.fa-regular {
  font-weight: 400;
}
:root,
:host {
  --fa-style-family-classic: "Font Awesome 6 Pro";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Pro";
}

@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../fontawesome/webfonts/fa-solid-900.woff2") format("woff2"),
    url("../fontawesome/webfonts/fa-solid-900.ttf") format("truetype");
}

.fas,
.fa-solid {
  font-weight: 900;
}

.fa-twitter:before {
  content: "\f099";
}

:root,
:host {
  --fa-style-family-classic: "Font Awesome 6 Pro";
  --fa-font-thin: normal 100 1em/1 "Font Awesome 6 Pro";
}

@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 100;
  font-display: block;
  src: url("../fontawesome/webfonts/fa-thin-100.woff2") format("woff2"),
    url("../fontawesome/webfonts/fa-thin-100.ttf") format("truetype");
}

.fat,
.fa-thin {
  font-weight: 100;
}
#scroll-top {
  display: none;
  position: fixed;
  bottom: 5rem;
  right: 1.875rem;
  z-index: 999;
  cursor: pointer;
}
.text-ellisis-two-lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.fa-location-pin:before,
.fa-map-marker:before {
  content: "\f041";
}

/* Media queries */
@media (min-width: 576px) {
  .portada-frase .titular-slide {
    font-size: 2.25rem;
  }
  .portada-cercador {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
  }
  .swiper-carrusel {
    height: 100vh;
  }
}

@media (min-width: 768px) {
  .cap-frase,
  .cap-frase h1 {
    font-size: 28px;
  }
  .portada-frase .titular-slide {
    font-size: 40px;
  }
  .apartamentos-destacados {
    padding-left: 35px;
    padding-right: 35px;
  }
  .destacados {
    margin: 60px 0;
  }
  .banner-home-img {
    min-height: 500px;
  }
  .partners ul {
    flex-direction: row;
  }
  .listado .card-body.contenido {
    padding: 1.25rem;
  }

  /* Ficha alojamiento */
  .caracteristicas-ficha li {
    margin-right: 30px;
  }
  .equipamiento ul {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
  .swiper-como-funciona .swiper-slide img {
    height: 140px;
  }
  .grid-vista .allotjament-img img {
    height: 225px;
  }
  .ficha #map {
    height: 450px;
  }
  aside .buscador-disponibilidad.sticky-top {
    top: 120px;
    position: -webkit-sticky;
    position: sticky;
  }
  .leyenda-calendarios .no-disponible,
  .leyenda-calendarios .disponible,
  .leyenda-calendarios .fecha-seleccionada {
    margin-bottom: 0;
  }
  .pagina-error-404 .background-404 {
    padding: 100px 0;
  }
  .pagina-error-404 .h1-error {
    font-size: 100px;
  }
  .pagina-error-404 .gero h2 {
    margin-top: 50px;
    font-size: 30px;
  }
  .banner-top {
    padding: 60px 0;
  }
  .navbar-brand.logo_normal img {
    height: 83px;
  }
  .navbar-brand.logo_sticky img {
    height: 56px;
  }
  .reserva_iframe {
    height: 1450px;
  }
  .search-sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 76px;
    z-index: 1020;
    box-shadow: none;
    box-shadow: 0 4px 2px -2px rgb(0 0 0 / 10%);
  }
}
.fa-handshake:before{content:"\f2b5"}
.fa-shield-dog:before{content:"\e573"}
.fa-house-building:before{content:"\e1b1"}
.fa-thumbs-up:before{content:"\f164"}
@media (min-width: 992px) {
  .p-100 {
    padding: 100px;
  }
  .portada-frase .titular-slide {
    font-size: 58px;
  }
  .grid-vista .allotjament-img img {
    height: 200px;
  }
  .nuestro-equipo .texto {
    width: 100%;
  }
  .btn.nueva-busqueda {
    padding-left: 0;
    padding-right: 0;
  }
  .caracteristicas {
    margin-bottom: 0;
  }
  .caracteristicas-ficha {
    width: 50%;
    position: absolute;
    bottom: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media (min-width: 1200px) {
  .pt-60 {
    padding-top: 60px !important;
  }
  .py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pb-100 {
    padding-bottom: 100px !important;
  }
  .mb-30 {
    margin-bottom: 30px !important;
  }
  .mb-40 {
    margin-bottom: 40px !important;
  }
  .mt-40 {
    margin-top: 40px !important;
  }
  .pt-40 {
    padding-top: 40px !important;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .general-section {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .swiper-apartamentos-destacados .swiper-slide img {
    height: 200px;
  }
  .grid-vista .allotjament-img img {
    height: 250px;
  }
  .table.calendarios-ficha td {
    padding: 0.75rem;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    -ms-border-radius: var(--border-radius);
    -o-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
  }
  .swiper-como-funciona .swiper-slide img {
    height: 160px;
  }
  .btn.nueva-busqueda {
    font-size: 15px;
  }
}
@media (min-width: 1400px) {
  .navbar-dark .navbar-nav .nav-link {
    font-size: 1rem;
  }
  .swiper-como-funciona .swiper-slide img {
    height: 175px;
  }
  .container {
    max-width: 1320px;
  }
  .d-xxl-block {
    display: block !important;
  }
  .btn.nueva-busqueda {
    padding: .55rem 1.25rem;
  }
  .col-listado-premium {
    max-width: 831px;
  }
}

@media (min-width: 1600px) {
  .swiper-apartamentos-destacados .swiper-slide img {
    height: 250px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  aside input.llegada,
  aside input.salida,
  aside input.llegada:hover,
  aside input.salida:hover,
  aside select.huespedes,
  aside select.huespedes:hover {
    background-image: none;
  }
  .btn.nueva-busqueda {
    font-size: 12px;
    line-height: 1.9;
  }
}
.nav-pills {
  --bs-nav-pills-border-radius: 0.375rem;
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: var(--bs-secondary);
}
footer .pago-seguro {
  color: #999;
}
footer .copyright, .enlaces li a {
  color: var(--bs-body-color);
  font-weight: 400;
}
.extras h3 {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  top: 2rem;
  color: #fff;
}
.extras .btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  bottom: 2rem;
}
.extras .general-card {
  min-height: 400px;
}
.extras .card-img-top {
  height: 100%;
}
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-secondary);
  --bs-btn-hover-border-color: var(--bs-secondary);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-secondary);
  --bs-btn-active-border-color: var(--bs-secondary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--bs-secondary);
  --bs-btn-disabled-border-color: var(--bs-secondary);
}

.plan-container {
  border-radius: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin-top: 1rem
}
.plans-row {
  padding-bottom: 4.6875rem
}
.plans-row .plans-col:nth-child(2) .plan-container{
  background-color: var(--bs-primary);
  color: #fff;
}
.plans-row .plans-col:nth-child(3) .plan-container{
  background-color: #5cd194;
}

.fa-circle-check:before{content:"\f058"}
.plan-container ul {
  list-style: none;
  position: relative;
  padding-left: 25px;
}

.plan-container p {
  font-size: .875rem;
}
.plan-container ul li {
  margin-bottom: 6px;
}

.plan-container ul li:after{
  content:"\f058";
  font-family: "Font Awesome 6 Pro";
  font-size: 1rem;
  left: 0;
  position: absolute;
}

@media (min-width: 992px) {
  .plan-container {
    height: 100%;
  }
  .plans-row {
    padding-bottom: 6.5625rem
  }
}

.autocomplete {
  position: relative;
}
.autocomplete input {
  background: rgba(255, 255, 255, .85);
}
.autocomplete-items {
  border: none;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  /* border-bottom: none; */
  border-top: none;
  z-index: 99;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 350px;
  overflow-y: auto;
  border-radius: 5px;
  background: #fff;
}
.autocomplete-items div.zone {
  font-size: 19px;
  font-weight: 600;
}
.autocomplete-items div.city {
  padding-left: 15px;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
}