.scsc-list > .no-items {
    display: block;
    text-decoration: underline;
    font-size: 14px;
    line-height: 18px;
}

.scsc-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.scsc-list > .item {
    width: 220px;
    margin-right: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 2px gray;
    background: white;
    transition: box-shadow 0.2s;
}

.scsc-list > .item:hover {
    box-shadow: 0px 0px 10px gray;
}

.scsc-list > .item > .image {
    display: flex;
    align-items: center;
    justify-items: center;
    width: 200px;
    height: 200px;
    margin: 10px 10px 0px 10px;
}

.scsc-list > .item > .image > img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: auto;
}

.scsc-list > .item > .title {
    display: block;
    text-align: center;
    color: #444;
    font-size: 18px;
    line-height: 24px;
    padding: 5px 10px 5px 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    height: 58px;
}

.scsc-list > .item > .cart {
    text-align: center;
    font-size: 21px;
    line-height: 35px;
    padding-top: 5px;
    padding-bottom: 15px;
}

.scsc-list > .item > .cart .label {
    color: black;
}

.scsc-list > .item > .cart .price {
    color: #09851d;
}

.scsc-list > .item > .cart .buy-now {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 30px;
    background-color: #00a63f;
    margin-bottom: -10px;
    margin-left: 12px;
    background-image: url('../../images/icons/add_to_cart.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60%;
    cursor: pointer;
    transition: all 0.2s;
}

.scsc-list > .item > .cart .buy-now:hover {
    background-color: #068737;
    background-size: 70%;
}
