/* Global */
.breadcrumb {
    display: none !important;
}

.hidden {
    /* visibility: hidden; */
    opacity: 0 !important;
    cursor: auto !important;
}

#wrapper {
    padding-top: unset !important;
    padding-bottom: unset !important;
    min-height: 100vh;
    background-color: #F9F9F9 !important;
}

#inner-wrapper {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

#mobile-header {
    border-bottom: none !important;
}

.bg-filter {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0,0,0,0.4); */
}

#wrapper #app {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #fff;
}
::-webkit-scrollbar-thumb {
    background-color: #75c435;
    border-radius: 0;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0.5) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.5) 75%, transparent 75%, transparent);
}
::-webkit-scrollbar-thumb {
    background-color: #cecece;
    border-radius: 0;
    background-image: unset;
}

#header .btn-neworder {
    display: none;
}

.prevent-selection {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* END Global */

/* --------------------------------------------------- */
/* ------------------ DATE SELECTOR ------------------ */
/* --------------------------------------------------- */

.date-selector {
    width: 100%;
    background-color: #F2F2F2;
}

.date-selector .card.date-selector-card {
    border: unset;
    margin: 0.5vw 11.71vw;
    padding: 0.5vw 0;
}

.date-selector .date-selector-card-content {
    position: relative;
    background-size: cover;
    width: 100% !important;
    height: unset !important;
    padding: 0;
}

.date-selector .date-selector-card-content .date-selector-content-left {
    /* width: 345px; */
    gap: 0.8vw;
    z-index: 0;
}

.date-selector .date-selector-card-content .date-selector-content-left .date-selector-content-left-title h1 {
    font-family: Cormorant Garamond;
    font-size: 2vw;
    line-height: 2.1vw;
    font-style: normal;
    font-weight: 700;
    line-height: 127%;
    margin-bottom: 0;
}

.date-selector .date-selector-card-content .date-selector-content-left .date-selector-content-left-subtitle h2 {
    /* color: var(--black, #201D1E); */
    /* Body/Regular - 16px */
    /* font-family: Open Sans; */
    font-size: 0.85vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1vw; /* 168.75% */
    margin-bottom: 0;
}

.date-selector .date-selector-card-content .date-selector-content-right {
    position: relative;
    width: 42.6vw;
    /* max-width: 816px; */
    /* width: 42.5%; */
    padding: 0.8vw 1vw;
    background-color: white;
    border-radius: 0.85vw;
}

.date-selector .date-selector-card-content .date-selector-content-right .swiper-date {
    margin: 0 1.13vw;
    overflow: hidden;
}

.date-selector .date-selector-card-content .date-selector-content-right .swiper-button-prev,
.date-selector .date-selector-card-content .date-selector-content-right .swiper-button-next {
    /* width: 6px; */
    /* height: 12px;
    padding: 6px 8px; */
    /* margin-top: unset; */
    margin: auto;
    height: 100%;
    top: 0;
    background: none;
    padding: 0.7vw 0.4vw;
}

.date-selector .date-selector-card-content .date-selector-content-right .swiper-button-prev {
    margin-left: 0.4vw;
}

.date-selector .date-selector-card-content .date-selector-content-right .swiper-button-next {
    margin-right: 0.4vw;
}

.date-selector .date-selector-card-content .date-selector-content-right .swiper-button-prev::after,
.date-selector .date-selector-card-content .date-selector-content-right .swiper-button-next::after {
    font-size: 1.5vw;
}

.date-selector .date-selector-card-content .date-selector-content-right .swiper-slide {
    width: fit-content;
}

.date-selector .date-selector-card-content .swiper-wrapper button {
    width: 100%;
    padding: 0.6vw;
    border: none;
    position: relative;
    margin: 0 0.6vw;
    border-radius: 0.85vw;
}

.date-selector .date-selector-card-content .swiper-wrapper button.disabled {
    cursor: unset;
}

.date-selector .date-selector-card-content .swiper-wrapper button:hover {
    background-color: unset;
    color: #343a40;
}

.date-selector .date-selector-card-content .swiper-wrapper button.active {
    background-color: #ECECEC;
    color: #343a40;
}

.date-selector .date-selector-card-content .swiper-wrapper button .date-item {
    gap: 2px;
}

.date-selector .date-selector-card-content .swiper-wrapper button .date-item-today-container {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0.4vw;
    width: 100%;
}

.date-selector .date-selector-card-content .swiper-wrapper button .date-item-today {
    width: 0.4vw;
    height: 0.4vw;
    background-color: #ECECEC;
    margin: auto;
    border-radius: 50%;
}

.date-selector .date-selector-card-content .swiper-wrapper button .date-item .date-item-title {
    font-size: 1.5vw;
    font-weight: 600;
    line-height: 1.9vw;
}

.date-selector .date-selector-card-content .swiper-wrapper button .date-item .date-item-subtitle {
    font-size: 0.75vw;
    font-weight: 400;
    line-height: 1.25vw;
    /* max-width: 105px; */
}



/* @media (max-width:1200px) {
    .date-selector .date-selector-card-content .swiper-wrapper button .date-item .date-item-title {
        font-size: 23px;
    }
} */

/* MOBILE */

@media (max-width:991px) {
    .date-selector .card.date-selector-card {
        margin: unset;
        padding: unset;
    }
    .date-selector .date-selector-card-content {
        padding: 24px 16px;
        flex-direction: column;
        gap: 16px
    }

    .date-selector .date-selector-card-content .date-selector-content-left {
        /* display: none !important; */
        width: 100%;
        gap: unset;
    }

    .date-selector .date-selector-card-content .date-selector-content-left .date-selector-content-left-title h1 {
        font-size: 34px;
        line-height: 40px;
    }

    .date-selector .date-selector-card-content .date-selector-content-left .date-selector-content-left-subtitle h2 {
        font-size: 16px;
        line-height: 20px;
    }

    .date-selector .date-selector-card-content .date-selector-content-right {
        max-width: unset;
        width: 100%;
        padding: 8px 0;
        border-radius: 16px;
    }

    .date-selector .date-selector-card-content .swiper-wrapper button {
        width: unset;
        padding: 8px 14px;
        margin: 0 4px;
    }

    /* .date-selector .date-selector-card-content .swiper-wrapper button.disabled {
        visibility: hidden;
    } */

    .date-selector .date-selector-card-content .swiper-wrapper button.active {
        border-radius: 16px;
    }

    .date-selector .date-selector-card-content .swiper-wrapper button .date-item {
        white-space: nowrap;
        width: fit-content;
    }

    .date-selector .date-selector-card-content .swiper-wrapper button .date-item-today-container {
        height: 8px;
    }

    .date-selector .date-selector-card-content .swiper-wrapper button .date-item-today {
        width: 8px;
        height: 8px;
    }

    .date-selector .date-selector-card-content .swiper-wrapper button .date-item .date-item-title {
        font-size: 20px;
        line-height: 30px;
    }

    .date-selector .date-selector-card-content .swiper-wrapper button .date-item .date-item-subtitle {
        font-size: 12px;
        line-height: 24px;
    }

    .date-selector .date-selector-card-content .date-selector-content-right .swiper-date {
        margin: 0;
    }

    .date-selector .date-selector-card-content .date-selector-content-right .swiper-button-prev,
    .date-selector .date-selector-card-content .date-selector-content-right .swiper-button-next {
        width: 14vw;
        padding: 0;
        margin: 0;
        opacity: 1;
    }

    .date-selector .date-selector-card-content .date-selector-content-right .swiper-button-prev {
        background-image: linear-gradient(to right, rgb(255 255 255) , rgb(0 0 0 / 0%));
        border-top-left-radius: 16px;
        border-bottom-left-radius: 16px;
    }

    .date-selector .date-selector-card-content .date-selector-content-right .swiper-button-next {
        background-image: linear-gradient(to left, rgb(255 255 255) , rgb(255 255 255 / 0%));
        border-top-right-radius: 16px;
        border-bottom-right-radius: 16px;
    }

    .date-selector .date-selector-card-content .date-selector-content-right .swiper-button-prev::after,
    .date-selector .date-selector-card-content .date-selector-content-right .swiper-button-next::after {
        display: none;
    }
}

/* END MOBILE */


/* ----------- NAVIDAD ----------- */

.date-selector .christmas-img {
    display: inline-flex;
    position: absolute;
    top: 0.2vw;
    left: 1.2vw;
}

.date-selector .christmas-img img {
    width: 1vw;
    height: 1vw;
}

@media (max-width: 991px) {
    .date-selector .christmas-img {
        top: 6px;
        left: 12px;
    }
    
    .date-selector .christmas-img img {
        width: 13px;
        height: 13px;
    }  
}

/* --------- END NAVIDAD --------- */


/* --------------------------------------------------- */
/* ---------------- END DATE SELECTOR ---------------- */
/* --------------------------------------------------- */


/* --------------------------------------------------- */
/* ---------------- HORIZONTAL MENUS ----------------- */
/* --------------------------------------------------- */



.horizontal-menus-container {
    max-width: 76.6vw;
    width: 100%;
    margin: 0 auto;
    margin-top: 3.1vw;

}

.horizontal-buttons--menus {
    position: relative;
    border-radius: 2.1vw;
    margin: 0 auto;
    width: fit-content;
    max-width: 100%;
}

.horizontal-buttons--menus::-webkit-scrollbar {
    background-color: unset;
}

.horizontal-buttons--menus .horizontal-buttons-container {
    overflow: hidden;
    border-radius: 2.1vw;
    /* width: fit-content; */
    margin: 0 auto;
    /* background-color: white; */
}

.horizontal-buttons--menus .horizontal-buttons-container.fit-content {
    width: fit-content !important;
    position: relative;
}

.horizontal-buttons--menus .horizontal-buttons {
    position: relative;
    border-radius: 2.1vw;
    width: fit-content;
    background-color: white;
}

.horizontal-buttons--menus .horizontal-buttons .menu-active {
    position: absolute;
    width: 15.35vw;
    height: 100%;
    background-color: #ECECEC;
    border-radius: 2.1vw;
    transition: 0.5s;
    left: 0;
}

.horizontal-buttons--menus .horizontal-buttons .swiper-slide {
    /* width: fit-content; */
    height: unset;
}

@media (min-width: 992px) {
    .horizontal-buttons--menus .horizontal-buttons .swiper-slide {
        width: fit-content !important;
    }
}

/* .horizontal-buttons--menus .horizontal-buttons .swiper-slide:first-child {
    border-radius: 16px 16px 0 0;
}

.horizontal-buttons--menus .horizontal-buttons .swiper-slide:first-child {
    border-radius: 0 0 16px 16px;
} */

.horizontal-buttons--menus .swiper-button-prev,
.horizontal-buttons--menus .swiper-button-next {
    background: none;
    top: 0;
    bottom: 0;
    height: fit-content;
    padding: 1vw;
    margin: auto 0;
}

.horizontal-buttons--menus .swiper-button-prev::after,
.horizontal-buttons--menus .swiper-button-next::after {
    font-size: 1.4vw;
}

.horizontal-buttons--menus button {
    /* width: 100%; */
    width: 15.3vw;
    height: 100%;
    padding: 1.25vw 0.8vw;
    border-radius: 2.1vw;
    position: relative;
    font-size: 0.75vw;
    font-weight: 600;
    color: unset !important;
    background-color: unset !important;
    border: 0;
    border-color: unset !important;
    box-shadow: unset !important;
    align-items: stretch;
}

.horizontal-buttons--menus button span {
    white-space: nowrap;
}

.horizontal-buttons--menus button .menu-title {
    font-size: 0.95vw;
}

.horizontal-buttons--menus button .menu-price {
    font-size: 0.85vw;
    font-weight: 400;
}

.horizontal-buttons--menus button.active {
    background-color: #ECECEC !important;
}

@media (max-width: 991px) {
    .horizontal-menus-container{
        max-width: unset;
        margin-top: 24px;
        padding: 0 16px;
    }

    .horizontal-buttons--menus {
        border-radius: 16px;
        background-color: white;
        width: unset;
        padding: 8px 0;
    }

    .horizontal-buttons--menus .horizontal-buttons-container {
        /* padding: 8px 0; */
        margin: 0 26px;
        border-radius: 16px;
        width: unset;
    }

    .horizontal-buttons--menus .horizontal-buttons-container.fit-content {
        width: unset !important;
        position: inherit;
    }

    .horizontal-buttons--menus .horizontal-buttons {
        border-radius: 16px;
    }

    .horizontal-buttons--menus .swiper-button-prev,
    .horizontal-buttons--menus .swiper-button-next {
        padding: 1rem 0.7rem;
        margin: unset;
        margin-top: 0;
        height: 100%;
        background-color: white;
        border-radius: 16px;
    }

    .horizontal-buttons--menus .swiper-button-prev::after,
    .horizontal-buttons--menus .swiper-button-next::after {
        font-size: 27px;
    }

    .horizontal-buttons--menus .horizontal-buttons .swiper-slide {
        width: unset;
        min-width: 99px;
    }

    .horizontal-buttons--menus button {
        width: 100%;
        padding: 8px;
        font-size: 14px;
        display: flex;
        flex-direction: column;
        border-radius: 16px;
    }

    .horizontal-buttons--menus button span {
        width: 100%;
        text-align: center;
    }

    .horizontal-buttons--menus button .menu-title {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 4px;
    }
    
    .horizontal-buttons--menus button .menu-price {
        font-size: 14px;
        line-height: 22px;
        font-weight: 600;
    }
}



/* -------------- ESPECIAL BOTON MENU NAVIDAD -------------- */

.horizontal-buttons--menus button.btn-navidad {
    width: 15.35vw;
    color: white !important;
    background-color: #830C06 !important;
}

.horizontal-buttons--menus button.btn-navidad .menu-title {
    margin-bottom: unset;
}

@media (max-width:991px) {
    .horizontal-buttons--menus.navidad {
        background-color: unset !important;
        width: fit-content;
    }
    .horizontal-buttons--menus button.btn-navidad {
        background-color: #830C06 !important;
        width: unset;
        padding: 8px 12px;
    }
}

/* ------------ END ESPECIAL BOTON MENU NAVIDAD ------------ */




/* --------------------------------------------------- */
/* -------------- END HORIZONTAL MENUS --------------- */
/* --------------------------------------------------- */


/* --------------------------------------------------- */
/* ------- HORIZONTAL STEPS/OPTIONS CONTAINER -------- */
/* --------------------------------------------------- */


.horizontal-buttons--steps-options {
    width: 100%;
    /* margin: 0 11.71%; */
    /* max-width: 100%%; */
    /* margin-top: 60px; */
    padding: 0 11.71%;
}

.step-options-left, .step-options-right {
    flex: 1;
}

@media (max-width: 991px) {
    .horizontal-buttons--steps-options {
        margin: unset;
        padding: 16px;
        position: fixed;
        bottom: 0;
        z-index: 2;
        background-color: white;
        border-top: 1px solid #EDEDED;
        flex-direction: column-reverse;
    }
}


/* --------------------------------------------------- */
/* ----- END HORIZONTAL STEPS/OPTIONS CONTAINER ------ */
/* --------------------------------------------------- */



/* --------------------------------------------------- */
/* --------------- HORIZONTAL STEPPER ---------------- */
/* --------------------------------------------------- */

.horizontal-buttons--steps {
    width: 45.6vw;
    margin-top: 3.1vw;
    padding-bottom: 1.5vw;
}

.horizontal-buttons--steps .stepper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: auto;
}

