/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 15 2022 | 18:04:24 */
/* Scroll Product */

@media only screen and (max-width: 480px) {
 .scroll-mobile .woocommerce {
    max-width: 100vw;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  .scroll-mobile [data-products] {
    --shop-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc(70% - var(--grid-columns-gap) * 2);
    overflow-x: scroll;
    scroll-snap-type: x proximity;
    padding-left: 25.5px;
    padding-right: 25.5px;
    grid-gap: var(--grid-columns-gap);
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .scroll-mobile [data-products]::-webkit-scrollbar {
    display: none;
    width: 0;
    background: transparent;
  }
}
