.form-cotizacion {
  color: var(--color-base);
}

.form-cotizacion label {
  font-weight: 500;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: .5rem;
  font-size: 0.9rem;
}
.form-cotizacion p{
  margin-top: 0px;
  font-size: 1rem;
}

.checkbox-estilos:checked + .card-cuadrado {
    background-color: #000 !important;
}

.card-cuadrado {
    position: relative;
    min-height: 3rem;
    font-size: 1.2rem;
    width: 84%;
    max-width: 90px;
    height: 7.2rem;
    min-height: 3rem;
    font-weight: bolder;
    font-size: 1.2rem;
    width: 84%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px;
    transition: background-color 250ms;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border-radius: 5px;
}
.card-cuadrado.active{
  img {
    filter: brightness(100%);
    transform: scale(1.3);
  }
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.1);
}
.card-cuadrado:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* background-color: rgba(0, 0, 0, 0.1); */
    border-radius: 0px 0px 4px 4px;
}

.card-cuadrado div {
    position: sticky;
    width: 100%;
    text-align: center;
    color: #FFF;
    font-weight: 300;
    font-size: 0.7rem;
}

.card-cuadrado .checkbox-label {
    color: #FFF;
    font-weight: 300;
    font-size: 0.7rem;
    text-align: center;
}

.checkbox-estilos {
    display: none;
    position: relative;
    padding-left: 31px;
    cursor: pointer;
    position: absolute;
    bottom: 4px;
    right: 4px;
    border: 1px solid #01336638;
}
.check-carga,.check-modelo {
    max-width: 140px;
}
.check-modelo{
    height: 8rem;
}
.card-cuadrado-footer{
    bottom: -1.5rem;
    max-height: fit-content;
    top: 0px;
    position: absolute !important;
    padding: 3px;
    font-size: 1rem !important;
    background-color: #013366;
    border: 1px solid #aaaaaa;
}

@media (max-width: 767px){
  .card-cuadrado{
    max-width: 75px;
    height: 5.2rem;
  }
  .check-carga,.check-modelo {
    max-width: 100px;
  }
  .card-cuadrado-footer{
    max-height: 1.9rem;
    padding: 2px;
  }
  .check-modelo {
    height: 6rem;
  }
  .card-cuadrado .modelo-item{
    top: calc(0.8vh + 0.8vw);
    font-size: 0.7rem;
  }
}