
#menu > #bt_shopping svg {
    color: #F02004;
    fill: #f0200415;
}

body > main > .max_width {
    max-width: 70rem;
}

/** SHOPPING **/

#shopping .tag > div {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

#shopping .name {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

#shopping .name > span {
    display: block;
    white-space: nowrap;
}

#shopping .name > .category {
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
}

#shopping .subtotal {
    font-weight: bold;
    flex-shrink: 0;
}

#shopping .price {
    color: #A9A9A9;
    font-weight: normal;
    white-space: nowrap;
}

#shopping .total {
    font-size: 2.2rem;
    font-weight: 500;
    margin: 3rem auto 0 auto;
    text-align: center;
}

#shopping .submit {
    border-radius: 2.5rem;
    font-size: 1.6rem;
    line-height: 3rem;
    margin: 3rem auto 1.5rem auto;
    text-align: center;
}

/** FORM **/

#shopping > .form > h4 {
    border-bottom: 1px dashed #E9E9E9;
    font-size: 3rem;
    font-weight: 500;
    margin: 0 auto;
    padding-bottom: 3rem;
    text-align: center;
}

#shopping > .form > p {
    margin: 2rem 0 5rem 0;
}

/** RESPONSIVE **/

@media (max-width: 530px) {

    #shopping > .form > p {
        text-align: center;
    }
}

@media (max-width: 750px) {

    body > main > .max_width {
        max-width: none;
    }

    body > main .container {
        border-radius: 0;
        border-left: none;
        border-right: none;
        padding: 4rem 0;
    }

    body > main .form {
        padding: 4rem 2rem;
    }
}