.horizontal-buttons--steps .stepper-item {
    position: relative;
    display: flex;
    flex-direction: row;
    /* flex: 1; */
    align-items: center;
}

.horizontal-buttons--steps .stepper-line {
    flex: 1;
    background-color: black;
    height: 1px;
    margin: auto 0;
}

.horizontal-buttons--steps .stepper-line.unreachable {
    background-color: #C8C8C8;
}

.horizontal-buttons--steps .stepper-item:not(:first-child):before {
    position: relative;
    flex: 1;
    height: 1px;
    margin: 0.5rem 0 0 0;
    content: "";
}

.horizontal-buttons--steps .stepper-item:not(:last-child):after {
    position: relative;
    flex: 1;
    height: 1px;
    margin: 0.5rem 0 0 0;
    content: "";
}

.horizontal-buttons--steps .stepper-item.unreachable:not(:first-child):before,
.horizontal-buttons--steps .stepper-item.unreachable:not(:last-child):after {
    background-image: linear-gradient(to right, black , #D9D9D9, #D9D9D9);
    margin-top: 0;
}

.horizontal-buttons--steps .stepper-item:not(:first-child):before,
.horizontal-buttons--steps .stepper-item:not(:last-child):after {
    background-color: black !important;
    margin-top: 0;
}



.horizontal-buttons--steps .stepper-item:not(.unreachable) .stepper-item-button:hover {
    cursor: pointer;
}

.horizontal-buttons--steps .stepper-item-button-icon {
    display: flex;
    border: 0.35vw solid black;
    width: 1.05vw;
    height: 1.05vw;
    border-radius: 50%;
    align-items: center;
    margin: 0 0.4vw;
}



.horizontal-buttons--steps .stepper-item .stepper-item-button-icon .step-index {
    width: 100%;
    text-align: center;
    display: none;
    color: white;
}

.horizontal-buttons--steps .stepper-item-button-icon .mdi-check {
    font-size: 0.75vw;
    margin-top: 0.1vw;
    margin-left: -0.18vw;
    color: white;
}

.horizontal-buttons--steps .stepper-item.unreachable .stepper-item-button-icon .mdi-check {
    display: none;
}

/* .horizontal-buttons--steps .stepper-item-button-icon span {
    display: none;
} */

.horizontal-buttons--steps .stepper-item.active .stepper-item-button-icon,
.horizontal-buttons--steps .stepper-item.completed .stepper-item-button-icon {
    background-color: black;
}


/* .horizontal-buttons--steps .stepper-item.unreachable .stepper-item-button-icon {
    border-color: #D9D9D9;
} */

/* .horizontal-buttons--steps .stepper-item-button-text {
    color: black;
    font-size: 16px;
} */

.horizontal-buttons--steps .stepper-item.unreachable .stepper-item-button-icon {
    border: 0.35vw solid #C8C8C8;
}

.horizontal-buttons--steps .stepper-item.unreachable .stepper-item-button-text {
    color: #C8C8C8;
}

.horizontal-buttons--steps .stepper-item .stepper-item-button-text {
    position: absolute;
    top: 1.45vw;
    text-align: center;
    left: 50%;
    transform: translate(-50%);
    margin-right: -50px;
    font-size: 0.85vw;
    width: 10vw;
}

.horizontal-buttons--steps .stepper-item:first-child .stepper-item-button-text {
    /* left: -7px; */
}

.horizontal-buttons--steps .stepper-item:not(:first-child):not(:last-child) .stepper-item-button-text {
    /* left: 0; */
    /* right: 0; */
}

.horizontal-buttons--steps .stepper-item:last-child .stepper-item-button-text {
    /* right: -17px; */
}

@media (max-width: 991px) {
    /* PLUGIN Zendesk icono */
    iframe#launcher,
    /* ETA Drivin */
    :not(#header) .estimated-time-eta {
        margin-bottom: 76px !important;
    }

    :not(#header) .estimated-time-eta {
        right: 10px;
    }

    .horizontal-buttons--steps {
        margin-top: 0;
        width: 100%;
        padding-bottom: 23px;
    }

    .horizontal-buttons--steps .stepper-item-button-icon {
        width: 20px;
        height: 20px;
        border: 6px solid black;
        margin: 0 12px;
        background-color: black;
    }

    .horizontal-buttons--steps .stepper-item.stepper-item.unreachable .stepper-item-button-icon {
        border: 1px solid #C8C8C8;
        background-color: white;
    }

    .horizontal-buttons--steps .stepper-item-button-icon .step-index {
        display: unset !important;
    }

    .horizontal-buttons--steps .stepper-item.stepper-item.unreachable .stepper-item-button-icon .step-index {
        color: #C8C8C8;
    }

    .horizontal-buttons--steps .stepper-item-button-icon .mdi-check {
        font-size: 14px;
        margin-top: 1px;
        margin-left: -3.5px;
    }

    .horizontal-buttons--steps .stepper-item.unreachable .stepper-item-button-icon {
        color: #C8C8C8;
        border: 2px solid #C8C8C8;
        background-color: #C8C8C8;
    }

    .horizontal-buttons--steps .stepper-item .stepper-item-button-text {
        font-size: 11px;
        top: 26px;
        width: unset;
    }
}

/* --------------------------------------------------- */
/* ------------- END HORIZONTAL STEPPER -------------- */
/* --------------------------------------------------- */

/* --------------------------------------------------- */
/* ---------- NEXT STEP/ADD NOTHING BUTTON ----------- */
/* --------------------------------------------------- */


.horizontal-buttons--steps-options .step-options-right {
    position: relative;
    margin-top: 3.1vw;
    text-align: right;
}

.horizontal-buttons--steps-options .step-options-right button {
    font-size: 0.95vw;
    padding: 0.8vw 1.7vw;
    border-radius: 50px;
}

.horizontal-buttons--steps-options .step-options-right .btn-container {
    transition: 0.5s;
    top: 0;
}

.horizontal-buttons--steps-options .step-options-right .btn-container.sticky-button {
    position: fixed;
    right: 11.71vw;
    top: calc(122px + 1.25vw);
    z-index: 1;
}

@media (max-width: 991px) {
    .horizontal-buttons--steps-options .step-options-right {
        margin-top: 0;
        text-align: center;
    }
    
    .horizontal-buttons--steps-options .step-options-right button {
        font-size: 16px;
        padding: 12px 24px;
        border-radius: 50px;
        margin-bottom: 16px;
    }

    .horizontal-buttons--steps-options .step-options-right button.btn-additionals {
        color: black;
        background-color: #F7F7F7;
        border: 1px solid #EDEDED;
    }

    .horizontal-buttons--steps-options .step-options-right .btn-container {
        position: initial !important;
        transition: 0;
        top: 0;
    }
}


/* --------------------------------------------------- */
/* -------- END NEXT STEP/ADD NOTHING BUTTON --------- */
/* --------------------------------------------------- */



/* --------------------------------------------------- */
/* --------------- HORIZONTAL OPTIONS ---------------- */
/* --------------------------------------------------- */

.horizontal-options {
    width: 100%;
    /* margin-top: 1.7vw; */
    /* padding: 0 11.71%; */
    justify-content: end;
    display: flex;
    /* gap: 16px; */
}

.horizontal-options>div {
    position: relative;
}

.horizontal-options .label {
    width: 100%;
    position: absolute;
    top: 111%;
    left: 0;
    text-align: center;
    font-size: 0.6vw;
    opacity: 30%;
    line-height: 0.6vw;
}

.horizontal-options button {
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    /* background-color: white; */
    /* color: black; */
}

.horizontal-options button.active {
    background-color: black !important;
    color: white !important;
}

@media (max-width: 991px) {
    .horizontal-options {
        justify-content: center;
    }

    .horizontal-options button {
        margin-bottom: 25px !important;
    }

    .horizontal-options .label {
        font-size: 10px;
        line-height: 10px;
        margin-top: 5px;
        top: 64%;
    }
}



/* @media (max-width:575px) {
    .horizontal-options {
        margin-right: auto;
    }

    .horizontal-options .label {
        width: 100%;
        left: 0;
        text-align: center;
    }
} */



/* --------------------------------------------------- */
/* ------------- END HORIZONTAL OPTIONS -------------- */
/* --------------------------------------------------- */



/* --------------------------------------------------- */
/* ------------------ FEATURES LIST ------------------ */
/* --------------------------------------------------- */



.features-list {
    display: none !important;
}



/* --------------------------------------------------- */
/* ---------------- END FEATURES LIST ---------------- */
/* --------------------------------------------------- */


/* --------------------------------------------------- */
/* ---------------- HORIZONTAL FILTER ---------------- */
/* --------------------------------------------------- */

.horizontal-filter {
    margin-bottom: 2.1vw;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
}

.horizontal-filter-container {
    display: flex;
    gap: 0.8vw;
    width: fit-content;
    margin: 0 auto;
}

.horizontal-filter button {
    padding: 0.4vw 0.8vw;
    font-size: 0.85vw;
    line-height: 1.3vw;
    border-radius: 1.6vw;
    border: 1px solid #ECECEC;
    border-radius: 1.6vw;
    background-color: white;
}

.horizontal-filter button.active {
    background-color: #ECECEC;
}

@media (max-width: 991px) {
    .horizontal-filter {
        margin-bottom: 32px;
    }

    .horizontal-filter-container {
        gap: 8x;
    }

    .horizontal-filter button {
        padding: 8px 16px;
        font-size: 16px;
        line-height: 27px;
        border-radius: 32px;
    }
}


/* --------------------------------------------------- */
/* -------------- END HORIZONTAL FILTER -------------- */
/* --------------------------------------------------- */



/* --------------------------------------------------- */
/* ---------------- HORIZONTAL SORTER ---------------- */
/* --------------------------------------------------- */

.horizontal-sorter {
    margin-bottom: 1.5vw;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8vw;
}

.horizontal-sorter span {
    font-size: 0.85vw;
    line-height: 1.2;
    font-weight: 500;
}

.horizontal-sorter button {
    min-width: 6.67vw;
    padding: 0.4vw 0.8vw;
    font-size: 0.85vw;
    line-height: 1.2;
    font-weight: 500;
    border-radius: 1.6vw;
    border: 1px solid #14181C;
    border-radius: 1.6vw;
    background-color: white;
}



.horizontal-sorter button.active {
    background-color: #ECECEC;
}

.horizontal-sorter .sorter-more.show > .dropdown-toggle,
.horizontal-sorter .sorter-more .dropdown-toggle:focus {
    color: inherit !important;
    background-color: inherit !important;
    border-color: inherit!;
}

.sorter-more-list {
    /* width: 8.3vw; */
    margin-top: 10px !important;
    padding: 10px 0 !important;
    border-radius: 16px;
}

.sorter-more .sorter-more-item {
    padding: 0.6vw;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    border-bottom: unset !important;
}

.sorter-more .sorter-more-item.active {
    background-color: unset;
}

.sorter-more .sorter-item-icon {
    width: 0.9vw;
    height: 0.9vw;
    border: 1px solid #ECECEC;
    border-radius: 0.3vw;
    margin-right: 0.5vw;
    text-align: center;
    transition: .5s;
}

.sorter-more .sorter-more-item.active .sorter-item-icon {
    background-color: black;
    border: 1px solid black;
}

.sorter-more .sorter-item-icon i {
    margin-bottom: -0.3vw;
    color: white;
}

@media (max-width: 991px) {
    .horizontal-sorter {
        margin-bottom: 20px;
        gap: 8px;
    }

    .horizontal-sorter span {
        font-size: 12px;
        line-height: 18px;
    }

    .horizontal-sorter button {
        min-width: 94px;
        padding: 4px 12px;
        font-size: 12px;
        line-height: 18px;
        border-radius: 32px;
    }

    .sorter-more-list {
        width: 160px;
    }

    .sorter-more .sorter-more-item {
        padding: 10px;
    }

    .sorter-more .sorter-item-icon {
        width: 17px;
        height: 17px;
        border-radius: 5px;
        margin-right: 10px;
    }

    .sorter-more .sorter-item-icon i {
        margin-bottom: -5px;
    }
}

/* --------------------------------------------------- */
/* -------------- END HORIZONTAL SORTER -------------- */
/* --------------------------------------------------- */



/* --------------------------------------------------- */
/* ----------------- PRODUCTS LIST ------------------- */
/* --------------------------------------------------- */

section {
    width: 100%;
}

#product-pack {
    margin: auto;
    margin-top: 3.1vw;
    padding: 0 11.71%;
}

