.category_product__box {
    max-width: 425px;
    width: 100%;
}
.category_product__img {
    margin: 0 0 20px 0;
    position: relative;
    cursor: pointer;
}
.category_product__img .category_product__img_background {
    display: none;
}
.category_product__img:hover .category_product__img_background {
    display: block;
    opacity: 0;
    background: #0000006B;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}
.category_product__img_control {

    height: 50px;
    display: flex;
    top: calc(50% - 25px);

    position: absolute;
    gap: 20px;
}
.category_product__img_control.eye {
    width: 50px;
    left: calc(50% - 25px);
}
.category_product__img_control.eye_calc {
    width: 120px;
    left: calc(50% - 60px);
}
.category_product__img_eye,
.category_product__img_calc {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF57;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}
.category_product__img_eye {
    background-image: url("../../../../../image/svg/eye.svg");
}
.category_product__img_calc {
    background-image: url("../../../../../image/svg/calc.svg");
}
.category_product__description {
    margin: 0 0 20px 0;
    overflow: hidden;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
}
.category_product__price {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}
a.category_product__order {
    padding: 5px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: var(--turquoise)!important;
}
a.category_product__order:hover {
    color: var(--turquoise)!important;
}
@media screen and (min-width: 576px) {

}

@media screen and (min-width: 768px) {
    .category_product__box {
        width: 296px;
    }
}

@media screen and (min-width: 992px) {
    .category_product__img:hover .category_product__img_background {
        opacity: 1;
    }
    .category_product__box {
        width: calc((100% - 40px) / 3);
    }
}