.basket_top{
    position:relative;;
}
.dropdown_cart{
    display: none;
    position: absolute;
    right: 0;
    top:200%;
    width:630px;
    -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;
    z-index: 9;
    margin-top: -5px;
    z-index: 9999;
}
.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 {
    display:flex;
    align-items: center;
}
.cart_count {
    margin-left: 5px;
    display:flex;
    align-items: center;
    text-align: center;
    line-height:1em;
    justify-content: center;
    font-size:12px;
    background: var(--prv_color_bg);
    border-radius:50px;
    color:#fff;
    height: 20px;
    min-width: 20px;
}
.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;
    position: relative;
}
.cart_item_image--sale{
    position: absolute;
    top: 10px;
    left: 0px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    background-color: #e32330;
    color: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.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: flex-start;
    justify-content: space-between;
    margin-bottom:5px;
}
.cart_item_name {
    flex-grow:10;
    flex-shrink:10;
    color:#212121;
    font-size:1em;
    font-weight:bold;
}
.cart_item_name a{
    color:#212121;
}
.cart_item_name a:hover{
    text-decoration: none;
    color: var(--prv_btn_color);
}
.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-line-prices{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.cart_item_in_stock {
    color: #0A9200;
    text-transform:uppercase;
    margin-bottom:20px;
    font-size:0.857142em;
}
.cart_item_no_stock {
    color:#757575;
    text-transform:uppercase;
    margin-bottom:10px;
    font-size:0.857142em;
}
.cart_item_price, .cart-item-line-prices__item-sum{
    font-weight:bold;
    font-size:1.3em;
    line-height:1.36em;
}
.cart_item_price--old{
    color: #757575;
    font-size: 1.1em;
    line-height: 1;
    text-decoration: line-through;
    margin-top: 10px;
}
.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_item_counter .btn-outline-secondary.btn,
.basket_item_counter .btn-outline-secondary.btn:focus,
.basket_item_counter .btn-outline-secondary.btn:active,
.basket_item_counter .btn-outline-secondary.btn:active:focus,
.basket_item_counter .btn-outline-secondary.btn.active{
    background-color:#F8F9FB;
    border:1px solid #E9E9E9;
    color:#757575;
    padding:4px !important;
    font-size:10px;
    box-shadow:none;
}
.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;
}
.cart_item .cart_item_type{
    font-size: 1.142857em;
    margin-bottom: 17px;
}
.basket_item_counter {
    text-align:center;
    margin-bottom:10px;
}
.basket_item_counter .input-group {
    justify-content: center;
}
@media (min-width: 576px) {
    .basket_item_price,
    .basket_item_sum,
    .basket_item_counter {
        text-align:left;
    }
    .basket_item_counter .input-group {
        justify-content: flex-start;
    }
}
@media (min-width: 768px) {
    .basket_item_price,
    .basket_item_sum,
    .basket_item_counter {
        margin-bottom:0px;
    }
}

.basket_item_counter .btn-outline-secondary.btn,
.basket_item_counter .btn-outline-secondary.btn:focus,
.basket_item_counter .btn-outline-secondary.btn:active,
.basket_item_counter .btn-outline-secondary.btn:active:focus,
.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_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;
    max-width:60px;
    text-align:center;
    flex:0;
}
.basket_count{
    font-size: 1em;
    height: inherit;
    padding: 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;
}
