/** Shopify CDN: Minification failed

Line 69:2 Unexpected "{"
Line 69:3 Expected identifier but found "%"
Line 78:2 Unexpected "{"
Line 78:3 Expected identifier but found "%"

**/
#footer-wrapper {
  text-align: var(--footer-text-align);
}
.footer--divider {
  border-bottom: 1px solid var(--dotted-color);
  margin-top: 0px;
}

.footer-block .logo-image {
  max-width: var(--footer-logo-width);
  width: var(--footer-logo-width);
}

div#bottom-footer {
  display: flex;
  margin: 0 auto;
  align-items: flex-end;
}

div#bottom-footer .footer-left {
  width: 50%;
  text-align: left;
}

div#bottom-footer .footer-right {
  width: 50%;
  text-align: right;
}
div#bottom-footer #payment {
  text-align: right;
  margin-top: 16px;
}
div#bottom-footer #footer-icons {
  margin: 0;
}
div#bottom-footer #footer-icons i {
  font-size: 19px;
}
div#bottom-footer div#copy {
  margin-top: 21px;
  text-transform: capitalize;
}
div#bottom-footer #copy p {
  text-align: left;
  margin: 0;
}
ul.policies.list-unstyled {
  display: flex;
  gap: 10px;
  list-style: none;
  margin-bottom:0;
  flex-wrap: wrap;
}
@media (min-width: 980px) {
  #footer #payment {
    text-align:   text-align: var(--footer-text-align);
  }
  #footer ul#footer-icons {
  text-align:  text-align: var(--footer-text-align);
  }
  {% if section.settings.footer_text_align == 'left' %}
    #footer ul#footer-icons li:first-child {
      margin-left: 0;
      padding-left: 0;
    }
    #footer .selectors-form {
      justify-content: flex-start;
      flex-wrap: nowrap;
    }
  {% endif %}
}
@media (max-width: 740px) {
  /* MOBILE COLLAPSIBLE FOOTER - CSS START */

  /* MOBILE FOOTER LINE STRUCTURE - START */
  #footer > section.footer-block {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid var(--dotted-color);
  }


  #footer > section.footer-block:first-child {
    padding-top: 4px;
  }

  #footer > .footer--divider {
    margin-top: 0;
    border-bottom: 1px solid var(--dotted-color);
  }

  #footer > section.footer-block .footer-sect {
    width: 100%;
  }
  /* MOBILE FOOTER LINE STRUCTURE - END */

  #footer-wrapper .footer-menu-title-desktop {
    display: none;
  }

  #footer-wrapper .footer-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 0 3px;
    margin: 0;
    border: 0;
    background: transparent;
    color: var(--footer-text);
    font: inherit;
    font-size: calc(var(--font-size) + 2px);
    font-weight: 700;
    text-align: left;
    cursor: pointer;
  }

  #footer-wrapper .footer-menu-toggle__icon {
    width: 7px;
    height: 7px;
    margin-right: 3px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 150ms ease;
  }

  #footer-wrapper .footer-menu-toggle[aria-expanded="true"] .footer-menu-toggle__icon {
    transform: translateY(2px) rotate(225deg);
  }

  #footer-wrapper .footer-menu__links {
    margin-top: 0;
    margin-bottom: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 300ms ease, opacity 200ms ease;
  }

  #footer-wrapper .footer-menu__links.is-open {
    opacity: 1;
  }

  #footer-wrapper .footer-sect > h2 {
    font-weight: 700;
  }
  /* MOBILE COLLAPSIBLE FOOTER - CSS END */

  div#bottom-footer {
    flex-wrap: wrap;
  }
  div#bottom-footer .footer-left {
    width: 100%;
    text-align: left;
    order:2;
    margin-top: 31px;
  }
  div#bottom-footer .footer-right {
    width: 100%;
    text-align: left;
    order: 1;
  }
  div#bottom-footer .selectors-form {
    justify-content: flex-start;
    margin: 0;
  }
  div#bottom-footer #payment {
    text-align: left;
  }
  div#bottom-footer  .footer-section .disclosure__toggle {
    height: 44px;
    width: 80px;
  }
  section.footer-block {
    vertical-align: top;
  }
}

