/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.ps-list {
    margin-bottom: 40px;
}
.ps-list.ps-list-small {
    text-align: center;
}
.ps-list.ps-list-small .ps-list-item {
    width: 33%;
    margin: auto;
    display: inline-block;
}
.ps-list .ps-list-item {
    text-align: center;
    width: 100%;
    padding: 0 20px;
    color: #222222;
    margin-left: -15px;
}
.ps-list .ps-list-item .ps-product-title {
    padding: 10px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (min-width: 768px) {
    .ps-list .ps-list-item .ps-product-title {
        height: 90px;
    }
}
.ps-list .ps-list-item .ps-product-title p, 
.ps-list .ps-list-item .ps-product-price p {
    margin-bottom: 0;
}
.ps-list .ps-list-item .ps-product-title a {
    color: #444444;
}
.ps-list .ps-list-item .ps-product-title a:hover {
    color: #955b89;
}
.ps-list .ps-list-item .ps-product-image {
    display: block;
}
.ps-list .ps-list-item .ps-product-price {
    padding: 10px;
    font-weight: bold;
}
.ps-list .add_to_cart_button {
    color: #fff;
    background-color: #F0644B;
    min-width: 80px;
    padding: 8px 14px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
}
.ps-list .add_to_cart_button:hover {
    color: #e8e8e8;
    background-color: #ef3413;
    text-decoration: none !important;
}
