@media (min-width: 1280px) {
    .accordion {
      width: 480px;
    }
  }
  .accordion__btn {
    display: flex;
    justify-content: space-between;
    font-family: "Moderat Condensed", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 21px;
    line-height: 100%;
    color: var(--color-dark);
    width: 99%;
    cursor: pointer;
    padding: 18px 0;
    background: var(--color-white);
    outline: none;
    text-align: left;
    margin-bottom: 4px;
  }
  @media (min-width: 768px) {
    .accordion__btn {
      width: 97%;
      margin-bottom: 0;
    }
  }
  .accordion__btn:after {
    content: "+";
    margin-left: 3px;
  }
  .accordion__description {
    /* font-family: "Moderat Condensed", sans-serif; */
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 0.02em;
    color: #000000;
    max-width: 340px;
  }
  @media (min-width: 768px) {
    .accordion__description {
      text-align: left;
      max-width: 440px;
    }
  }
  .accordion a {
    text-decoration: underline;
    color: #000000;
  }
  .accordion .panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
  }
  .accordion .active:after {
    content: "−";
  }
  .product__information .accordion-custom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    border-bottom: 1px solid #000000;
  }
  .product__information .accordion-custom__description {
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 0.02em;
    /* font-family: "Moderat Condensed", sans-serif; */
    font-style: normal;
    font-weight: 400;
    color: #000000;
    max-width: 100%;
    margin-bottom: 25px;
    padding-right: 5px;
  }
  @media (min-width: 768px) {
    .product__information .accordion-custom__description {
      text-align: left;
    }
  }
  .product__information .accordion-custom__description a {
    color: #000000;
    text-decoration: underline;
  }
  .product__information .accordion-custom__item {
    position: relative;
    width: 100%;
    cursor: pointer;
  }
  .product__information .accordion-custom__item:after {
    position: absolute;
    right: 16px;
    content: "+";
    font-size: 24px;
    top: 16px;
  }
  .product__information .accordion-custom__item.open:after {
    content: "−";
  }
  .product__information .accordion-custom__item h3 {
    display: flex;
    justify-content: space-between;
    /* font-family: "Moderat Condensed", sans-serif; */
    font-style: normal;
    font-weight: 400;
    color: var(--color-dark);
    width: 99%;
    cursor: pointer;
    padding: 18px 0;
    background: var(--color-white);
    outline: none;
    text-align: left;
    margin-bottom: 4px;
    font-size: 21px;
    line-height: 100%;
  }
  .product__information .accordion-custom__item span {
    /* font-family: "Moderat Condensed", sans-serif; */
    font-style: normal;
    font-weight: 400;
    /* text-transform: uppercase; */
    /* font-size: 11px; */
    letter-spacing: 1px;
  }
  .product__information .accordion-custom__item ul {
    list-style: disc;
    padding-left: 40px;
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 0.02em;
    /* font-family: "Moderat Condensed", sans-serif; */
    font-style: normal;
    font-weight: 400;
    color: #000000;
    max-width: 100%;
  }
  .product__information .accordion-custom__item ol {
    padding-left: 40px;
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 0.02em;
    /* font-family: "Moderat Condensed", sans-serif; */
    font-style: normal;
    font-weight: 400;
    color: #000000;
    max-width: 100%;
  }
  .product__information .accordion-custom__item:not(.open) div {
    display: none;
  }
  