.shopproducts {
    --productImageSize: 183px;
    --productBackground: #F8F8F8;
    --productTextColor: #333;

    margin: 30px 0 30px 0;
}
.shopproducts .shopproduct_wrapper {
    margin-bottom: 15px;
    text-decoration: none!important;
    display: block;
}
.shopproducts .shopproduct_wrapper:hover {
    box-shadow: 0px 0px 15px 5px rgb(0 0 0 / 10%);
}

.shopproducts .shopproduct_image {
    border: 1px solid #eee;
    text-align:center;
}
.shopproducts .shopproduct_image {
    height: var(--productImageSize);
}
@media (min-width: 768px) {
    .shopproducts .col-sm-12 .shopproduct_image {
        width: var(--productImageSize);
        float: left;
        background: white;
    }
}
.shopproducts .shopproduct_content {
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--productBackground);
    border: 1px solid var(--productBackground);
    color: var(--productTextColor);
}
@media (min-width: 768px){
    .shopproducts .col-sm-12 .shopproduct_content {
        float: left;
        height: var(--productImageSize);
        display: block;
        width: calc( 100% - var(--productImageSize));
    }
}

.shopproducts .shopproduct__title {
    font-size: 100%;
    font-weight: 400;
    margin-top:0;
    color: var(--productTextColor);
}
.shopproducts .shopproduct__subtitle {
    margin-bottom: 0!important;
    color: var(--productTextColor);
}
.shopproducts .shopproduct__price {
    margin-bottom: 30px!important;
    color: var(--productTextColor);
}
.shopproducts .shopproduct__link {
    font-size: 100%;
    font-weight: 400;
    position: absolute;
    bottom: 2rem;
    color: #325389;
}

.shopproducts .shopproduct_wrapper .fa-chevron-right{
    padding-left: 0;
    transition: all 200ms;
}

.shopproducts .shopproduct_wrapper:hover .fa-chevron-right {
    padding-left: 2px;
}
