.subitems {
    display: flex;
    flex-wrap: wrap;
}
div.subitems .subitem {
    width: 20%;
    padding: 10px;
    position: relative;
}
.subitem__box {
    display: block;
    position: relative;
    border: 1px solid #ddd;
    padding: 20px 20px 10px 20px;
    height: 100%;
    background-color: #fff;
}
.subitem__box:hover {
    border: 1px solid #aaa;
}
div.subitem a.subitem__img-box {
    max-width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-color: #ff9;*/
    padding-bottom: 0;
    margin-bottom: 20px;
}
.subitem__img-box img.subitem__img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}
div.subitem .subitem__name {
    color: #333;
    font-weight: bold;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
}
div.subitem .subitem__price {
    font-size: 20px;
    color: #ec7f1f;
    font-weight: bold;
}
.product-info div div.product-tabs__block img {
    /*width: auto;*/
    /*height: auto;*/
}
div.subitem div.subitem__box form {
    position: relative;
}
div.subitem div.subitem__box form input {
    width: 100%;
    min-width: 100%;
    display: inline-block;
}
div.photo-carousel__nav {
    bottom: 0;
}
@media screen and (max-width: 1200px) {
    div.subitems .subitem {
        width: 25%;
    }
}
@media screen and (max-width: 940px) {
    div.subitems .subitem {
        width: 33.3333%;
    }
}
@media screen and (max-width: 700px) {
    div.subitems .subitem {
        width: 50%;
    }
}
@media screen and (max-width: 480px) {
    div.subitems .subitem {
        width: 100%;
    }
}