.cart-page {
    margin: 15px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    gap: 5%;
}

.cart-content {
    flex-grow: 3;
}

.paiement {
    height: min-content;
    background-color: rgba(153, 153, 153, 0.616);
    flex-basis: 350px;
    padding: 20px 10px;
    border-radius: 8px;
    z-index: 8;
}
#paypal-button-container {
    margin-top: 12px;;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: solid;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    justify-content: space-evenly;
}
.cart-item > img {
    max-width: 300px;
    max-height: 300px;
    max-width: 100%;
}
.priceItem {
    display: flex;
    justify-content: space-between;
}
.cart-item > ul > li {
    list-style: none;
}
.price {
    margin-bottom: 22px;
}
.priceDetail {
    border-bottom: solid;
}
.priceItem > p {
    margin-bottom: 4px;
}
.removeFromCart {
    color: black;
    cursor: pointer;
}
.removeFromCart:hover {
    color: darkslategray
}
