/** Shopify CDN: Minification failed

Line 26:22 Expected identifier but found whitespace
Line 26:24 Unexpected "{"
Line 26:33 Expected ":"
Line 26:64 Expected identifier but found "!"
Line 35:20 Expected identifier but found whitespace
Line 35:22 Unexpected "{"
Line 35:31 Expected ":"
Line 35:63 Expected identifier but found "!"

**/


/* CSS from section stylesheet tags */
/* 1. Fjern tekst-justering for menyer og lokaliserings­velger */
  .custom-footer__menus,
  .custom-footer__aside .localization-selectors {
    text-align: initial;
  }

  /* 2. Tving meny­justering på mobil */
  @media (max-width: 768px) {
    .custom-footer__menus {
      display: flex;
      justify-content: {{ section.settings.menu_mobile_align }} !important;
      text-align: initial !important;
    }
    
  }

  /* 3. Tving lokaliserings­justering alltid */
  .custom-footer__aside .localization-selectors {
    display: flex;
    justify-content: {{ section.settings.localization_align }} !important;
    text-align: initial !important;
  }

  /* — Grunnleggende styling — */
  .custom-footer { padding: 4rem 1rem; background: #fafafa; text-align: center; }
  .custom-footer__top { margin-bottom: 3rem; }
  .custom-footer__logo img { max-width: 150px; display: block; margin: 0 auto; }
  .custom-footer__heading { margin: 0; }

  .custom-footer__social { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem; }

  .custom-footer__newsletter { margin-bottom: 3rem; }
  .newsletter__field { position: relative; display: inline-block; width: 100%; max-width: 400px; }
  .newsletter__field input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    font-size: 1rem;
    border: none; border-radius: 4px; background: #eee;
  }
  .newsletter__field button {
    position: absolute; top: 50%; right: 1rem;
    transform: translateY(-50%);
    background: none; border: none; font-size: 1.5rem; cursor: pointer;
  }

  .custom-footer__menus { display: flex; justify-content: center; gap: 2rem; margin-bottom: 3rem; }
  .menu { list-style: none; padding: 0; margin: 0; }
  .menu li { display: inline-block; margin: 0 0.5rem; }
  .menu a { text-decoration: none; color: inherit; }

  .custom-footer__aside { border-top: 1px solid #e1e1e1; padding-top: 2rem; }
  .localization-selectors { display: flex; gap: 1rem; margin-bottom: 1rem; }
  .payment-icons { display: flex; justify-content: center; gap: 1rem; margin-top: 1rem; }

  @media (max-width: 768px) {
    .custom-footer__menus { flex-direction: column; gap: 1rem; }
    .menu li { display: block; margin: 0.5rem 0; }
    .newsletter__field { max-width: 100%; }
    .custom-footer__logo img { max-width: 100px; }
  }
  @media (min-width: 1200px) {
    .newsletter__field { max-width: 500px; }
  }
/* —————————————————————————— */
/*  MEMBER SIGNUP SECTION STYLES  */
/* —————————————————————————— */
.member-signup {
  box-sizing: border-box;
  max-width: 500px;
  margin: 0 auto;
  padding: 40px;
  font-family: sans-serif;
}
@media only screen and (max-width: 768px) {
  .member-signup { padding: 20px; }
}
.member-signup__heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
.member-signup__subhead {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}
.member-signup__success {
  display: none;
  font-size: 18px;
  color: #00574b;
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 24px;
}
.member-signup__input {
  width: 100%;
  height: 48px;
  padding: 12px;
  border: 2px solid #000;
  font-size: 16px;
  box-sizing: border-box;
  margin-bottom: 16px;
}
.member-signup__tel-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  border: 2px solid #000;
  box-sizing: border-box;
  margin-bottom: 16px;
}
.member-signup__tel-wrapper .intl-tel-input,
.member-signup__tel-wrapper .intl-tel-input .selected-flag,
.member-signup__tel-wrapper .intl-tel-input input {
  height: 100%;
  box-sizing: border-box;
}
.member-signup__tel-wrapper .intl-tel-input {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 !important;
  border: none !important;
}
.member-signup__tel-wrapper .selected-flag {
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-right: 1px solid #000;
  height: 100%;
  box-sizing: border-box;
}
.member-signup__tel-wrapper .intl-tel-input input {
  flex: 1;
  border: none !important;
  margin: 0;
  padding: 0 12px;
  font-size: 16px;
  background: transparent;
}
button.member-signup__btn-primary {
  display: block;
  width: 100%;
  padding: 14px;
  background-color: #3A4FB1 !important; /* Din Pantone-hex */
  color: #fff !important;
  border: none;
  font-size: 16px;
  cursor: pointer;
  text-transform: lowercase;
  margin-bottom: 24px;
}
.member-signup__btn-secondary {
  display: block;
  width: 100%;
  padding: 14px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
}
body.template-page-members-only .site-footer,
body.template-page-members-only footer {
  display: none !important;
}