@media (min-width: 741px) {
  #footer-wrapper .footer-menu-toggle {
    display: none;
  }

  #footer-wrapper .footer-menu__links {
    display: block !important;
    max-height: none;
    overflow: visible;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  #footer-wrapper .footer-menu__links,
  #footer-wrapper .footer-menu-toggle__icon {
    transition: none;
  }
}

/* =============== */
/* = Footer = */
/* =============== */
.credit img {
  height: 28px;
}

#bottom-logo {
  margin-top: 50px;
  text-align: center;
}

#footer-wrapper {
  z-index: 2;
  clear: left;
  border-top: 1px solid var(--dotted-color);
  background: var(--footer-background);
  padding: 63px 0 30px;
}

#footer-wrapper p,
#footer-wrapper a {
  color: var(--footer-text);
}

#footer-wrapper h2,
#footer-wrapper h3 {
  color: var(--footer-text);
  padding-bottom: 3px;
}

#footer-wrapper ul {
  list-style: none;
}

#footer-wrapper ul li a {
  line-height: 2.14;
  color: var(--footer-text);
}

#footer-wrapper ul li a:hover {
  color: var(--footer-text);
}

input#footer-EMAIL {
  display: inline-block;
  margin-bottom: 10px;
  background: var(--footer-input);
  color: var(--footer-input-text);
  border: 0;
  border-radius: 0;
}

input#footer-EMAIL::-webkit-input-placeholder { /* WebKit browsers */
  color: var(--footer-input-text);
}
input#footer-EMAIL:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: var(--footer-input-text);
}
input#footer-EMAIL::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: var(--footer-input-text);
}
input#footer-EMAIL:-ms-input-placeholder { /* Internet Explorer 10+ */
  color: var(--footer-input-text);
}

#footer-subscribe {
  display: inline-block;
  background: var(--footer-button);
  color: var(--footer-button-text);
  border: 0;
  font-weight: var(--main-weight);
  white-space: normal;
}

ul#footer-icons li {
  display: inline-block;
  margin: 0 10px;
  width: auto;
  height: 19px;
}

ul#footer-icons li a {
  font-size: 14px;
  color: var(--footer-icons-color);
}

.credit {
  text-align: center;
}

.credit p {
  color: var(--footer-text);
  text-transform: uppercase;
  font-size: 11px;
  margin-top: 15px;
}

.credit a {
  color: var(--footer-text);
}
#mc_embed_signup {
  width: 100%;
}

#mce-EMAIL {
  float: left;
  text-align: center;
  text-indent: 0;
}

#mc-embedded-subscribe {
  float: left;
  margin-top: 0;
}

#payment svg {
  display: inline;
  width: 40px;
  height: 25.25px;
  text-align: center;
  margin: 0 1px;
}

body.index div#footer-wrapper {
  margin-top: 0;
}

/* ---- Scrollup ---- */

.scrollup {
  width:40px;
  height:40px;
  line-height: 40px;
  opacity:0;
  position:fixed;
  bottom:20px;
  right:20px;
  z-index: 3;
  transform: translateY(100px);
  transition: all .5s ease;
  text-align: center;
  background: transparent;
}

.scrollup.showBtn {
  opacity: 0.4;
  transform: translateY(0)
  color: var(--text-color);
}

.scrollup:hover {
  text-decoration: none;
  opacity: 1;
  -webkit-transition: opacity 1000ms ease-in-out;
  -moz-transition: opacity 1000ms ease-in-out;
  -o-transition: opacity 1000ms ease-in-out;
  -ms-transition: opacity 1000ms ease-in-out;
  transition: opacity 1000ms ease-in-out;
  background: transparent;
}