/** Shopify CDN: Minification failed

Line 19:14 Expected identifier but found whitespace
Line 19:16 Unexpected "{"
Line 19:25 Expected ":"
Line 19:51 Expected ":"
Line 20:17 Expected identifier but found whitespace
Line 20:19 Unexpected "{"
Line 20:28 Expected ":"
Line 20:57 Expected ":"

**/


/* CSS from section stylesheet tags */
.browse-collection {
  text-align: center;
  margin: 2em 0;
  padding-top: {{ section.settings.padding_top }}em;
  padding-bottom: {{ section.settings.padding_bottom }}em;
}

.browse-collection h2 {
  margin-bottom: 0;
}

.browse-collection p {
  margin-top: 0;
}

.collection-lists {
  display: grid;
  grid-template-areas:
    "one one one two two two"
    "one one one three three three";
  gap: 1em;
  padding-top: 1em;
}

.collection-lists a {
  padding: 6em 1em;
  text-align: center;
  display: grid;
  align-items: center;
  position: relative;
}

.collection-lists a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  outline: 1px dotted #fff;
  outline-offset: -11px;
  background: rgba(0,0,0,0.1);
}

.collection-lists h3 {
  color: #fff;
  z-index: 1;
  font-size: clamp(16px, 4vw, 22px);
  letter-spacing: 0.6px;
}

.collection-lists img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.browse-collection a.child-col-1 { grid-area: one; }
.browse-collection a.child-col-2 { grid-area: two; }
.browse-collection a.child-col-3 { grid-area: three; }

.collection-lists svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.1);
  width: 100%;
  height: 100%;
}
ul.custom--tabs {
  list-style-type: none;
  width: 100%;
  max-width: 1600px;
  display: flex;
  flex-wrap: wrap;
  margin: 10px auto;
  padding: 0;
}

.custom--tabs .tab__list {
  background-color: #efefef;
  display: inline-block;
}

.custom__tab-content {
  display: none;
}

.custom__tab-content.active {
  display: block;
}

.tab__list h6.custom-tab {
  display: inline-block;
  padding: 12px 18px;
  cursor: pointer;
  margin: 0;
  font-size: 16px;      /* increase size */
  font-weight: 700;    /* bold */
  letter-spacing: 0.3px;
}

.tab__list.active {
  background-color: #dfdfdf;
}

.tab__list.active h6.custom-tab {
  color: #000;
  font-weight: 800;
  border-bottom: 2px solid #d32f2f;
}


.tab__list h6.custom-tab.active {
  color: #000;
  font-weight: 800;
  border-bottom: 2px solid #d32f2f;
  background-color: #dfdfdf;
}

@media only screen and (min-width: 577px) {
  .tab__list h6.custom-tab {
    font-size: 17px;
  }
}

@media only screen and (max-width: 576px) {
  ul.custom--tabs {
    flex-direction: column;
  }

  .custom--tabs .tab__list .custom-tab {
    width: 100%;
    padding: 10px 15px;
  }

  .tab__list h6.custom-tab {
    font-size: 15px;
  }

  .custom__tab-content.active {
    padding: 0 15px;
  }
}