#basket > .items{
    position: relative;
    margin: 0 -30px 0 -30px;
}
#basket > .items > .item{
    float: left;
    position: relative;
    height: 110px;
    width: 100%;
    text-align: center;
    /*border: 1px solid #f6f6f6;*/
    margin-left: -1px;
    margin-bottom: -1px;
    overflow: hidden;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -o-transition: all .6s ease;
}
#basket > .items .item .img{
    display: table-cell;
    width: 280px;
    height: 300px;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
}
#basket > .items .item .img img {
    vertical-align: middle;
    max-height: 300px;
    max-width: 270px;
}
#basket > .items .item .name{
    display: block;
    font-size: 18px;
    color: #313131;
    line-height: 25px;
    padding: 0;
    min-height: 50px;
    cursor: pointer;
    text-decoration: underline;
}
#basket > .items .item .td-price{
    width: 160px;
}
#basket > .items .item .price{
    /*position: absolute;*/
    font-family: "RotondaBold";
    font-size: 20px;
    color: #313131;
    width: 100%;
    text-align: center;
    line-height: 25px;
    /*bottom: 40px;*/
}
#basket > .items .item .count{}
#basket > .items .item .count .val{
    cursor: pointer;
    color: #929292;
    border-bottom: 1px dashed #929292;
}
#basket > .items .item .count .minus,
#basket > .items .item .count .plus{
    display: none;
    cursor: pointer;
    color: #929292!important;
    text-align: center;
    margin: 0 5px;
    width: 20px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-color: #f9f9f9!important;
    float: left;
    text-decoration: none!important;
}
#basket > .items .item .count .minus:hover,
#basket > .items .item .count .plus:hover{
    background-color: #ececec;
}
#basket > .items .item .count.edit .minus,
#basket > .items .item .count.edit .plus{
    display: inline-block;
}
#basket > .items .item .count.edit .val{
    padding: 3px 5px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: none;
    background-color: #f9f9f9;
}
#basket > .items .item .price-discount{
    width: 100%;
    text-align: center;
    line-height: 20px;
}
#basket > .items .item .price-discount .price-old{
    font-family: "RotondaReg";
    font-size: 16px;
    color: #bdbdbd;
    text-decoration: line-through;
}
#basket > .items .item .price-discount .price-new{
    font-family: "RotondaBold";
    font-size: 20px;
    color: #00a1e6;
}

#basket > .items .item table{
    height: 110px;
    width: 100%;
    border-collapse: collapse;
}
#basket > .items .item td{
    border: 1px solid #f6f6f6;
}
#basket > .items .item .td-left{
    width: 110px;
}
#basket > .items .item .td-left .img{
    height: 80px;
}
#basket > .items .item .td-left .img img{
    max-height: 80px;
    max-width: 100px;
}
#basket > .items .item .td-name{
    text-align: left;
    padding: 10px 30px;
}
#basket > .items .item .td-name .articul{
    color: #a1a1a1;
    font-size: 10px;
}

#basket > .items .item .td-action{
    width: 110px;
}
#basket > .items .item .td-action .ico{
    cursor: pointer;
    width: 110px;
    height: 110px;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -o-transition: all .6s ease;
}


#basket .go-to-catalog{
    position: absolute;
    z-index: 1;
    top: 30px;
    right: 40px;
    font-size: 13px;
    color: #929292;
}
#basket .basket-footer{
    margin: 0 -30px;
    background-color: #f9f9f9;
    padding: 30px;
}
#basket .text{
    font-family: "RotondaReg";
    font-size: 22px;
    line-height: 60px;
}