.recommended_product .title {
    color: black;
    text-decoration: none;
    height: 60px;
    position: relative;
    overflow-y: hidden;
    text-overflow: ellipsis;
    display: block;
}
.recommended_product .title:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(transparent 40px, #ededed);
}

.recommended_product .add2basket {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.recommended_product .add2basket .submit a {
    display: block;
    width: calc(100% - 42px);
    border: 1px solid #004288;
    background: #004288;
    color: white;
    padding: 6px 20px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}


.recommended_product .add2basket .submit a:hover {
    background: #fafafa;
    color: #004288;
}

.recommended_product .add2basket .amount {
    width: 50px;
    display: flex;
    justify-content: space-between;
}
.recommended_product .add2basket .amount input {
    width: 30px;
    background: #fafafa;
    border: none;
    outline: none;
    border-radius: 10px;
    font-size: 15px;
    padding: 5px 10px;
    text-align: center;
}
.recommended_product .add2basket .amount button {
    font-size: 19px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}
.recommended_product .add2basket .amount > div {
    position: relative;
}
.recommended_product .add2basket .amount > div:after {
    content: attr(data-measure);
    display: block;
    text-align: center;
    font-size: 10px;
    position: absolute;
    left: 0;
    right: 0;
}

.recommended_product .image img {
    max-width: 100%;
    height: auto;
}

.recommended_product.js-navigated {
    position: absolute;
    width: 268px;
    padding: 15px;
    background: #ededed;
}