/** Shopify CDN: Minification failed

Line 214:8 Expected identifier but found whitespace
Line 214:10 Unexpected "{"
Line 214:19 Expected ":"
Line 214:37 Expected identifier but found "%"
Line 220:12 Expected identifier but found whitespace
Line 220:14 Unexpected "{"
Line 220:23 Expected ":"
Line 220:47 Expected ":"
Line 224:19 Expected identifier but found whitespace
Line 224:21 Unexpected "{"
... and 4 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collection-filter-table (INDEX:15) */
.im-collection-filter-table {
    max-width: 960px;
    margin: 100px auto;
    font-weight: bold;
  }

  .product-row, .header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    padding: 10px;
    background-color: white;
  }

  .product-row:nth-child(odd) {
    background-color: #ededed;
  }

  .product-row div, .header-row div {
    width: 24%;
    text-align: center;
    padding: 10px;
  }

  .product-row a {
    text-decoration: none;
    color: white;
    background-color: #0853a2;
    padding: 12px 20px;
    transition: background-color 0.3s ease;
    border-radius: 50px;
    display: inline-block;
  }

  .product-row a:hover {
    background-color: #0a6ecb;
  }

  .header-row {
    background-color: #0853a2;
    color: white;
    padding: 15px 10px;
  }

  @media (max-width: 768px) {
    .product-row div, .header-row div {
      width: 100%;
    }
  }
/* END_SECTION:collection-filter-table */

/* START_SECTION:filter-collapsible-table (INDEX:40) */
.im-collection-filter-tables {
  max-width: 960px;
  font-weight: bold;
  margin: auto;
}

.im-collection-filter-tables .content {
  margin-bottom: 10px;
}

.product-row,
.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  padding: 10px;
  background-color: white;
}

.product-row:nth-child(odd) {
  background-color: #ededed;
}

.product-row div,
.header-row div {
  width: 24%;
  text-align: center;
  padding: 10px;
}

.product-row a {
  text-decoration: none;
  color: white;
  background-color: #0853a2;
  padding: 12px 20px;
  transition: background-color 0.3s ease;
  border-radius: 50px;
  display: inline-block;
}

.product-row a:hover {
  background-color: #0a6ecb;
}

.header-row {
  background-color: #0853a2;
  color: white;
  padding: 15px 10px;
}

.collapsible {
  cursor: pointer;
  background-color: white;
  color: #0853a2;
  padding: 0;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.collapsible:active,
.collapsible:hover {
  background-color: #f8f8f8;
}

.collapsible-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 65px;
  border: 1px solid lightgray;
  padding: 0 10px;
  box-sizing: border-box;
}

.collapsible-header span {
  font-size: 1.8rem;
  font-weight: 700;
}

.collapsible-header::after {
  content: '+';
  color: #0853a2;
  font-weight: bold;
  font-size: 30px;
  float: right;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.collapsible.active .collapsible-header::after {
  display: none;
}

.collapsible:hover .collapsible-header::after {
  color: #0853a2;
}

.collapsible.active .collapsible-header {
  background-color: #0853a2;
}

.collapsible.active .collapsible-header span {
  color: white;
}

.content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.active,
.collapsible:hover {
  background-color: #f8f8f8;
}

.active span {
  color: white;
}

.active .collapsible-header::after {
  color: white;
}

@media (max-width: 768px) {
  .product-row div,
  .header-row div {
    width:100%;
  }
}
/* END_SECTION:filter-collapsible-table */

/* START_SECTION:search-bar (INDEX:94) */
.search-bar {
  width: {{ section.settings.width }}%;
  margin: 0 auto;
}
.search-bar input[type='search'] {
  width: 100%;
  padding: 15px;
  font-size: {{ section.settings.font_size }}px;
}
.search-bar button {
  padding: 15px;
  background-color: {{ section.settings.button_background_color }};
  color: {{ section.settings.button_text_color }};
  border: none;
}
/* END_SECTION:search-bar */