/*
 * Mobile fix to override min-width/min-height constraints
 * that force swatches to be 40px on mobile devices
 */

@media (max-width: 768px) {
  .variable-item-span-color,
  .variable-item-image {
    min-width: unset !important;
    min-height: unset !important;
  }
}
