@import url("/css/main.css");

main {
    padding-top: 8rem;
}

.order {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 10rem;
}
.order__grup {
    border-radius: 2rem;
    background-color: #f8f8f8;
    padding: 1rem;
}

.order__grup-date {
    border-bottom: 1px solid #e9eaea;
    margin-bottom: 1rem;
}

.order__grup-date {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}
.order__item {
    display: flex;
    gap: 1rem;
}

.order__item-img {
    height: auto;
    background-color: #e7e6e6;
    width: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
}

.order__item-img img {
    object-fit: cover;
    width: 4rem;
}

.order__item-info {
    width: 100%;
}

.order__item-info-estado {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2f9565;
}
.order__item-info-estado-preparando {
    color: #deab29;
}

.order__item-info-date-delivery {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.order__item-info-description {
    font-size: 1.2rem;
    color: #676767;
}
/* Footer */

.footer-nav {
    grid-area: footer-nav;
    background-color: #f5f5f5bb;

    backdrop-filter: blur(20px);
    z-index: 200;
    position: fixed;
    width: 100%;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.footer-nav-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.3rem 1rem 0.5rem 1rem;
    border-radius: 1rem;
}

.footer-nav-icon {
    position: relative;
}

.numerito {
    position: absolute;
    background-color: #695757;
    color: #ffffff;
    width: 1.8rem;
    font-size: 1rem;
    border-radius: 1rem;
    top: -8px;
    left: 10px;
    text-align: center;
}
.footer-nav-item p {
    font-size: 1.2rem;
    color: #000;
}
.footer-nav-item svg path {
    fill: #4c4c4c;
}

.footer-nav-item--active {
    background-color: #695757;
}

.footer-nav-item--active svg path {
    fill: #fff;
}

.footer-nav-item--active p {
    color: #fff;
    font-size: 1.2rem;
}
