.related-items-list {
    margin-bottom: 4rem;
}

.related-container {
    margin-bottom: 2rem;
}

.related-product {
    background-color: #FFFFFF;
    display: flex;
    flex-flow: column;
    position: relative;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 360px;
    width: 280px;
    margin: 0 auto 2rem auto;
    padding: 2.3rem 0;
    box-shadow: -1.7px 2.5px 31.5px 3.5px rgba(28, 24, 28, 0.08);
}

@media screen and (min-width: 992px) {
    .related-product {
        height: 380px;
        width: 100%;
        margin: 0 0 2rem 0;
    }
}

.related-product__img {
    max-height: 210px;
    transform: scale(1);
    transition: transform .3s ease-in-out;
}

.related-product__img:hover {
    transform: scale(1.05);
}

.related-product__info {
    display: flex;
    flex: 1 0 auto;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    width: 100%;
}

.related-product h3 {
    font-size: 1.4rem;
    font-family: 'nunitoregular', sans-serif;
    letter-spacing: 0.5px;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.related-product h3 a {
    color: #000000;
}

.related-product__price {
    font-size: 1.4rem;
    position: relative;
    margin-top: 0;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

.related-product__price span {
    font-family: 'nunitolight', sans-serif;
    display: block;
    width: 100px;
}

.related-product__price::before,
.related-product__price::after {
    content: '';
    height: 2px;
    width: 25%;
    background: #EBEBEB;
}

.related-product__price::after {
    float: right;
}