.basket-block{
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.basket-block .cartIcon{
	max-width: 32px;
	margin-top: -8px;
}
.basket-block .basket-item{
	position: relative;
}
.basket-block .count-items{
    background-color: #ee9036;
    border-radius: 10px;
    width: 18px;
    height: 18px;
    position: absolute;
    color: #ffffff;
    top: -6px;
    right: -6px;
    line-height: 0px;
    padding-top: 9px;
    text-align: center;
    font-size: 12px;	
}
.basket-block .total-summary{
    width: auto;
    color: #efefef;
    text-align: right;
    margin-left: 12px;
}
.total-summary a{
    color: #fff;
    text-decoration: none;
}
@media (max-width: 768px) {
 .basket-block .total-summary{
    margin-left: 0px;
 } 
 .total-summary{display: none;}  
}

