:root {
  --bg-color-gradient: linear-gradient(#1f8aff, #1c2249);
  --circle-size: clamp(1rem, 4vw, 2rem);
  --spacing: clamp(0.25rem, 2vw, 0.5rem);
}

html,
body {
  height: 100%;
  margin: 0;
}

.container-booking {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 3.875rem);
}

.c-stepper {
  display: flex;
  margin: auto;
  padding: 0;
}

.c-stepper__item.step_ok {
  &:before {
    color: #fff;
    background-color: #48851d;
  }

  &:not(:last-child) {
    &:after {
      /* content: attr(data-step); */
      position: relative;
      top: calc(var(--circle-size) / 2);
      width: calc(100% - var(--circle-size) - calc(var(--spacing) * 2));
      left: calc(50% + calc(var(--circle-size) / 2 + var(--spacing)));
      height: 2px;
      background-color: #48851d;
      order: -1;
    }
  }
}

.c-stepper__item.active {
  &:before {
    color: #fff;
    background-color: #1662b5;
  }

  &:not(:last-child) {
    &:after {
      /* content: attr(data-step); */
      position: relative;
      top: calc(var(--circle-size) / 2);
      width: calc(100% - var(--circle-size) - calc(var(--spacing) * 2));
      left: calc(50% + calc(var(--circle-size) / 2 + var(--spacing)));
      height: 2px;
      background-color: #badbff;
      order: -1;
    }
  }
}

.bg-active-landing {
  &:before {
    background-color: #6c94fd !important;
    color: white !important;
  }
}

.stepper_landing {
  &:before {
    color: #1662b5;
    font-size: 12px !important;
  }
}

.c-stepper__item {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;

  &:before {
    --size: 3rem;
    content: attr(data-step);
    display: block;
    width: var(--circle-size);
    height: var(--circle-size);
    border-radius: 50%;
    background-color: #badbff;
    margin: 0 auto 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
  }

  &:not(:last-child) {
    &:after {
      content: "";
      position: relative;
      top: calc(var(--circle-size) / 2);
      width: calc(100% - var(--circle-size) - calc(var(--spacing) * 2));
      left: calc(50% + calc(var(--circle-size) / 2 + var(--spacing)));
      height: 2px;
      background-color: #badbff;
      order: -1;
    }
  }
}

.c-stepper__title {
  font-weight: bold;
  font-size: clamp(1rem, 4vw, 1.25rem);
  margin-bottom: 0.5rem;
}

.top-section {
  flex: 1;
  padding: 10px 0px;
}

.middle-section {
  flex: 4;
  overflow-y: auto;
  overflow-x: hidden;
}

.bottom-section {
  flex: 1;
  padding: 10px 0px;
}

.max_img_hg {
  max-height: 150px;
}

.scrollable-content {
  height: 100%;
}

.radius-16 {
  border-radius: 16px !important;
}

.border-card-label {
  display: block;
  border-radius: 16px;
  overflow: hidden;
}

#parte1 {
  animation: cambio-de-color 2s infinite;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
  /* agrega una pausa de 2 segundos */
}

#parte2 {
  animation: cambio-de-color 2s infinite;
  animation-fill-mode: forwards;
  animation-delay: 1s;
  /* agrega una pausa de 2 segundos */
}

#parte3 {
  animation: cambio-de-color 2s infinite;
  animation-fill-mode: forwards;
  animation-delay: 1.5s;
  /* agrega una pausa de 2 segundos */
}

#parte4 {
  animation: cambio-de-color 2s infinite;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
  /* agrega una pausa de 2 segundos */
}

.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #2bb140;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  z-index: 999;
}

.floating-button:hover {
  color: #2bb140;
  background: #fff;
  border: 1px solid #ddd;
}

.floating-button i {
  font-size: 24px;
}

@keyframes cambio-de-color {
  0% {
    fill: #edf2f9;
  }

  90% {
    fill: #14a1fd;
  }

  100% {
    fill: #edf2f9;
    animation-direction: alternate;
  }
}

#content {
  background: #edf2f9;
  min-height: 100vh;
}

.sticky-top {
  top: 70px;
}

div#tableFilterDropdown {
  min-width: 300px;
}

.btn_custom_site {
  background: #ffffff;
  color: #1f8aff;
  box-shadow: 4px 3px 1px #7dc4fd;
  border: 1.5px solid #1f8aff;
  border-radius: 10px;
  text-transform: uppercase;
}

.btn_custom_site.primary {
  background: #1f8aff;
  color: white;
  box-shadow: 5px 4px 1px #7dc4fd;
  border: 1.5px solid #1f8aff;
  border-radius: 10px;
  text-transform: uppercase;
}

.navbar .nav-link:hover h5 {
  color: #1f8aff !important;
}

.navbar-nav .nav-item:hover {
  background: #1d224a33;
}

.navbar-nav-cowork .nav-item:hover{
  background: #e8eff8 !important;
}

.navbar .nav-link:hover img {
  filter: invert(23%) sepia(82%) saturate(7094%) hue-rotate(218deg) brightness(96%) contrast(100%);
}

.btn_custom_site:hover {
  background: #1f8aff;
  color: white;
  text-transform: uppercase;
}

.btn_custom_site_danger {
  background: #ffffff;
  color: #ed4c78;
  box-shadow: 5px 4px 1px #f784a4;
  border: 1.5px solid #ed4c78;
  border-radius: 10px;

  text-transform: uppercase;
}

.btn_custom_site_danger.danger {
  background: #ed4c78;
  color: white;
  box-shadow: 5px 4px 1px #f784a4;
  border: 1.5px solid #ed4c78;
  border-radius: 10px;

  text-transform: uppercase;
}

