.basketbox {
    position: fixed;
    height: 50px;
    width: 100%;
    padding: 0px 15px;
    background: #fff;
    color: #17a2b8;
    bottom: 0;
    left: 0;
    display: none;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .09)
}

.basket {
    position: relative;
    height: 50px;
    padding: 5px 0
}

.basket .basket-cart {
    width: 40px;
    height: 40px;
    position: relative;
    float: left
}

.basket .basket-cart i {
    font-size: 25px;
    line-height: 40px
}

.basket .basket-cart .basket-cart-item-count {
    width: 20px;
    height: 20px;
    background: red;
    position: absolute;
    top: 7px;
    left: 15px;
    border-radius: 100%;
    color: #fff;
    text-align: center;
    line-height: 20px;
    font-size: 12px
}

.basket .basket-detail {
    height: 40px;
    overflow: hidden;
    color: #17a2b8;
    width: calc(100% - 140px);
    float: left
}

.basket .basket-detail .basket-items-label {
    height: 20px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 300
}

.basket .basket-detail .basket-items-total {
    height: 20px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: red
}

.basket .basket-next {
    position: absolute;
    height: 50px;
    width: 100px;
    text-align: center;
    right: 0;
    top: 0
}

.fast-spin {
  -webkit-animation: fa-spin 2s infinite linear !important;
  animation: fa-spin 2s infinite linear !important;
}