*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.cart-products{
    margin-top: 70px;
}
.products-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0px 0px 13px 4px #b3b3b3;
    /* margin: 30px; */
    width: 70%;
    margin:20px auto;
}
.img {
    margin: 10px;
    width: 120px;
    /* height: 200px; */
}
img {
    width: 100%;
    height: 100%;
}
.product-details {
    color: #8758FF;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.product-details h2 {
    margin: 10px auto;
    font-size: 17px;
    margin-left: -40px;
    text-align: center;
}
.quantity {
    display: flex;
    align-items: center;
}
.remove-to-cart{
    border: none;
    font-family: 'Nunito';
    font-weight: bold;
    padding: 3px 7px;
    border-radius: 5px;
    background-color: #8758FF;
    color: #F2F2F2;
    font-size: 10px;
    cursor: pointer;
}
.quantity i{
    color: #8758FF;
    font-size: 15px;
    cursor: pointer;
}
.quantity h3 {
    padding: auto 5px;
    margin: auto 10px;
    color: #8758FF;
}
.bar {
    margin-top: 30px;
    height: 2px;
    background-color: #181818;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}
.product-price h2{
    color: #8758FF;   
}
.total {
    color: #8758FF;
    font-size: 13px;
}
.global-price {
    float: right;
    margin-right: 80px;
    margin-top: 20px;
    font-size: 17px;
    color: #5719f5;
}
h2.no-items {
    text-align: center;
    font-family: 'Nunito';
    letter-spacing: 2px;
    font-weight: bold;
    color: #8758FF;
    margin-top: 100px;
}