.btn_custom_site_danger:hover {
  background: #ed4c78;
  color: white;
  text-transform: uppercase;
}

/* HTMX INDICATOR */

.htmx-indicator {
  opacity: 0;
  transition: opacity 500ms ease-in;
  display: inline-block;
}

.htmx-request .htmx-indicator {
  opacity: 1;
}

.htmx-request.htmx-indicator {
  opacity: 1;
}

.min-w-auto {
  min-width: auto !important;
}

.custom_paginator {
  border: 1px solid #ddd;
  border-radius: 5px;
}

.container_loading {
  width: 300px;
  height: 300px;
}

.loading_request {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 99999999;
  height: auto;
}

.load_request {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  animation: load 2s linear infinite;
}

@keyframes load {
  0% {
    transform: rotate(0deg);
    box-shadow: 1px 3px 2px #1f8aff;
  }

  50% {
    transform: rotate(180deg);
    box-shadow: 1px 3px 2px #1d224a;
  }

  100% {
    transform: rotate(360deg);
    box-shadow: 1px 3px 2px #6ab3fe;
  }
}

.load_request:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 5px rgb(15 94 233 / 30%);
}

.loading_request span {
  color: black;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 120px;
  animation: text 3s ease-in-out infinite;
}

#modal-loading {
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.footer_menu {
  height: 4.54rem;
}

.navbar-vertical-aside-mini-mode .navbar-vertical-aside .navbar-vertical-content {
  height: calc(100% - 4.8rem);
}

.navbar-vertical-aside-show-xl.navbar-vertical-aside-mini-mode .navbar-vertical-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.modal_reset_password {
  background-color: rgba(0, 0, 0, 0.9) !important;
  background-image: url("../img/hero_cel.jpg");
}

.card_form_login {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
}

.card_form_login>form {}

.container_login {
  position: absolute;
  top: 5%;
}

.container_customer_login:before {
  background-image: url("../img/hero_cel.jpg");
  position: absolute;
  content: "";
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  border-radius: inherit;
}

.dz-error-message {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fixed-column {
  position: sticky;
  left: 0;
  background-color: #fff;
}

.custom-file-input:lang(en)~.custom-file-label::after {
  content: "Cargar";
}

.custom-dropdown {
  position: relative;
}

.custom-dropdown-menu {
  width: 300px !important;
}

@keyframes text {
  50% {
    color: black;
  }
}

/* @media ((min-width: 991px) and ( max-width: 1300px)) {
  .card_date {
    visibility: hidden;
  }
} */

@media (max-width: 768px) {
  .buttons_payment {
    display: flex !important;
  }

  .pagination_inactive {
    display: none;
  }

  .main .content {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .img_landing_spaces {
    min-height: 150px !important;
    max-height: 150px !important;
    border-top-right-radius: 0.6875rem;
    border-bottom-left-radius: 0px !important;
  }

  .img_selected_spaces {
    border-top-right-radius: 0.6875rem;
    border-bottom-left-radius: 0px !important;
  }

  .card-img-left-landing {
    max-height: 600px;
  }

}

.top-auto {
  top: auto !important;
  bottom: -50px !important;
}

.first-section {
  background-color: #f0f0f0;
  text-align: center;
}

.container-search {
  margin: 0 auto;
}

.img_landing_top {
  width: 100%;
  height: 0;
  padding-top: 60%;
  background-image: url("/static/v2/img/public_rooms/home_landing.jpg");
  background-size: cover;
  background-position: center;
}

.second-section {
  padding: 15px;
  background-color: #ffffff;
}

.card-img-top-landing {
  background: #1F8AFF;
  backdrop-filter: blur(10px);
  border-radius: 10px;
  margin: 5px 0;
  border:2px solid #1F8AFF;
  display: flex;          
  align-items: stretch;  
}

.card-img-left-landing {
  border-bottom-left-radius: 0.6875rem;
  border-top-left-radius: 0.6875rem;
  object-fit: cover;
  width: 100%;
  height: auto;
  max-height: 600px;
  min-height: 550px;
}

#map {
  height: 300px;
  width: 100%;
}

.img-landing {
  object-fit: cover;    
  min-height: 550px;
  max-height: 650px;
  height: auto;
  width: 100%;
}

.img_landing_spaces {
  min-height: 250px;
  max-height: 250px;
  width: 100%;
  object-fit: cover;
}

.step-container {
  display: flex;
  overflow: hidden;
}

.step {
  flex: 1;
  transition: transform 0.5s ease-in-out;
}

.step-enter-active,
.step-leave-active {
  transform: translateX(0);
}

.step-enter,
.step-leave-to {
  transform: translateX(100%);
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.avatar-circle-container {
  position: relative;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 85%) 0%, rgb(0 0 0 / 25%) 100%);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.8s linear(0 0%, 1.24 -2.94%), opacity 0.8s ease;
}

.overlay span {
  display: none;
}

.overlay:hover {
  opacity: 1;
}

.overlay:hover span {
  display: block;
}

.footer-landing {
  width: 100%;
  background: #366CB5;
  border-top: 2px solid #fff;
}

.footer_columns {
  column-count: 3;
}

.text-start {
  text-align: left !important;
}

.marca-de-agua {
  position: absolute;
  bottom: 20px;
  left: 20px;
  height: 40px;
  opacity: 1;
  z-index: 1;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.img_selected_spaces {
  /* height: 100%; */
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.fancybox-image {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

@media (max-width: 576px) {
  .footer_columns {
    column-count: 2;
  }
  .top-auto{
    bottom: -75px !important;
  }
  .info_home{
    top:5% !important;
    left: 5% !important;
  }
} 

@media (max-width: 998px) {
  .img-landing {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-height: 780px;
    display: block;
  }
  
}


.column-divider {
  max-height: 850px;
}