/** Shopify CDN: Minification failed

Line 65:1 Expected "}" to go with "{"

**/


/* CSS from section stylesheet tags */
.custom-loop-blocks__wrapper {
  display: flex;
  flex-wrap: nowrap;   
  justify-content: flex-start;
  gap: 0;
  overflow-x: auto;
}

.custom-loop-blocks__item {
  flex: 0 0 calc(100% / {{ section.blocks.size }}); 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.custom-loop-blocks__image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden; 
}

.custom-loop-blocks__image img {
  width: 40%; /* this change the image size */
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .custom-loop-blocks__image img:hover {
   /* transform: scale(1.5);  change the zoom size*/
  }
  .custom-loop-blocks__image {
 /* height: 180px; /* this change the image container size */
}
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .custom-loop-blocks__wrapper {

  .custom-loop-blocks__item {
    flex: 0 0 calc(100% / {{ section.blocks.size }});  /* always show 4 items at a time */
    
  }
  .custom-loop-blocks__image img {
    width: 90%; /* fit better in mobile */
    transform: none; /* disable zoom */
  }
  .custom-loop-blocks__wrapper::-webkit-scrollbar {
    display: none;
  }
}