/* Collection List Image Size Change */
/* Desktop Size */
.one-half {
width: 30% !important;
}
.one-quarter {
width: 30% !important;
}
/* Smaller Screen Sizes */
@media only screen and (min-width: 481px) and (max-width: 768px) {
.one-half {
width: 33.333% !important;
}
.one-quarter {
width: 33.333% !important;
}
}
@media only screen and (max-width: 480px) {
.one-half {
width: 50% !important;
}
.one-quarter {
width: 50% !important;
}