/* (A) WHOLE PAGE */
* {
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
  }
  
.cQty {
    border: 1px solid rgb(71, 71, 71);
    border-radius: 3px;
    /* height: 40px; */
    margin-left: 10px;
    text-align: center;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

.cartProductPrice {
    display: flex;
    justify-content: space-between;
}
/* .colortotalprice {
    color: rgb(0, 0, 0);
} */

.cBlocks {
    border-bottom: white;
    transition: 0.5s;
}

.cBlocks:hover {
    border-bottom: 1px solid rgb(141, 141, 141);
    transition: 0.5s;
}

.empty {
    color:  black;
}

.cPrice {
    color: rgb(179, 179, 179);
}

.pAdd {

}

.cName {
    font-size: 16px;
    justify-content: center;
    padding-top: 5px;
}

.xCell {
    width: 100%;
    height: auto;
    justify-content: space-between;
    border-radius: 10px;
    padding: 10px;
    background-color: silver;
    margin-top: 5px;
}


.button2 {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #FC6E51;
    margin-top: 10px;
    width: 100%;
    font-size: 18px;
    height: 50px;
    border-radius: 10px;
    size-adjust: auto;
    transition: 0.5s;
    border: none;
    box-shadow: inset;
    color: white;
}

.button2:hover {
    background-color: #fd2a00;
    transition: 0.5s;
}

.green {
    background-color: #46f36c;
    transition: 0.5s;
}

.green:hover {
    background-color: #07d800;
    transition: 0.5s;
}


.cInfo {
    background-color: rgb(204, 204, 204);
    width: 100%;
    text-align: center;
    margin-top: 10px;
    border-radius: 10px;
    transition: 0.5s;
    color: black;
}

.cInfo:hover {
    background-color: rgb(37, 37, 37);
    color: white;
    transition: 0.5s;
}

.dlogo {
     width: 40%;
     padding: 28px 0 19px;
}








