


/*catalog basket*/
.center-column .catalog-basket {
    min-height: 400px;
    overflow: hidden;
    position: relative;
    color:#000;
    /*padding-top: 10px;*/

    padding-bottom: 50px;
}
.catalog-basket .basket-title{
    background-image: -moz-linear-gradient( 90deg, rgb(69,58,41) 0%, rgb(103,87,62) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(69,58,41) 0%, rgb(103,87,62) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(69,58,41) 0%, rgb(103,87,62) 100%);
    box-shadow: 0px 4px 6px 0px rgb( 17, 16, 16 );
    min-height: 38px;
    color:#fdfdfd;
    padding: 2px 10px;
    font-size: 22px;
    text-transform: uppercase;
    border-radius: 5px 5px 0 0;
    margin: 0 -15px;
}
@media (max-width: 768px) {
    .catalog-basket .basket-title{
        font-size: 16px;
    }
}

.catalog-basket .basket {
    /*min-height: 400px;*/
    margin-top: 20px;
    overflow: hidden;


}
.catalog-basket .basket ul.basket-items{

    padding: 0;
    color:#000;
    margin-top: 5px;
    padding-left: 20px;
    padding-right: 20px;
    list-style: none;
    overflow-x: auto;

}

.catalog-basket .basket .basket-items li{
    display: flex;
    width: 100%;
    align-items: center;

    overflow: hidden;
    padding: 0 5px;
    margin-bottom: 10px;
    min-width: 480px;
}
.catalog-basket .basket .basket-items .wrap-delete-btn{
    float:left;
    width: 10%;
    position: relative;
    text-align: center;
}

.catalog-basket .basket .basket-items .product{
    float:left;
    width: 60%;
}
.catalog-basket .basket .basket-items .count{
    float:left;
    width: 30%;
    text-align: center;
}
.catalog-basket .basket .basket-items .cost{
    /*display:none;*/
    float:left;
    width: 20%;
    text-align: center;
}

@media (max-width: 578px) {
    .catalog-basket .basket .basket-items .wrap-delete-btn{
        float:left;
        width: 10%;
        position: relative;
        text-align: center;
    }

    .catalog-basket .basket .basket-items .product{
        width: 50%;
    }
    .catalog-basket .basket .basket-items .count{

        width: 40%;
     }
}
.catalog-basket .basket .basket-items .item-header{
    font-size: 16px;
    border-bottom: 1px solid #4E4E4E;
}
.catalog-basket .basket .basket-items .item{
    border-bottom: 1px solid #4E4E4E;
}
.catalog-basket .basket .basket-items .item:last-child{
    border-bottom: none;
    margin-bottom: 0;
}
.catalog-basket .basket .basket-items .item .wrap-delete-btn{
    position:relative;
    box-sizing: border-box;
    /*padding:30px 10px;*/
    padding:10px;


}
.catalog-basket .basket .basket-items .wrap-delete-btn a.delete-btn{
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
}
.catalog-basket .basket .basket-items .wrap-delete-btn a.delete-btn:after{
    content:'';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
    background-image: url('/bitrix/panel/main/images/popup_sprite.png');
    background-repeat: no-repeat;
    background-position: center -35px;
}
.catalog-basket .basket .basket-items .wrap-delete-btn a.delete-btn:hover:after{
    background-position: center -95px;
}

.catalog-basket .basket .item .product{
    position:relative;
    box-sizing: border-box;
    padding:10px;
    /*height:100px;*/
    overflow: hidden;
}
.catalog-basket .basket .item .product .img{
    position:relative;
    width:30%;
    margin-right: 4%;
    height:0;
    float:left;

    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    padding-bottom: 30%;
    overflow: hidden;
}
.catalog-basket .basket .tem .product .text{
    width:66%;
    padding: 10px;
    float:left;
    font-size: 12px;

}
.catalog-basket .basket .item .count {
    position:relative;
    box-sizing: border-box;
    /*padding:30px 10px;*/
    padding:10px;
    text-align: center;

}