#product-pack #products {
    max-width: 100%;
}

/* #product-pack .product-packs-row {

} */

#product-pack .product-row-item {
    padding: 0 0.75vw;
    margin-bottom: 1.5vw;
}

@media (max-width:767px) {
    #product-pack .product-row-item {
        padding: 0 7.5px;
    }
}


#product-pack .product-card {
    position: relative;
    border-radius: 0.85vw;
    border: 1px solid #EDEDED;
    background-color: white;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
}

#product-pack .product-card.selected {
    /* border: 2px solid black; */
    box-shadow: 0 0 0 2px black;
}

#product-pack .product-card .product-info-container {
    position: absolute;
    width: 100%;
    padding: 0.8vw;
    display: flex;
    justify-content: space-between;
}

#product-pack .product-card .product-card-modal {
    padding: 0.4vw 0.8vw;
    color: #494949;
    font-size: 0.75vw;
    font-weight: 400;
    font-style: italic;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

#product-pack .product-card .product-card-modal i.fa {
    font-size: 1vw;
}

#product-pack .product-info-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#product-pack .product-info-text span {
    background-color: #EDEDED;
    border: 1px solid #EDEDED;
    border-radius: 8px;
    padding: 0.1vw 0.4vw;
    font-size: 0.75vw;
    font-weight: 400;
    line-height: 1.1vw;
    display: block;
    margin-bottom: 0.3vw;
}

