
div {
    box-sizing: border-box;
}

.alist img {
    max-width: 100%;

}

.alist .svg {
    width: 20px;
    height: 20px;
    padding-left: 20px;
}

.alist .qty span {
    color: #000;
    background-color: #afd875;
    border: 1px solid #699b22;
    padding: 2px 0;  
    font-weight: bold;
    width: 28px;
    display: inline-block;
    text-align: center;
    margin: 2px;
    line-height: 24px;
    border-radius: 2px;
}



.alist .greenBasket {
    margin-top: 5px;
    border: 1px solid #699b22;
    position: relative;
    border-radius: 2px;
    background-color: #FFF;
    display: inline-block;
    padding: 1px;
    white-space: nowrap;

}

.alist .yellowBasket {
    margin-top: 5px;
    border: 1px solid #ffc470;
    position: relative;
    border-radius: 2px;
    background-color: #FFF;
    display: inline-block;
    padding: 1px;
    white-space: nowrap;
}

.alist .basketBtn input {
    width: 31px;
    border: none;
    display: inline-block;
    vertical-align: top;
    padding: 0;
    margin: 0;
    line-height: 28px;
    text-align: center;
    font-size: 16px;
    background-color: #FFF;
    color: #000;
    border-radius: 2px;
    
}

.alist .basketBtn .greenBasket a, .yellowBasket a {
    display: inline-block;
    padding: 0px 15px 0px 30px;
    font-weight: bold;
    cursor: pointer;
    border: 1px solid #fff;
    font-size: 14px;
    color: #fff;
    line-height: 28px;
}


.alist .basketBtn .greenBasket a {
    
    background-image: url(../svg/basket.svg);
    background-repeat: no-repeat;
    background-position: 5px center;
    background-size: 26px 26px;
    background-color: #8cc739;
}

.alist .basketBtn .yellowBasket a {
    background-image: url(../svg/list.svg);
    background-repeat: no-repeat;
    background-position: 5px center;
    background-size: 26px 26px;
    background-color: #ffd870;
}

/* desktop*/
@media all and (min-width: 981px) {
    .row .info .img {
        padding-top: 10px;
    } 

    .description h4 {
        margin: 10px 0;
    }

    .description {
        padding: 0 10px;
    }

    .priceList {
        padding: 10px;
    }
}

/* tablet*/
@media all and (min-width: 700px) and (max-width: 980px){
    .priceList {
        text-align: center;
    }

    .description {
        line-height: 20px;
        padding: 0 10px;
        margin: 10px;
    }

    .description h4 {
        margin: 10px 0;
    }
}

/* mobile */
@media all and (max-width: 699px){
    .priceList {text-align: center;}

    .priceList .qty, .price, .basketBtn {
        padding: 5px;
    }
}







