.product-box {
    padding: 40px 0px;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}
.product-box .img-wrap {
    height: 110px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}
.product-box img {
    width: auto;
    max-width: 100%;
    margin-bottom: 30px;
    max-height: 150px;
}
.product-box.pink {
    background: #faf0f6;
}
.product-box.green {
    background: #e6f8f6;
}
.product-box.orange {
    background: #fcede9;
}
.product-box.blue {
    background: #e6f7fa;
}
.product-info {
    display: flex;
    flex-direction: row;
    margin: 10px auto 30px;
    max-width: 220px;
    width: 100%;
}
.pi-icon {
    flex: 0 0 60px;
    width: 60px;
}
.pi-icon img {
    width: auto;
    margin: auto;
    max-height: 50px;
    display: block;
}
