#catalog__qty__modal {
    z-index: 9999999999;
    position: absolute; top: 0; left: 0;
    width: 100svw; height: 100svh;
    display: flex; justify-content: center; align-items: center;
    background-color: rgba(0, 0, 0, .2);
}

#catalog__qty__modal__body {
    width: 80%; 
    /*height: 25svh;*/
    background-color: white;
    border-radius: 5px;
}

#catalog__qty__modal__body__header,
#catalog__qty__modal__body__body,
#catalog__qty__modal__body__footer {
    width: 100%;
}

#catalog__qty__modal__body__header {
    height: 20%;
    padding: 0 5px;
    display: flex; justify-content: flex-start; align-items: center; 
}

#catalog__qty__modal__body__body {
    height: 50%;
    display: flex; justify-content: center; align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

#catalog__qty__modal__body__footer {
    height: 30%;
    display: flex; justify-content: flex-end; align-items: flex-start;
    gap: 5px;
    padding: 5px; 
}

.catalog__img{
    background-repeat: no-repeat;
}

.gallery-list .catalog__img,
.gallery-1x .catalog__img,
.gallery-2x .catalog__img,
.gallery-3x .catalog__img,
.gallery-5x .catalog__img {
    background-position: center;
}

.gallery-list .catalog__img {
    width: 15vmin;
    height: 100%;
}
/* Los height tienen medidas de ancho para no tener que hacer modificaciones con js */
.gallery-1x .catalog__img {
    height: 50svw; 
    width: 50%;
}

.gallery-2x .catalog__img {
    height: 45svw; 
    width: 100%;
}

.gallery-3x .catalog__img {
    height: 30svw; 
    width: 100%;
}

.gallery-4x .catalog__img {
    height: 25svw;
    width: 100%;
}

.catalog__modal__filter {
    position: absolute;
    top: 0; left: 0;
    z-index: 9999999999;
    width: 100svw;
    height: 100svh;
    background-color: white;
}

.catalog__modal__filter__head {
    width: 100%;
    height: fit-content !important;
}

.catalog__modal__filter__head .nav-link {
    width: fit-content !important;
}

.catalog__modal__filter__body {
    overflow-y: auto !important;
    height: 90svh;
}

.catalog__modal__filter__body .select_type {
    border-bottom: 1px solid lightgray;
    padding: 10px;
}

.catalog__modal__filter__body .select_type:nth-of-type(2n) {
    background-color: lightgray;
}

.sub-card-wrapper{
    user-select: none;
}

.sub-card-wrapper-footer button {
    color:black;
    font-size: 0.75rem;
    border-color:white !important;
}

.sub-card-wrapper-footer button.active {
    border-color:white !important;
    color: var(--micro-primary-color);
    font-weight: bold;
}

.sub-card-wrapper-footer button.active > * {
    color: var(--micro-primary-color);
    font-weight: bold;
}


.sub-card> div span.precio {
    font-weight: bold;
    color: var(--micro-primary-color) !important;
}