/* #product-pack .product-card .product-info-left {

} */

#product-pack .product-card .product-info-right {
    background-color: white;
    border: 1px solid black;
}

#product-pack .product-card-header {
    /* height: 10.27vw;  */
    display: flex;
    padding: 0;
    border-radius: 16px 16px 0 0;
    background-color: unset;
    border-bottom: unset;
}

#product-pack .product-card-header .product-image {
    width: 100%;
    text-align: center;
    border-radius: 16px 16px 0 0;
    cursor: pointer;
    overflow: hidden;
}

#product-pack .product-card-header .product-image img {
    height: 12.5vw;
    margin-top: -1vw;
    margin-bottom: -1.24vw;
}

#product-pack .product-card-body {
    padding: 0.8vw 0.8vw 0.4vw 0.8vw;
    display: flex;
    flex-direction: column;
}

#product-pack .product-card-title {
    height: 3.1vw;
    overflow: hidden;
    font-size: 0.85vw;
    font-weight: 600;
    line-height: 1vw;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    cursor: pointer;
    margin-bottom: 0.8vw;
}

/* #product-pack .product-card-subtitle {
    height: 2.8vw;
    overflow: hidden;
    font-size: 0.85vw;
    font-weight: 400;
    line-height: 1.4vw;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0.8vw;
} */

