/** Shopify CDN: Minification failed

Line 90:27 Expected ")" to end URL token
Line 125:27 Expected ")" to end URL token

**/
.cstm-pdp-accord-wrapper {
  width: 100%;
  height: auto;
  padding: 25px 0;
}

.cstm-pdp-accord-wrapper h4 {
  text-align: center;
  font-size: 2.875em;
  margin-bottom: 40px;
}

.cstm-pdp-accord-nav {
  width: 100%;
  margin: 0 auto 20px;
}

.cstm-pdp-accord-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
}

.cstm-pdp-accord-nav li {
  padding: 10px 20px 0 0;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  font-size: 1.375em;
}

.cstm-pdp-accord-nav li.active {
  color: #262626;
}

.cstm-pdp-accord-nav li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #E7E4E4;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 2px;
  position: relative;
  top: -1px;
  transition: transform 0.3s ease;
}

.cstm-pdp-accord-nav li.active::before {
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  background-color: #CDB38B;
}

.cstm-pdp-accord-accordion-container {
  width: 100%;
  margin: 0 auto;
}

.cstm-pdp-accord-category {
  margin-bottom: 40px;
}

.cstm-pdp-accord-category-header {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  cursor: pointer;
  display: none;
  position: relative;
}

.cstm-pdp-accord-category-header::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 12px;
  height: 12px;
  background-image: url({{ 'down-arrow-dark.svg' | asset_url }});
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  top: 29px;
}

.cstm-pdp-accord-category.active .cstm-pdp-accord-category-header::after {
  transform: rotate(180deg);
}

.cstm-pdp-accord-item {
  border-bottom: 1px solid #ddd;
}

.cstm-pdp-accord-no-accord {
  font-size: 1.25em;
  padding: 25px
}

.cstm-pdp-accord-question {
  font-size: 1.375em;
  padding: 20px;
  cursor: pointer;
  font-weight: 700;
  position: relative;
}

.cstm-pdp-accord-question::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 12px;
  height: 12px;
  background-image: url({{ 'down-arrow-dark.svg' | asset_url }});
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  top: 32px;
}

.cstm-pdp-accord-question.active::after {
  transform: rotate(180deg);
}

.cstm-pdp-accord-answer {
  font-size: 1.375em;
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.cstm-pdp-accord-question.active + .cstm-pdp-accord-answer {
  max-height: 500px;
  padding: 0 20px 20px;
}

.cstm-pdp-accord-category-content .cstm-pdp-accord-item:nth-child(odd) {
  background-color: #E7E4E4;
}

.cstm-pdp-accord-category-content .cstm-pdp-accord-item:nth-child(even) {
  background-color: #ffffff;
}

/* Mobile */
@media only screen and (max-width: 766px) {
  .cstm-pdp-accord-question {
    font-size: 4.5vw;
  }

  .cstm-pdp-accord-answer {
    font-size: 3.5vw;
  }

  .cstm-pdp-accord-question::after {
    top: 32px;
  }
}

/* Tablet */
@media only screen and (min-width: 767px) and (max-width: 1023px) {
  .cstm-pdp-accord-wrapper h4 {
    font-size: 3.5vw;
  }

  .cstm-pdp-accord-question {
    font-size: 2.5vw;
  }

  .cstm-pdp-accord-answer {
    font-size: 2vw;
  }

  .cstm-pdp-accord-question::after {
    top: 32px;
  }
}

/* Range */
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .cstm-pdp-accord-question {
    font-size: 2.875em;
  }

  .cstm-pdp-accord-answer {
    font-size: 1.375em;
  }

  .cstm-pdp-accord-question::after {
    top: 29px;
  }

  .cstm-pdp-accord-nav ul {
    justify-content: center;
  }
}

/* Tablet & Mobile */
@media (max-width: 1023px) {
  .cstm-pdp-accord-nav {
    display: none;
  }

  .cstm-pdp-accord-category-header {
    display: block;
    background: #E7E4E4;
    padding: 15px 20px;
    margin-bottom: 10px;
  }

  .cstm-pdp-accord-category-content {
    display: none;
  }

  .cstm-pdp-accord-category.active .cstm-pdp-accord-category-content {
    display: block;
  }
}

/* Desktop only */
@media (min-width: 1024px) {
  .cstm-pdp-accord-category-header {
    display: none;
  }

  .cstm-pdp-accord-category {
    display: none;
  }

  .cstm-pdp-accord-category.active {
    display: block;
  }
}