
.wizard[data-v-281f61fb] {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.steps-container[data-v-281f61fb] {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin-bottom: 20px;
  position: relative;
  flex-direction: row;
  align-items: center;
}
.progress-bar[data-v-281f61fb] {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  z-index: 0;
}
.progress-fill[data-v-281f61fb] {
  height: 100%;
  background-color: var(--primary);
  border-radius: 100px !important;
  transition: width 0.3s ease-in-out;
}
.step-wrapper[data-v-281f61fb] {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  width: 100%;
}
.step[data-v-281f61fb] {
  text-align: center;
  position: relative;
  z-index: 2;
  transition: background-color 0.3s ease !important;
}
.step-number[data-v-281f61fb] {
  font-size: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: solid 2px rgba(var(--bg-secondary), 0.3);
  color: rgba(var(--bg-secondary), 0.3);
  /* background-color: #eee; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-style: italic;
  position: relative;
  transition: background-color 0.3s ease !important;
}
.step.active .step-number[data-v-281f61fb] {
  transition: background-color 0.3s ease !important;

  border: solid 2px var(--primary);

  background-color: var(--primary);
  color: white;
}
.step.completed .step-number[data-v-281f61fb] {
  background-color: var(--bg-card);
  border: solid 2px var(--primary);
  color: var(--primary);
}
.step.visited .step-number[data-v-281f61fb] {
  transition: background-color 0.3s ease !important;

  background-color: var(--bg-card);

  border: solid 2px var(--primary);
  color: var(--primary);
}
.step-label[data-v-281f61fb] {
  margin-top: 5px;
  color: #ccc;
}
.step.active .step-label[data-v-281f61fb] {
  color: var(--primary);
}
.step.visited .step-label[data-v-281f61fb] {
  color: var(--primary);
}
.step.completed .step-label[data-v-281f61fb] {
  color: var(--primary);
}


.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.image-container-prop {
  position: relative;
  border-radius: 5px;
  width: 12rem;
  height: 7rem;
  overflow: hidden;
  /* Oculta cualquier contenido que se desborde */
}
.gallery-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  /* Transición suave para el zoom */
}
.image-container-prop:hover .gallery-image {
  transform: scale(1.1);
  /* Zoom suave al hacer hover */
}

/* Fondo rojo semitransparente y el ícono */
.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--primary-rgb), 0.6);
  /* Fondo semitransparente rojo */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  /* Transición suave al aparecer */
}
.image-container-prop:hover .hover-overlay {
  opacity: 1;
  /* Aparece el fondo y el ícono al hacer hover */
}
.trash-icon {
  color: var(--white);
  /* Color del ícono */
  font-size: 2rem;
  /* Tamaño del ícono */
  pointer-events: none;
  /* Evita que interfiera con eventos del mouse */
}
.gap-3 {
  gap: 1rem;
  /* Espaciado uniforme entre los checkboxes */
}
@media (max-width: 576px) {
  /* Estilos para pantallas pequeñas */
.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.image-container-prop {
    position: relative;
    border-radius: 5px;
    width: 10rem;
    height: 5rem;
    overflow: hidden;
    /* Oculta cualquier contenido que se desborde */
}
.gallery-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.3s ease;
    /* Transición suave para el zoom */
}
.action-buttons-container {
    padding-bottom: calc(env(safe-area-inset-bottom, 20px) + 80px);
}
}
@media (min-width: 576px) and (max-width: 768px) {
  /* Estilos para pantallas medianas */
}