#product-pack .product-card-subtitle {
    font-weight: 400;
}

#product-pack .product-card-subtitle p,
#productModal .product-modal-title-sub p {
    margin-bottom: unset;
    display: inline;
}

#product-pack .product-card-body .product-features {
    margin-top: 0;
}

#product-pack .product-card-body .features-list {
    display: unset !important;
}

#product-pack .product-card-body .product-modal-feature-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3vw;
    align-items: flex-start;
}

#product-pack .product-card-body .product-modal-feature-value {
    background-color: #FAFAFA;
    border: 0.5px solid #8B8B8B;
    border-radius: 8px;
    padding: 0.1vw 0.4vw;
    font-size: 0.65vw;
    font-weight: 400;
    line-height: 1vw;
}

#product-pack .product-card-body .product-modal-feature-title {
    display: none;
}

#product-pack .product-card-body .feature-list-item-value-icon {
    width: 0.85vw;
    height: 0.85vw;
    background-size: cover;
    background-position: center;
    transform: scale(1.5);
    margin-top: -2px;
    margin-right: 3px;
}

#product-pack .product-card-body .feature-list-item-value-icon img {
    display: none !important;
}

#product-pack .product-card-body .icon-feature-6-value-67 {
    background-image: url('/upload_canteen/canteen_feature_cf/gluten_cf.png');
}

#product-pack .product-card-body .icon-feature-6-value-68 {
    background-image: url('/upload_canteen/canteen_feature_cf/lactose_cf.png');
}

#product-pack .product-card-body .icon-feature-6-value-69 {
    background-image: url('/upload_canteen/canteen_feature_cf/vegan_cf.png');
}

#product-pack .product-card-body .icon-feature-6-value-70 {
    background-image: url('/upload_canteen/canteen_feature_cf/vegetarian_cf.png');
}

#product-pack .product-card-body .icon-feature-6-value-71 {
    background-image: url('/upload_canteen/canteen_feature_cf/frutossecos_cf.png');
}

#product-pack .product-card-body .icon-feature-6-value-86 {
    background-image: url('/upload_canteen/canteen_feature_cf/gluten_cf.png');
}

#product-pack .product-card-footer {
    padding: 0.4vw 0.8vw 0.8vw 0.8vw;
    background-color: unset;
    border-top: none;
}

#product-pack .product-card-footer .product-price-and-shipping {
    display: flex;
    font-size: 0.85vw;
    font-weight: 600;
}

#product-pack .product-card-footer .product-supplement {
    display: flex;
    padding: 0 0.4vw;
    margin: 0.2vw 0;
    align-items: center;
    justify-content: start;
}

#product-pack .product-card-footer span.price {
    padding: 0 0.4vw;
}

#product-pack .product-card-footer .product-supplement {
    border: 1px solid black;
    border-radius: 47px;
}

#product-pack .product-card-footer .product-list-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


#product-pack .product-card-footer .display-add-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.4vw
}

#product-pack .product-card-footer .display-add-item>*,
#product-pack .product-card-footer .product-list-actions>* {
    flex: 1;
}

#product-pack .product-card-footer .display-add-item:not(:last-child) {
    margin-bottom: 0.4vw;
}

#product-pack .product-card-footer .product-attribute-carta  {
    text-align: center;
}

#product-pack .product-card-footer .attribute-name {
    font-size: 0.85vw;
    /* font-weight: 600; */
}

#product-pack .product-card-footer .display-select-item,
#product-pack .product-card-footer .product-quantity {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#product-pack .product-card-footer .product-button-select,
#product-pack .product-card-footer .product-button-selected {
    cursor: pointer;
    width: 1.9vw;
    height: 1.9vw;
    border-radius: 50%;
    background-color: black;
    border: 1px solid black;
}

#product-pack .product-card-footer .product-button-select span,
#product-pack .product-card-footer .product-button-selected span {
    font-size: 2.2vw;
}

#product-pack .product-card-footer .product-button-select svg,
#product-pack .product-card-footer .product-button-selected svg {
    width: 1.05vw;
    height: 1.05vw;
}

#product-pack .product-card-footer .product-button-select.disabled {
    color: grey;
    background-color: grey;
    cursor: default;
    border: 1px solid grey;
}

#product-pack .product-card-footer .a-la-carte-number {
    font-size: 1.3vw;
    font-weight: 600;
    flex: 1;
    text-align: center;
}

#product-pack .product-card-footer .product-button-selected,
#product-pack .product-card-footer .a-la-carte-number {
    opacity: 1;
    transition: 0.5s;
}

#product-pack .product-card-footer .out-of-stock {
    text-align: center;
}

/* #product-pack .product-card-footer .product-button-select .fa-minus {
    font-size: 20px;
} */

#product-pack .low-stock {
    text-align: center;
    font-size: 0.75vw;
    padding-bottom: 0.4vw;
    margin-block-start: -12px;
}

