.dropdowncart_cart_block {
    display: none;
    position: absolute;
    background-color: white;
    z-index: 999;
    width: 250px;
    right: 0;
    overflow: auto;
}

.cart_block_type_0 {
    max-height: 100vh;
}

.cart_block_type_1 {
    display: block;
    position: fixed;
    height: 100vh;
    width: 30%;
    right: -30%;
    top: 0;
    overflow: hidden; 
    transition: right .35s ease-in-out;
}
.cart_block_type_1.active{
    right: 0;
}
#header .dropdowncart_cart_block .product_name a {
    color: black;
}

.dropdowncart_cart_block span.quantity {
    font-size: .8rem;
}

.cart-prices,
.cart_block_list {
    padding: .5rem;
}

.product_price,
p.product_name {
    margin: 0 0 .5rem .5rem;
}

.product_item {
    overflow: hidden;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 5px;
}

.product_image {
    width: 15%;
    float: left;
}

.product_image img {
    max-width: 100%;
}

.product_info {    width: 70%;
    float: left;
}

.product_price {
    font-size: 1.1rem;
    font-weight: bold;
}

.cart-prices {
    text-align: right;
    margin-right: 19px;
    font-weight: bold;
}

span.amount.pull-right {
    font-size: 1.1rem;
}

#_desktop_cart a.dropdowncart_cart_checkout_link {
    color: #fff;
    text-decoration: none;
}
.cart_close_button{
    display: none;
    position: fixed;
    margin-left: -39px;
}
.cart_close_button a{
    padding: .95rem .25rem;
}
.cart_close_button i.material-icons{
    margin: -8px 0 0 0;
    padding: 0;
    color: white;
}
.cart_close_button i.material-icons:last-child{
    margin-left: -20px;
}
.dropdowncart_cart_block.active{
    display: flex !important;
    flex-direction: column;
}
.remove_link_and_other_actions{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10%;
}
#_desktop_cart .dropdown_cart_add_cart_button i, #_desktop_cart .remove_product_from_dropdown_cart i {
    font-size: 1.5rem;
}
.dropdown_cart_add_cart_container{
    display: flex;
    align-items: center;
}
.dropdown_cart_add_cart_container .dropdown_cart_add_cart_button {
    cursor: pointer;
    border-radius: 50%;
}

.blockcart_type_1 .block_content {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.blockcart_type_1 .cart_block_list { flex: 0 0 74%; overflow-y: auto; }
.blockcart_type_1 .block-bottom { flex: 0 0 20%; }
.cart_clear_button i.material-icons{
    transform: rotate(45deg)
}
.cart_clear_button{
    position: absolute;
    right: 10px;
    top: 10px;
}

.dropdowncart_cart_block .cart-summary-totals {
    padding: 0 1rem 1rem;
}

@media (max-width: 1200px) {
    .cart_block_type_1 { width: 35%; right: -35%; }
}


@media (max-width: 995px) {
    .cart_block_type_1 { width: 75%; right: -75%; }
}

@media (max-width: 762px) {
    .cart_block_type_1 { width: 100%; right: -100%; }
}