.w-screen {
  width: 100vw;
}

.container-tabs,
.container-tabs-map {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.tabs {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 1280px;
}

.tab,
.tab-map {
  padding: 12px 32px;
  font-size: 22px;
  width: 200px;
  max-width: 200px;
  font-weight: bold;
  line-height: 27.5px;
  letter-spacing: 0.88px;
  flex: 1 1 0;
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: #ededed;
  color: #616972;
}

.destionations-container {
  margin: 0 auto;
  max-width: 1280px;
}

.card,
.featured-card {
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.span-two-columns {
  grid-column: span 2;
}

.card p,
.featured-card .state {
  background-color: #fff;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  color: #dc2c46 !important;
  font-size: 16px;
  left: 0px;
  letter-spacing: 0.2px;
  line-height: 24px;
  padding: 8px 16px;
  position: absolute;
  top: 16px;
  transition: all 0.3s ease;
}

.card a,
.featured-card a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.featured-card a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}

.card-body button {
  background-color: transparent;
  border-radius: 10px;
  color: #35393f;
  display: flex;
  font-size: 15px;
  font-weight: bold;
  gap: 8px;
  padding: 12px 0;
  transition: all 0.3s ease;
  width: fit-content;
}

.card:hover button {
  padding: 12px 32px;
  background-color: #ffd9df;
}

.card:hover,
.featured-card:hover {
  box-shadow: 0px 15px 20px -8px rgba(0, 0, 0, 0.25);
}

.card:hover p,
.featured-card:hover .state {
  background-color: #dc2c46;
  color: #fff !important;
}

.card img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.featured-card img {
  border-radius: 10px;
  height: 319px;
  object-fit: cover;
  width: 100%;
}

.featured-card-body {
  position: absolute;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: end;
  background: rgb(27, 30, 32);
  background: linear-gradient(
    0deg,
    rgba(27, 30, 32, 1) 0%,
    rgba(27, 30, 32, 0.01) 80%
  );
}

.featured-card-body h2 {
  color: white !important;
  margin-bottom: 8px;
}

.featured-card-body p {
  color: white !important;
}

.featured-card-body button {
  background-color: #c81832;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 12px 0;
  width: 179px;
  display: flex;
  justify-content: center;
  /* gap: 8px; */
  font-weight: bold;
  transition: all 0.3s ease;
}

.featured-card-body button svg {
  width: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.featured-card:hover .featured-card-body button svg {
  transform: scale(1);
  width: auto;
  margin-left: 8px;
}

.active-tab {
  background-color: #c81832 !important;
  color: white !important;
}

/* MAPA */
.container-map {
  padding-top: 80px;
}

.map-title {
  text-align: center;
  margin-bottom: 24px;
}

.map-title h6 {
  color: var(--primary) !important;
  margin-bottom: 8px !important;
}

.google-map-container {
  margin-top: 24px;
  position: relative;
}

#map {
  width: 100%;
  height: 634px;
}

.google-map-dropdown {
  position: absolute;
  top: 24px;
  left: 120px;
  background-color: var(--white);
  padding: 32px;
  border-radius: 10px;
  width: 100%;
  max-width: 458px;
  max-height: calc(100% - 48px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  /* gap: 32px; */
  z-index: 30;
}

.google-map-dropdown::-webkit-scrollbar {
  width: 4px;
  cursor: pointer;
}

.google-map-dropdown::-webkit-scrollbar-track {
  background-color: transparent;
  cursor: pointer;
}

.google-map-dropdown::-webkit-scrollbar-thumb {
  background-color: #dc2c46;
  border-radius: 4px;
  cursor: pointer;
}

.google-map-accordion-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.google-map-accordion-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-500, #98a0ab);
}

.google-map-accordion-heading-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-map-accordion-heading-btn {
  padding: 0;
  width: 24px;
  height: 24px;
  background-color: transparent;
}

.marker-container {
  position: relative;
  z-index: -10;
  display: flex;
  height: 24px;
  overflow: hidden;
  border-radius: 9999999px;
  transition: all 150ms;
  align-items: center;
}

.marker-container img {
  border-radius: 9999999px;
  width: 24px;
  height: 24px;
}

.marker-container p {
  font-size: 13px !important;
  font-weight: bold !important;
  color: var(--primary) !important;
  opacity: 0;
  width: 0;
}

.yNHHyP-marker-view:hover .marker-container {
  height: 32px;
  background-color: white;
  padding: 8px;
}

.yNHHyP-marker-view:hover .marker-container p {
  width: fit-content;
  opacity: 1;
}

.google-map-accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.5s ease;
}

.google-map-accordion-heading-btn {
  transition: all 0.3s ease;
}

.google-map-accordion-heading-btn.active {
  transform: rotate(180deg);
}

.google-map-accordion-content-container {
  overflow: hidden;
  margin-bottom: 8px;
}

.google-map-accordion-content-container div {
  display: flex;
  gap: 8px;
  align-items: center;
}

.google-map-accordion-content-container a {
  display: inline-block;
  margin-top: 16px;
}

.google-map-accordion-content.open {
  grid-template-rows: 1fr;
}

.firstOrLast,
.another {
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 1000px;
  background-color: var(--primary);
  height: 23px;
  gap: 8px;
}

.firstOrLast {
  background-color: var(--primary);
}

.another {
  background-color: var(--white);
}

.firstOrLast span,
.another span {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.separator {
  width: 4px;
  height: 20px;
  background-color: var(--primary);
  margin-left: 10px;
}

.icon {
  /* width: 24px;
  height: 24px; */
}

@media (max-width: 1024px) {
  .tab,
  .tab-map {
    padding: 8px;
    font-size: 15px;
    font-weight: bold;
    line-height: normal;
    letter-spacing: normal;
    font-style: normal;
    width: fit-content;
  }

  /* MAPAS */
  .google-map-container {
    margin-top: 56px;
    margin-bottom: 56px;
  }

  .google-map-dropdown {
    position: relative;
    padding: 24px 16px;
    margin-right: 16px;
    margin-left: 16px;
    width: auto;
    max-width: none;
    max-height: 350px;
    top: auto;
    left: auto;
    margin-top: -123px;
  }

  .google-map-container {
    margin-top: 32px;
  }
}

@media (max-width: 768px) {
  .card,
  .featured-card {
    flex-direction: row;
  }

  .card-body {
    justify-content: space-between;
    gap: 0;
  }

  .card-body button {
    padding: 0;
  }

  .card img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    height: 144px;
    object-fit: cover;
    width: 171px;
  }

  .card p,
  .featured-card .state {
    background-color: #dc2c46 !important;
    color: #fff !important;
  }

  .featured-card-body {
    gap: 16px;
    justify-content: end;
  }

  .featured-card img {
    height: 168px;
  }

  .featured-card-body p {
    display: none;
  }

  .featured-card-body button {
    padding: 8px 16px;
    /* width: 81px; */
    max-width: fit-content;
  }

  .featured-card:hover .featured-card-body button svg {
    transform: scale(0);
    width: 0;
    margin-left: 0;
  }

  .span-two-columns {
    grid-column: span 1;
  }

  .card:hover button {
    padding: 0;
    background-color: transparent;
  }
}


.marker-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 20;
}

.marker-container p { 
  background: white; 
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;    
  margin-top: 2px;
}