#product-pack .weekend_no_products {
    text-align: center;
}

#product-pack .weekend_no_products h2 {
    font-size: 1.6vw;
}

#product-pack .weekend_no_products h3 {
    font-size: 0.95vw;
}

#product-pack .weekend_no_products button {
    border-radius: 50px;
    font-size: 0.95vw;
    font-weight: 700;
    padding: 0.85vw 1.65vw;
    color: white;
    background-color: black;
}

@media (max-width: 991px) {
    #product-pack {
        margin-top: 24px;
        padding: 0 16px;
    }

    #product-pack .product-packs-row {
        margin: 0 -8px;
    }

    #product-pack .product-row-item {
        padding: 0 8px;
        margin-bottom: 16px;
    }

    #product-pack .product-card {
        border-radius: 16px;
    }

    #product-pack .product-card .product-info-container {
        padding: 16px;
    }

    #product-pack .product-card .product-card-modal {
        padding: 4px 10px;
        font-size: 14px;
    }

    #product-pack .product-card .product-card-modal i.fa {
        font-size: 20px;
    }
    
    #product-pack .product-info-text span {
        background-color: #EDEDED;
        border-radius: 8px;
        padding: 2px 8px;
        font-size: 10px;
        font-weight: 400;
        line-height: 1.5;
        margin-bottom: 4px;
    }

    /* #product-pack .product-card-header { 
        max-height: 118px; 
        height: 100%; 
    }  */

    #product-pack .product-card-header .product-image img {
        max-height: 138px;
        height: auto;
        margin-top: -5px;
        margin-bottom: -15px;
    }

    #product-pack .product-card-body {
        padding: 21px 10px 3px 10px;
    }

    #product-pack .product-card-body .product-modal-feature-values {
        flex-wrap: nowrap;
        overflow-x: scroll;
        white-space: nowrap;
        gap: 6px;
    }

    #product-pack .product-card-body .product-modal-feature-value {
        font-size: 12px;
        line-height: 19px;
        padding: 2px 6px;
    }

    #product-pack .product-card-title {
        height: fit-content;
        max-height: 56px;
        font-size: 12px;
        line-height: 17px;
        margin-bottom: 8px;
        flex: 1;
    }

    /* #product-pack .product-card-subtitle {
        height: 56px;
        font-size: 14px;
        line-height: 18px;
        margin-top: 4px;
        -webkit-line-clamp: 3;
    } */

    #product-pack .product-card-body .feature-list-item-value-icon {
        width: 16px;
        height: 16px;
    }

    #product-pack .product-card-footer {
        padding: 8px 10px 10px 10px;
    }

    #product-pack .product-card-footer .product-supplement {
        font-size: 12px;
        line-height: 20px;
        padding: 4px 8px;
        margin: 0;
        height: fit-content;
        margin: auto 0;
    }

    #product-pack .product-card-footer .product-price-and-shipping,
    #product-pack .product-card-footer .attribute-name {
        font-size: 12px;
        line-height: 20px;
    }

    #product-pack .product-card-footer span.price {
        padding: 2px 4px;
    }

    /* #product-pack .product-card-footer .product-button-select,
    #product-pack .product-card-footer .product-button-selected {
        width: 36px;
        height: 36px;
    } */

    #product-pack .product-card-footer .product-button-select,
    #product-pack .product-card-footer .product-button-selected {
        width: 36px;
        height: 36px;
    }

    #product-pack .product-card-footer .product-button-select svg,
    #product-pack .product-card-footer .product-button-selected svg {
        width: 20px;
        height: 20px;
    }

    #product-pack .product-card-footer .display-add-item {
        gap: 8px;
    }

    #product-pack .product-card-footer .display-add-item:not(:last-child) {
        margin-bottom: 8px;
    }

    #product-pack .product-card-footer .product-button-select span,
    #product-pack .product-card-footer .product-button-selected span {
        font-size: 38px;
    }

    #product-pack .product-card-footer .a-la-carte-number {
        font-size: 21px;
    }

    #product-pack .low-stock {
        font-size: 14px;
        padding-bottom: 8px;
    }

    #product-pack .weekend_no_products h2 {
        font-size: 28px;
    }

    #product-pack .weekend_no_products h3 {
        font-size: 18px;
    }
    
    #product-pack .weekend_no_products button {
        border-radius: 50px;
        font-size: 18px;
        font-weight: 700;
        padding: 16px 32px;
    }
}

/* --------------------------------------------------- */
/* --------------- END PRODUCTS LIST ----------------- */
/* --------------------------------------------------- */


/* --------------------------------------------------- */
/* ----------------- PRODUCT MODAL ------------------- */
/* --------------------------------------------------- */

#productModal .modal-dialog {
    position: relative;
    max-width: 1100px;
}

#productModal .modal-content {
    padding: 1.2vw;
    box-shadow: unset;
    border: 0.25vw solid #E7EAEC;
    border-radius: 0.85vw;
}

#productModal .product-modal-header {
    border-bottom: none;
    padding: 2rem;
}

#productModal .product-modal-header .close {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    z-index: 1;
}

#productModal .product-modal-body {
    padding: 0;
}

#productModal .product-image {
    overflow: hidden;
}

#productModal .product-image img {
    width: 340px !important;
}

#productModal .product-modal-title {
    font-family: "Cormorant Garamond", serifd !important;
    font-size: 30px !important;
    /* font-weight: 700; */
    font-stretch: normal;
    font-style: normal;
    line-height: 1.23;
    letter-spacing: normal;
    text-align: left;
    color: #14171b;
}

#productModal .product-modal-subtitle {
    font-family: "Cormorant Garamond", serifd;
    font-size: 16px;
    font-weight: 700;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: left;
    color: #707070;
}

#productModal .product-modal-description-short {
    /* font-family: "Open Sans", sans-serif; */
    font-size: 14px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: normal;
    text-align: left;
    color: #14171b;
    margin-block-start: 8px;
}

#productModal .product-modal-block .block-container {
    height: 100%;
    padding: 16px;
    background-color: #F9F9F9;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    color: #494949;
}

#productModal .instrucciones-title,
#productModal .nutritional_title,
#productModal .ingredientes-title,
#productModal .review-title {
    color: #14171b;
    font-weight: 700;
    font-size: 14px;
    /* font-family: "Open Sans", sans-serif; */
    margin-bottom: 15px;
}

#productModal .nutritional_title {
    display: flex;
    justify-content: space-between;
}

#productModal .product-modal-instrucciones {
    margin-top: 20px;
}

#productModal .valores_nutricionales {
    display: flex;
    flex-wrap: wrap;
}

#productModal .valores_nutricionales .nutritional {
    width: 33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#productModal .valores_nutricionales .valor {
    width: 60px;
    border-radius: 50%;
    border: 1px solid #000;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

#productModal .valores_nutricionales .nutriTitle {
    font-size: 12px;
    text-align: center;
    height: 35px;
    margin-top: 5px;
}

#productModal .product-modal-attributes {
    display: none;
}

/* #productModal .product-modal-features {
    margin-block-start: 30px;
} */

#productModal .features-list {
    display: block !important;
}