.catalog-basket .basket .item .count input.count-input{
    width: 30px;
    min-width: 14px;
    margin: 0;
    display: inline-block;
    font-size: 13px;
    height: 20px;
    padding: 0 5px;
    background: #fff;
    border: 1px solid;
    border-color: #87919c #959ea9 #9ea7b1 #959ea9;
    border-radius: 4px;
    color: #000;
    -webkit-box-shadow: 0 1px 0 0 rgba(255,255,255,0.3), inset 0 2px 2px -1px rgba(180,188,191,0.7);
    box-shadow: 0 1px 0 0 rgba(255,255,255,0.3), inset 0 2px 2px -1px rgba(180,188,191,0.7);
    outline: none;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
}

.catalog-basket .basket .item .count .quantity_minus,
.catalog-basket .basket .item .count .quantity_plus
{
    vertical-align: middle;
    width: 20px;
    display: inline-block;
    height: 20px;
    border-radius: 20px;

    background-color: #fff;
    background-image: url('cart-sprite.png');
    border:1px solid #535C69;
    background-repeat:no-repeat;
    font-size: 20px;
    cursor: pointer;
    line-height: 13px;
    box-sizing: border-box;
    color: #95a1a8;
}
.catalog-basket .basket .item .count .quantity_plus{
    background-position: center 2px;
    margin-left: 5px;
}
.catalog-basket .basket .item .count .quantity_minus{
    background-position: center -362px;
    margin-right: 5px;
}

.catalog-basket .basket .item .count .quantity_minus:hover,
.catalog-basket .basket .item .count .quantity_minus:active,
.catalog-basket .basket .item .count .quantity_plus:hover,
.catalog-basket .basket .item .count .quantity_plus:active
{
    opacity: 0.5;
    -webkit-transition: opacity 0.4s linear;
    -moz-transition: opacity 0.4s linear;
    -o-transition: opacity 0.4s linear;
    transition: opacity 0.4s linear;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}


.catalog-basket .basket .item .cost {
    position:relative;
    box-sizing: border-box;
    /*padding:30px 10px;*/
    padding:10px;
    font-weight: bold;
    font-size: 18px;

}
.catalog-basket .basket .basket-items .total{
    float:left;
    font-size: 18px;
    font-weight: bold;
    width: 80%;
    text-align: right;
    box-sizing: border-box;
    padding: 10px 20px 10px 10px;
}
.catalog-basket .basket .basket-items .sum{
    float:left;
    font-size: 18px;
    font-weight: bold;
    box-sizing: border-box;
    padding: 10px;
    width: 20%;
}
.catalog-basket .basket .order-block {
    margin-top: 50px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 0 0 30px;
    border-top: 3px solid #f0a358;
    position: relative;
}

.catalog-basket .basket .order-block .update-link{
    font-size: 12px;
    color: #fff;
    z-index: 999;
    display: inline-block;
    width: 114px;
    height: 32px;
    text-align: center;
    line-height: 27px;
    position: absolute;
    bottom: 0;
    right: 134px;
    padding-left: 10px;
    font-family: UbuntuRegular;
    background-image: url('img/catalog/in-basket.png');
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
}
.catalog-basket .basket .order-block .order-link{
    font-size: 12px;
    color: #fff;
    z-index: 999;
    display: inline-block;
    width: 114px;
    height: 32px;
    text-align: center;
    line-height: 27px;
    position: absolute;
    bottom: 0;
    right: 10px;
    padding-left: 10px;
    font-family: UbuntuRegular;
    background-image: url('img/order.png');
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
}
.catalog-basket .basket .order-block .choose-link{
    font-size: 14px;
    color: #eb5c36;
    z-index: 999;
    display: inline-block;
    width: 180px;
    font-weight: bold;
    height: 32px;
    text-align: center;
    line-height: 27px;
    position: absolute;
    bottom: 0;
    left: 10px;
    padding-left: 10px;
    font-family: UbuntuRegular;
}

.empty-product{
    padding-top: 50px;
    text-align: center;
    font-size: 20px;
    min-width: 200px;
}

.message{
    max-width: 250px;
    background-color: #1f2922;
    color:#fff;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    font-family: UbuntuRegular;
    
}