.custom-woopack-grid {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
gap: 30px; } .custom-woopack-item {
box-sizing: border-box;
display: flex;
flex-direction: row; flex: 0 0 50%; max-width: 50%;
} .custom-woopack-item .woopack-product-image {
flex: 0 0 45%;
max-width: 45%;
margin-right: 5%;
} .custom-woopack-item .woopack-product-content {
flex: 1;
} .custom-woopack-item .woopack-product-image img {
width: 100%;
height: auto;
display: block;
} @media only screen and (max-width: 992px) {
.custom-woopack-item {
flex: 0 0 100%;
max-width: 100%;
flex-direction: row;
}
.custom-woopack-item .woopack-product-image {
flex: 0 0 45%;
max-width: 45%;
margin-right: 5%;
}
.custom-woopack-item .woopack-product-content {
flex: 1;
}
} @media only screen and (max-width: 767px) {
.custom-woopack-item {
flex-direction: column;
}
.custom-woopack-item .woopack-product-image,
.custom-woopack-item .woopack-product-content {
width: 100% !important;
max-width: 100% !important;
margin: 0 0 20px;
}
}