#productModal .product-modal-feature-title {
    font-family: "Cormorant Garamond", serifd;
    font-size: 20px;
    font-weight: 700;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.08;
    letter-spacing: normal;
    color: #14171b;
}

#productModal .product-modal-feature-values {
    display: flex;
    gap: 18px;
    margin: 0;
    flex-wrap: wrap;
}

#productModal .product-modal-feature-values .product-modal-feature-value .product-modal-feature-value-icon {
    border: 1px solid #14171b;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    color: transparent;
    background-size: cover;
    background-position: center;
}

#productModal .product-modal-feature-value-text {
    display: none;
    font-size: 0.65vw;
}

/* #productModal .product-modal-nutritions .nutritional-item {
    padding-top: 3px;
    padding-bottom: 3px;
} */

#productModal .product-modal-nutritions .nutrition-label {
    white-space: nowrap;
}

/* .icon-feature-1-value-1 {
    background-image: url(/themes/at_manor/assets/img/alergenos/Gluten.jpg)
}

.icon-feature-1-value-2 {
    background-image: url(/themes/at_manor/assets/img/alergenos/Egg.jpg)
}

.icon-feature-1-value-3,
.icon-feature-1-value-82 {
    background-image: url(/themes/at_manor/assets/img/alergenos/Dairy.jpg)
}

.icon-feature-1-value-4 {
    background-image: url(/themes/at_manor/assets/img/alergenos/Nuts.jpg)
}

.icon-feature-1-value-5 {
    background-image: url(/themes/at_manor/assets/img/alergenos/Soya.jpg)
}

.icon-feature-1-value-6 {
    background-image: url(/themes/at_manor/assets/img/alergenos/Shellfish.jpg)
}

.icon-feature-1-value-7 {
    background-image: url(/themes/at_manor/assets/img/alergenos/Mustard.jpg)
}

.icon-feature-1-value-8,
.icon-feature-1-value-9 {
    background-image: url(/themes/at_manor/assets/img/alergenos/Peanuts.jpg)
}

.icon-feature-1-value-10 {
    background-image: url(/themes/at_manor/assets/img/alergenos/Fish.jpg)
}

.icon-feature-1-value-11 {
    background-image: url(/themes/at_manor/assets/img/alergenos/Shellfish.jpg)
}

.icon-feature-1-value-12 {
    background-image: url(/themes/at_manor/assets/img/alergenos/Sesame.jpg)
}

.icon-feature-1-value-33 {
    background-image: url(/themes/at_manor/assets/img/alergenos/Celery.jpg)
}

.icon-feature-1-value-60 {
    background-image: url(/themes/at_manor/assets/img/alergenos/Sulfites.jpg)
} */

#productModal .product-modal-footer {
    /* margin-top: 30px; */
    margin-bottom: 15px;
}

#product-pack .product-modal-footer .product-supplement {
    display: flex;
    padding: 0 0.4vw;
    margin: 0.2vw 0;
    align-items: center;
    justify-content: start;
    border: 1px solid black;
    border-radius: 47px;
}

#productModal .product-modal-block {
    margin: 50px -1vw 30px;
}

#productModal .product-modal-block > div {
    padding: 8px;
}

#productModal .product-buttons {
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: auto;
    height: 100%;
}

#productModal .product-buttons .price,
#productModal .product-buttons .attribute-name {
    font-size: 18px;
}

#productModal .display-add-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

/* #productModal .display-add-item>*, */
#productModal .product-list-actions>* {
    flex: 1;
}


#productModal .product-buttons .display-select-item,
#productModal .product-buttons .product-quantity {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#productModal .product-buttons .product-button-select,
#productModal .product-buttons .product-button-selected {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: black;
    border: 1px solid black;
    cursor: pointer;
}
#productModal .product-buttons .product-button-select svg,
#productModal .product-buttons .product-button-selected svg {
    width: 20px;
    height: 20px;
}

#productModal .product-buttons .a-la-carte-number {
    font-size: 20px;
    width: 30px;
    text-align: center;
}

#productModal .product-buttons .product-button-selected,
#productModal .product-buttons .a-la-carte-number {
    opacity: 1;
    transition: 0.5s;
}

#productModal .product-buttons .product-button-select.disabled {
    color: grey;
    background-color: grey;
    border: 1px solid grey;
    cursor: default;
}

#productModal .product-buttons span.material-icons {
    font-size: 40px;
}



#productModal .product-modal-body .trazas {
    /* font-family: "Open Sans", sans-serif; */
    font-size: 12px;
    font-weight: 700;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #14171b;
}

@media (max-width:575px) {
    #productModal .product-modal-body .trazas {
        margin-top: 25px;
    }
}

@media (max-width:767px) {
    #productModal .product-image {
        width: 50%;
        margin: 0 auto;
    }
}

@media (max-width:991px) {
    #productModal .modal-content {
        padding-left: 15px !important;
        padding-right: 15px !important;
        padding-bottom: 25px;
        border: 4px solid #E7EAEC;
        border-radius: 16px;

    }

    #productModal .product-image img {
        width: 100% !important;
        /* margin-top: -25px; */
    }

    /* #productModal .product-modal-header .close {
        margin-top: -15px;
        margin-right: -20px;
    } */

    #productModal .product-modal-header .close span {
        font-size: 40px;
        margin-right: 0;
    }

    #productModal .product-features {
        margin-top: -5px;
    }

    #productModal .features-list {
        gap: 15px !important;
        flex-wrap: wrap;
        justify-content: flex-start !important;
        margin-block-start: 20px !important;
        margin-block-end: 20px !important;
    }

    #productModal .product-modal-feature-values {
        justify-content: center;
    }

    #productModal .product-modal-footer {
        margin-bottom: unset;
        position: sticky;
        padding: 15px;
        bottom: 0;
        background: white;
    }

    #product-pack .product-modal-footer .product-supplement {
        font-size: 12px;
        line-height: 20px;
        padding: 4px 8px;
        margin: 0;
        height: fit-content;
        margin: auto 0;
    }

    /* #productModal .product-modal-body .trazas {
        text-align: center;
    } */

    #productModal .product-modal-feature-value-text {
        font-size: 14px;
    }
}

/* --------------------------------------------------- */
/* --------------- END PRODUCT MODAL ----------------- */
/* --------------------------------------------------- */


/* --------------------------------------------------- */
/* ------------------- SUMMARY ----------------------- */
/* --------------------------------------------------- */



#summary-page {
    max-width: 100%;
    padding: 0 11.71vw;
}


#summary-page .summary-title {
    font-size: 28px;
}

#summary-page .summary-content {
    max-width: unset;
    border: 1px solid #EDEDED;
    border-radius: 16px;
    padding: 1.25vw;
    margin: unset;
    background-color: white;
}

#summary-page .summary-content-header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4vw;
    border-bottom: 1px solid #EDEDED;
    padding-bottom: 1.25vw;
}

#summary-page .summary-content-header-left,
#summary-page .summary-content-header-right {
    padding: 0.1vw 0.4vw;
    border-radius: 8px;
    font-size: 0.75vw;
    line-height: 1vw;
}

