/***** COMPARADOR *****/
.container-fluid{
  width: 100%;
}

.select_auto{
  margin-top: 10px;
}


/* Estilos para el elemento select auto */
/* Estilos para el elemento select auto */
.elemento_select_auto {
  min-height: 200px;
  border: 1px solid var(--color-dark-grey);
  width: 100%;
  margin: 10px calc(1vh + 1vw);
  max-width: 260px;
  
}

.select_auto_content{
  min-height: 200px;
  text-align: center;
}

/* Estilos para el botón redondo */
.btn-round-plus {
  width: 100%;
  height: 100%;
  background-color: #FFF;
  font-size: calc(0.7vw + 0.7vh);
  font-weight: 100;
  text-align: center;
  padding: 5vh 1vw;
}

.btn-round-plus i{
  font-weight: 100;
  color: var(--color-mid-grey);
}

.btn-round-cerrar{
      position: absolute;
    top: 6px;
    right: 8px;
    color: var(--color-mid-grey);
    font-size: 1.1rem;
    font-weight: 100;
    text-align: center;
    border: 0px;
    /* border-radius: 50%; */
    padding: 6px 8px;
    background-color: transparent;
}
.btn-round-cerrar img{
  width: 13px !important;
  height: 19px;
}

/* Estilos para el texto centrado */
.select_auto .texto_centrado {
  display: block;
    width: calc(100% - calc(1vh + 1vw));
    text-align: center;
    margin-top: 5px;
    color: var(--color-mid-grey);
    position: absolute;
    bottom: 7vh;
    font-size: 0.7rem;
}
.vehiculo_select{
  position: relative;
  width: 100%;
  height: 240px;
  text-align: center;
}
.vehiculo_select .marca{
  position: absolute;
  top: calc(0.8vh + 0.8vw);
  z-index: 1;
  font-size: 1.0em;
  color: #33333380;
  font-weight: lighter;
  text-align: center;
  width: 100%;
  height: auto;
}
.vehiculo_select .modelo{
  z-index: 2;
  font-size: 1.8rem;
  color: #33333380;
  position: absolute;
  top: 34px;
  left: 0;
  width: 100%;
  height: auto;
  text-align: center;
}
.vehiculo_select .modelo-img{
  z-index: 3;
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    top: 64px;
    position: relative;
}
.vehiculo_select .modelo-img img{
  opacity: 1; display: block; right: 50%;
}
 .modal-container-mid{
  position: fixed;
    top: 3.5%;
    left: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    background-color: #00000091;
    z-index: 999;
    display: none;
  }
  .modal-body-mid {
    position: absolute;
    text-align: center;
    width: 80%;
    height: 80%;
    background-color: #fffffff9;
    padding: calc(0.8vh + 0.8vw);
    color: var(--color-base);
    margin: 15% 10%;
    border: 1px solid #dee2e6;
    border-radius: 5px;
  }

  /* Estilos para el icono de cierre */
  .modal-close {
  position: absolute;
  top: 16px;
  right: 12px;
  cursor: pointer;
  color: #ffffff; /* Color del icono */
  font-size: calc(0.8vh + 0.8vw);
  }

  /* Estilos adicionales para el icono de cierre */
  .modal-close:hover {
  color: #ff0000; /* Cambia el color al pasar el mouse sobre el icono */
  }
  .modal-close img{
  width: calc(0.8vh + 0.8vw);
  height: calc(0.8vh + 0.8vw);
  }
  .btn-round-cerrar{
    display: none;
    z-index: 200;
  }
  .vehiculo_select{
    display: none;
  }
  .btn-comparar{
    display: none;
  }
  div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm{
    background-color: #003366;
  }

/***** COMPARADOR *****/
/* Estilos para dispositivos móviles (menores a 768px) */
@media (max-width: 767px) {
  .container-fluid{
    width: 100%;
  }
  .elemento_select_auto {
    min-height: 200px;
    border: 1px solid var(--color-dark-grey);
    width: 100%;
    margin: 10px 13px;
    /* max-width: 260px; */
    min-width: 120px;
  }
  .select_auto_content{
    min-height: 180px;
  }
  .vehiculo_select {
    height: 190px;
  }
  .vehiculo_select .modelo-img img {
    opacity: 1;
    display: block;
    right: 50%;
    width: 90%;
    max-width: 150px;
    margin-top: 10px;
  }

}