.Cart {
    width: 35px;
    background-color: beige;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


#lblCartCount {
    font-size: 12px;
    background: #ff0000;
    color: #fff;
    padding: 0 5px;
    vertical-align: top;
    position: absolute;
    top: -4px;
    right: -4px;
    border-radius: 9px;
}

.cart-sidebar{
    background-color: #ececec;
    position: fixed;
    right: 0;
    top: 0;
    width: 450px;
    height: 80vh;
    z-index: 10;
    transition: all 0.3s linear;
    transform: translate(100%);
    overflow: scroll;
}
.CartOpen{
    transform: translate(0);
}

.cart-sidebar .cart{
    padding: 0;
}

.cart .close-cart{
    font-size: 1.3em;
    padding: 1em;
    cursor: pointer;
}

.cart h2{
    text-align: center;
    width: 100%;
    margin-bottom: 1em;
    font-size: 1.1em;
}

.cart-product{
    display: flex;
}
.cart-product .product-image img{
    width: 130px;
    height: 90px;
}

.cart-product-content{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-left: 1em;
    height: 80px;
}
.plus-minus{
    display: flex;
    transform: rotate(90deg);
    color: #f09d51;
    cursor: pointer;
}

.total-sum{
    text-align: center;
    margin: 1em 0 0.5em 0;
}

.clear-cart{
    text-align: center;
}
.clear-cart .btn{
    background-color: #f09d51;
    color: white;
    border: 1px solid white;
    padding: 0.5em 1.7em;
    cursor: pointer;
    transition: 0.3s linear;
}

.clear-cart .btn:hover{
    border: 1px solid #d4761e;
    background: transparent;
    color: black;
}