.basket_top{
    position:relative;;
}
.dropdown_cart {
    display: none;
    position: absolute;
    right: 0;
    top:95%;
    width:566px;
    -webkit-box-shadow: 0 10px 20px 0 rgba(0,0,0,.1);
    -moz-box-shadow: 0 10px 20px 0 rgba(0,0,0,.1);
    box-shadow: 0 10px 20px 0 rgba(0,0,0,.1);
    border-radius:10px;
    max-height: calc(100vh - 100px);
    overflow-y: scroll;
    overflow-x: hidden;
}
.dropdown_cart::-webkit-scrollbar{
    width: 8px;
}
.dropdown_cart::-webkit-scrollbar-thumb{
    border-radius: 8px;
    background: #999;
    border: 2px solid #fff;
}
.dropdown_cart::-webkit-scrollbar-track{
    border-radius: 8px;
}
@media (min-width: 768px) {
    .basket_top.open_cart .dropdown_cart,
    .basket_top:hover .dropdown_cart {
        display: block;
    }
}
.cart_items_container {
    width:100%;
}
.cart_image {
    width:40px;
    padding-right:10px;
    display:block;
    position:relative;
}
.cart_count {
    display:block;
    position:absolute;
    top:-6px;
    right:0px;
    line-height:9px;
    padding:3px 5px;
    font-size:9px;
    font-weight:bold;
    background-color:var(--prv_color);
    border-radius:20px;
    color:#fff;
    height:16px;
    min-width:16px;
}
.dropdown_cart {
    background-color:#fff;
}
.cart_item {
    display:flex;
    padding:35px 40px 23px 15px;
    align-items:center;
    width: 100%;
    border-bottom:1px solid #E9E9E9;
}
.cart_item_image {
    width: 137px;
    height: 110px;
    margin-right:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-grow:0;
    flex-shrink:0;
}
.cart_item_image img{ 
    max-width:100%;
    max-height:100%;
}
.cart_item_info {
    flex-grow:10;
    flex-shrink:10;
}
.cart_item_top_container {
    display: flex;
    width: 100%;
    align-items: center;
    margin-bottom:5px;
}
.cart_item_name {
    flex-grow:10;
    flex-shrink:10;
    color:#212121;
    font-size:1.428571em;
    font-weight:bold;
}
.cart_item_remove {
    width:14px;
    height:14px;
    text-decoration:none;
    margin-left:10px;
    flex-grow:0;
    flex-shrink:0;
}
.cart_item_remove:hover,
.cart_item_remove:focus {
    text-decoration:none;
}
.cart_item_remove .clear-cart-1{
    fill:#757575;
}
.cart_item_remove:hover .clear-cart-1,
.cart_item_remove:focus .clear-cart-1{
    fill:var(--prv_color);
}
.cart_item_in_stock {
    color:var(--prv_color);
    text-transform:uppercase;
    margin-bottom:10px;
    font-size:0.857142em;
}
.cart_item_no_stock {
    color:#757575;
    text-transform:uppercase;
    margin-bottom:10px;
    font-size:0.857142em;
}
.cart_item_price {
    font-weight:bold;
    font-size:1.571428em;
    line-height:1.36em;
}
.cart_bottom {
    width:100%;
    padding:35px 40px;
    display:flex;
    justify-content:flex-end;
}
.remove_all {
    text-transform:uppercase;
    font-size:0.857142em;
    line-height:1;
    display: flex;
    align-items: center;
}
.cart_sum {
    color:#212121;
    font-weight:bold;
    display:flex;
    align-items:flex-end;
    line-height:1;
}
.cart_sum_desc {
    font-size:1.285714em;
}
.cart_sum_price {
    margin-left:12px;
    font-size:1.571428em;
}
.cart_clear_block {
    display:flex;
    justify-content:space-between;
    padding:35px 40px;
    width: 100%;
    border-bottom:1px solid #E9E9E9;
}
.remove_all {
    color:#757575;
    text-decoration:none;
    flex-grow:0;
    flex-shrink:0;
}
.remove_all:hover,
.remove_all:focus {
    color:var(--prv_color);
    text-decoration:none;
}
.remove_all svg#clear-button{
    margin-right:18px;
    width:19px;
    height:19px;
}
.remove_all .clear-cart-1{
    fill:#757575;
}
.remove_all:hover .clear-cart-1,
.remove_all:focus .clear-cart-1{
    fill:var(--prv_color);
}

.empty_block {
    padding:40px 0px;
}
@media (min-width: 576px) {
    .empty_block {
        padding:40px 50px;
    }
}
.cart_svg_image {
    max-width:65px;
    width:100%;
    margin:0 auto;
}
.cart_svg_image .cart-1 {
    fill: #757575;
}
.cart_empry_header {
    font-size:1.428571em;
    color:#212121;
    margin-bottom: 15px;
}
.cart_empry_description {
    color:#757575;
    margin-bottom:25px;
}

.basket_content_block .basket_item_counter .btn-outline-secondary.btn,
.basket_content_block .basket_item_counter .btn-outline-secondary.btn:focus,
.basket_content_block .basket_item_counter .btn-outline-secondary.btn:active,
.basket_content_block .basket_item_counter .btn-outline-secondary.btn:active:focus,
.basket_content_block .basket_item_counter .btn-outline-secondary.btn.active{
    background-color:#F8F9FB;
    border:1px solid #E9E9E9;
    color:#757575;
    padding:8px; 
    font-size:12px;
    box-shadow:none;
}
.basket_content_block .basket_item_counter .btn-outline-secondary.btn:hover {
    background-color:var(--prv_color);
    border-color:var(--prv_color);
    color:#fff;
}
.basket_item_counter .form-control.basket_count,
.basket_item_counter .form-control.basket_count:focus,
.basket_item_counter .form-control.basket_count:hover {
    background-color:#F8F9FB;
    border-top:1px solid #E9E9E9;
    border-bottom:1px solid #E9E9E9;
    border-left:0px;
    border-right:0px;
    color:#757575;
    outline:none;
    box-shadow:none;
    width:60px;
    text-align:center;
    flex:0;
}
.basket_item_counter .input-group-prepend .btn{
    border-top-left-radius:3px;
    border-bottom-left-radius:3px;
    border-right:0!important;
}
.basket_item_counter .input-group-append .btn{
    border-top-right-radius:3px;
    border-bottom-right-radius:3px;
    border-left:0!important;
}