main {
    min-height: 100vh;
    margin-top: 2%;
    display: flex;
    justify-content: space-around;
    margin-bottom: 60px;
}

#cart-items {
    width: 60%;

}

#cart-action {
    position: relative;
    width: 30%;
    height: 50vh;
    border: 3px solid var(--detail-color);
    font-size: 1.2em;
    padding: 0.5%;
}

#cart-buttons {
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;

}

#Total {
    margin-bottom: 2%;
    text-align: center;
    font-size: 2em;
}

#cart-buttons button {
    background-color: orangered;
    border-style: none;
    width: 100%;
    padding: 5% 0;
    font-size: 2em;
    margin-top: auto;
}


#cart-items table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.5em;
    border: 4px solid var(--detail-color);
}

#cart-items td {
    border: 3px solid;
    text-align: center;
    vertical-align: middle;
    border-color: var(--detail-color) rgba(0, 0, 0, 0);

}

#cart-items .TdDesc {
    font-size: 0.75em;
    padding: 0;
    margin: 0;
}

#cart-items .imageCart {
    width: 10vw;
    height:25vh;
}

#cart-items .Tdbg {
    height: 5vw;
    background-color: var(--bg-color);
}

#cart-action table {
    width: 100%;
    font-size: 1.5em;
    border-collapse: collapse;
}

#cart-action td {
    border: 2px solid black;

}

.BtnSupp {
    width: 7vw;
    padding: 5%;
    background-color: rgb(255, 205, 112);
    border-style: none;
    border-radius: 10px;
}

.TOTALNom {
    text-align: left;
}

.TOTALPrix {
    text-align: center;
}

.RowTOTAL {
    height: 7vh;
}

#cart-check{
    height: 65%;
    flex-wrap: wrap;
    overflow-y: auto;
}



