.customer_happiness ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
align-items: baseline;
}
.customer_happiness ul li {
max-width: 50%;
padding: 15px;
}
.customer_happiness .img_wrap {
width: 50%;
max-width: 90px;
height: 67px;
margin: auto;
fill: #fd0d95;
}
.customer_happiness .title_wrap {
max-width: 140px;
text-align: center;
}
.customer_happiness.product {
width: 100%;
display: flex;
flex-wrap: nowrap;
justify-content: center;
}
.customer_happiness.product ul {
flex-wrap: nowrap;
}
@media screen and (max-width: 705px) {
.customer_happiness.product {
display: block;
font-size: 12px;
flex-wrap: wrap;
}
.customer_happiness.product .img_wrap {
width: 40px;
}
}