#cartSidebar {
    display: none;
    position: fixed;
    width: 400px;
    right: 10rem;
    top: 5rem;
    padding: 1.25rem;
    border-radius: 1rem;
    background-color: #ffffff;
    z-index: 3;
}
#cartTotal{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.img-title-block img{
    width: 60px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}
hr{
    color: #D3D2D1 !important;
}
.remove-from-cart{
    color: #C4C4C4;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}
.remove-from-cart:hover{
    color: #969696;
}

@media (max-width: 993px) {
    #cartSidebar{
        right: 5rem;
    }
}

@media (max-width: 768px) {
    #cartSidebar{
        right: 0rem;
        width: 540px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    #cartSidebar{
        width: 98%;
    }
}