

.products__added__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--color-gray);
}
.products__added__item p {
    display: flex;
    width: 100%;
    margin: 0.5rem;
}

.container__quantity__product {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}


.sidebar__mostrador {
    height: 100%;
    min-height: calc(100vh - 200px);
}

.quantity__product {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.quantity__product__number {
    font-size: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
.drecrement__product__added,
.increment__product__added{
    background-color: #2563EB;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    line-height: 1em;
    border-radius: 50%;
    border: none;
    font-size: 2rem;
}

.head__breadcrumbs__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.head__breadcrumbs__item {
    background-color: var(--black);
    color: var(--white);
    border-radius: 0.5rem;
    text-align: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: 1px solid var(--color-black);
}


.container__items__mostrador {
    height: 100%;
    overflow-y: auto;
}

.list__items__mostrador{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: space-between;
}
.list_mostrador__item {
    color: var(--white);
    border-radius: 0.5rem;
    text-align: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: 1px solid var(--color-red);
    background-color: var(--color-red);
    width: 23%;
    margin-bottom: 1.5rem;
}

.list_mostrador__item.full__size {
    width: 100%;
    padding: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}
.list_mostrador__item.big__size {
    padding-top: 4rem;
    padding-bottom: 4rem;
}


.sidebar__mostrador .card__wrap__content {
    height: calc(100vh - 300px);
    overflow-y: auto;
}
    


.card__total__mostrador {
    background-color: var(--white);
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}

.total__mostrador__label {
    font-size: 0.875rem;
    font-weight: 500;
}

.total__mostrador__price{
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-red)
}