/** Shopify CDN: Minification failed

Line 225:105 Unterminated string token
Line 228:6 Unterminated string token

**/
.ed__footer {
  ul {
    padding: 0;
    margin: 0;
  }
  li {
    list-style: none;
  }
  h2, h3{
    padding: 0;
    margin: 0;
  }
  p {
    padding: 0;
    margin: 0;
  }
  svg {
    display: flex;
  }
}
.footer__top {
    display: flex;
    align-items: flex-start;
    padding: 80px 0px 80px 0px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    gap: 20px;
    @media screen and (max-width: 1200px) {
      flex-wrap: wrap;
    }
    @media screen and (max-width: 768px) {
      flex-direction: column;
      padding: 20px 0px 20px 0px;
      gap: unset;
    }
}

/* footer block style */
.footer__logo {
  width: 220px;
  @media screen and (max-width: 768px) {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
}
img.footer__main-logo {
  display: block;
  max-width: 96px;
  height: auto;
}
.footer__top .menu.first__menu_block {
  width: 320px;
  @media screen and (max-width: 768px) {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}
.footer__top .menu {
  width: 220px;
  @media screen and (max-width: 768px) {
    width: 100%;
  }
}
.footer__top .custom_html {
  width: 320px;
  @media screen and (max-width: 768px) {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 0px;
  }
}
.newsletter {
  width: 360px;
  @media screen and (max-width: 768px) {
    width: 100%;
    margin-top: 32px;
  }
}
.menu__block_title {
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 5px !important;
  svg {
    display: none;
  }
  @media screen and (max-width: 768px) {
    svg {
      display: flex;
    }
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0px !important;
  }
}
.menu__item a {
  font-weight: 400;
  font-size: 13px;
  line-height: 140%;
  letter-spacing: 0px;
  color: rgba(255,255,255,1);
  text-decoration: none;
}
.newsletter {
  @media screen and (max-width: 768px) {
    text-align: center;
  }
  .title {
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: rgba(255,255,255,1);
    margin-bottom: 10px !important;
    @media screen and (max-width: 768px) {
      font-size: 20px;
    }
  }
  .description {
    font-weight: 400;
    font-size: 13px;
    line-height: 140%;
    letter-spacing: 0px;
    color: rgba(255,255,255,1);
  }
  .info {
    font-weight: 300;
    font-size: 11px;
    line-height: 140%;
    letter-spacing: 0px;
    color: #ffffff80;
    margin-top: 15px;
  }
}
.newsletter_form {
  input[type="email"] {
    font-family: FunnelDisplay!important;
    width: 360px;
    height: 48px;
    border-radius: 24px;
    padding: 14px 24px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0px;
    text-align: left;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    @media screen and (max-width: 768px) {
      font-size: 13px;
      padding: 11px 24px;
      width: 100%;
    }
  }
  input[type="email"]:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
}
button.submit__button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateX(-50%);
  outline: none;
  border: none;
  background: transparent;
  svg {
    display: flex;
  }
}
.form__submit-success {
    margin: 0;
    padding: 0;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px !important;
    color: #f3f3f3;
    svg {
      display: flex;
      margin-top: -2px;
    }
  }
.field__container {
  position: relative;
}
/* footer block style */
@media screen and (max-width: 768px) {
  .js-menu-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .js-menu-toggle.active + .js-menu-list {
    max-height: 500px; /* adjust based on content size */
  }

  .js-menu-toggle {
    cursor: pointer;
    position: relative;
  }

  .js-menu-toggle::after {
    content: '<svg width="8" height="6" viewBox="0 0 8 6" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M7.5 1.4165L4 4.9165L0.5 1.4165" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>
    ';
    position: absolute;
    right: 0;
    transition: transform 0.3s;
  }

  .js-menu-toggle.active::after {
    transform: rotate(180deg);
  }
  .footer__top .menu {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 0px;
  }

  .footer__top .menu:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.12);  
  }

}
.footer__bottom {
  padding-top: 36px;
  padding-bottom: 36px;
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 1024px) {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  @media screen and (max-width: 768px) {
    justify-content: unset;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.social-media-list {
    display: flex;
    align-items: center;
    gap: 24px;
}
.bottom__content-middle {
  display: flex;
  align-items: center;
  gap: 24px;
  @media screen and (max-width: 768px) {
    flex-direction: column;
    gap: 10px;
  }
  ul {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  p {
    font-size: 13px;
    line-height: 140%;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 0.6);
  }
  a {
    font-size: 13px;
    line-height: 140%;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
  }
}
.list.list-payment {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.js-menu-toggle .menu-icon {
  transition: transform 0.3s ease;
}

.js-menu-toggle.active .menu-icon {
  transform: rotate(180deg);
}


