.blockcart2 .body {
    right: 0;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 5px 0 #ccc;
    color: #262626;
    margin-top: 20px;
}

.blockcart2 .body::before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid
    #fff;
    right: 18px;
    top: -10px;
}

#blockcart-modal { display: none; }

.blockcart2 .body ul {
    padding: 0;
    margin: 0;
    max-height: min(300px, calc(100vh - 450px));
    overflow-y: auto;
}

.blockcart2 .blockcart-title {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.blockcart2 .blockcart-close {
    cursor: pointer;
    color: #DE058A;
    font-weight: bold;
}

.blockcart2 .body ul li {
    list-style-type: none;
    margin: 20px 0;
    display: flex;
}

.blockcart2 .body ul li .product-price {
    flex: 1 1 auto;
    text-align: right;
}

.blockcart2 .cart-subtotals {
    border-top:2px solid #E5E5E5;
    margin: 20px 0;
    padding-top: 20px;
    text-align: right;
}

.cart-summary-products .blockcart2 .cart-subtotals:last-child {
    margin-bottom: 0;
}

.blockcart2 .product-quantity {
    flex: 0 0 40px;
    text-align: right;
    font-weight: bold;
    color: #DE058A;
    margin-right: 10px;
    display: inline-block;
}

.blockcart2 .cart-subtotals .value,
.blockcart2 .product-price {
    font-weight: bold;
    color: #DE058A;
    margin-left: 10px;
    display: inline-block;
    width: 80px;
}

.blockcart2 .cart-buttons {
    display: flex;
    margin-top: 20px;
    justify-content: space-between;
}

.blockcart-up, .blockcart-down {
    border-radius: 50%;
    color: #DE058A;
    background: #FFE2F3;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    font-size: 15px;
}

.blockcart-more {
    display: flex;
    align-items: center;
    text-align: left;
    color: #DE058A;
    font-weight: bold;
    margin-bottom: 2em;
}
.blockcart-more span {
    flex: 1 1 auto;
}
.blockcart-down { margin-left: 10px; }