#summary-page .summary-content-header-left {
    border: 1px solid black;
    background-color: white;
    
}

#summary-page .summary-content-header-right {
    border: 1px solid #EDEDED;
    background-color: #EDEDED;
}

#summary-page .summary-products {
    padding-top: 1.25vw;
}

#summary-page .summary-product {
    display: flex;
    /* padding: 1.25vw 0; */
}

#summary-page .summary-product {
    padding: 1.25vw 0;
    border-bottom: 1px solid #EDEDED;
}

/* #summary-page .summary-product:first-child {
    padding-top: unset;
} */

#summary-page .summary-product:first-child {
    padding-top: unset;
}

#summary-page .summary-product:last-child {
    padding-bottom: unset;
    border-bottom: unset;
}

#summary-page .summary-product-left {
    margin-right: 1.25vw;
}

#summary-page .summary-product-img {
    overflow: hidden;
}

#summary-page .summary-product-img img {
    margin-top: -0.8vw;
    margin-bottom: -0.55vw;
    width: 7.3vw;
}

#summary-page .summary-product-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.4vw;
}

#summary-page .summary-product-header {
    display: flex;
    justify-content: space-between;
}

#summary-page .summary-product-step {
    height: fit-content;
    background-color: #EDEDED;
    border-radius: 8px;
    padding: 0.1vw 0.4vw;
    font-size: 0.75vw;
    font-weight: 400;
    line-height: 1.1vw;
}

#summary-page .summary-product-edit {
    margin: auto 0;
    font-size: 1.05vw;
    width: 1.05vw;
    height: 1.05vw;
    cursor: pointer;
}

#summary-page .summary-product-body {
    flex: 1;
    padding-right: 50%;
}

#summary-page .summary-product-title {
    height: fit-content;
    overflow: hidden;
    font-size: 0.95vw;
    font-weight: 600;
    line-height: 1.2vw;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

#summary-page .summary-product-title p {
    margin-bottom: unset;
    display: inline;
}

#summary-page .summary-product-subtitle {
    /* font-size: 0.85vw;
    line-height: 1vw;
    min-height: 2.1vw; */
    font-weight: 400;
}

#summary-page .summary-product-attribute {
    font-size: 0.9vw;
    margin-top: 10px;
}

#summary-page .summary-product-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* #summary-page .summary-product-price {
    display: flex;
} */

#summary-page .summary-product-price-amount {
    font-size: 1.05vw;
    line-height: 1.9vw;
    font-weight: 600;
    /* font-family: 'Open Sans'; TEMPORAL */
    
    /* margin-right: 8px; */
}

#summary-page .summary-product-price {
    /* width: 71px; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85vw;
    font-weight: 600;
    line-height: 1.9vw;
    /* padding: 0 8px; */
}

#summary-page .summary-product-supplement {
    border: 1px solid #EDEDED;
    border-radius: 47px;
    padding: 0 0.4vw;
}

#summary-page .summary-product-quantity {
    display: flex;
    height: fit-content;
}

#summary-page .summary-product-quantity-number {
    text-align: center;
    align-self: center;
    width: 2.2vw;
    font-size: 0.85vw;
}

#summary-page .summary-product-quantity-icon {
    font-size: 1.7vw;
    width: 1.7vw;
    height: 1.7vw;
    background-color: #F7F7F7;
    border: unset;
    cursor: pointer;
}

#summary-page .summary-product-quantity-icon svg {
    width: 1.05vw;
    height: 1.05vw;
}

#summary-page .summary-product-info .summary-info-no-stock {
    font-weight: 600;
    cursor: pointer;
}

#summary-page .summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 1.25vw;
    padding-top: 1.25vw;
    font-size: 1.05vw;
    font-weight: 600;
    border-top: 1px solid #EDEDED;
    /* font-family: "Open Sans" TEMPORAL; */
}

#summary-page .summary-footer {
    margin: 1.25vw 0;

}

#summary-page .summary-two-buttons {
    gap: 1.25vw;
    justify-content: end !important;
}

#summary-page .summary-footer-button {
    font-size: 0.95vw;
    font-weight: 700;
    padding: 0.8vw 1.6vw;
    border: 1px solid black;
    border-radius: 50px;
}

#summary-page .summary-two-buttons-more .summary-footer-button {
    background-color: white;
    color: black;
}

#summary-page .summary-two-buttons-order .summary-footer-button {
    background-color: black;
    columns: white;
}

@media (max-width: 991px) {
    #summary-page {
        margin: unset;
        padding: 0 16px;
    }

    #summary-page .summary-content {
        padding: 16px;
    }

    #summary-page .summary-content-header {
        gap: 16px;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    #summary-page .summary-content-header-left,
    #summary-page .summary-content-header-right {
        font-size: 14px;
        line-height: 21px;
        padding: 2px 8px;
    }

    #summary-page .summary-products {
        padding-top: 16px;
    }

    #summary-page .summary-product {
        padding: 16px 0;
    }

    #summary-page .summary-product-left {
        margin-right: 16px;
    }

    #summary-page .summary-product-right {
        gap: 8px;
    }

    #summary-page .summary-product-img img {
        width: 100px;
    }

    #summary-page .summary-product-step {
        font-size: 14px;
        line-height: 21px;
        padding: 2px 8px;
    }

    #summary-page .summary-product-edit {
        font-size: 20px;
        width: 18px;
        height: 18px;
    }

    #summary-page .summary-product-body {
        padding-right: unset;
    }

    #summary-page .summary-product-title {
        font-size: 16px;
        line-height: 19px;
        max-width: 500px;
    }

    /* #summary-page .summary-product-subtitle {
        font-size: 16px;
        line-height: 21px;
        max-height: 40px;
    } */

    #summary-page .summary-product-attribute {
        font-size: 14px;
    }

    #summary-page .summary-product-price {
        font-size: 16px;
        line-height: 36px;
    }

    #summary-page .summary-product-supplement {
        padding: 0 8px;
    }

    #summary-page .summary-product-price-amount {
        font-size: 20px;
        line-height: 36px;
    }

    #summary-page .summary-total {
        margin-top: 16px;
        padding-top: 16px;
        font-size: 20px;
    }

    #summary-page .summary-footer {
        margin: 16px 0;
    }

    #summary-page .summary-footer-button {
        font-size: 16px;
        padding: 16px 32px;
    }

    #summary-page .summary-two-buttons {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    #summary-page .summary-product-quantity-icon {
        font-size: 32px;
        width: 32px;
        height: 32px;
    }

    #summary-page .summary-product-quantity-icon svg {
        width: 20px;
        height: 20px;
    }

    #summary-page .summary-product-quantity-number {
        width: 42px;
        font-size: 16px;
    }

    #summary-page .summary-two-buttons-order .summary-footer-button,
    #summary-page .summary-two-buttons-more .summary-footer-button {
        width: 100%;
    }
}


/* TEMPORAL */
#summary-page .summary-content-description,
#summary-page .summary-quantity {
    display: none !important;
}

#summary-page .vue-simple-drawer {
    color: black !important;
}
/* END TEMPORAL */


/* --------------------------------------------------- */
/* ----------------- END SUMMARY --------------------- */
/* --------------------------------------------------- */
