body.geofilter-no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.popup-geofilter {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  background: rgba(0,0,0,.45);
  -webkit-transition: opacity .4s,visibility .4s;
  transition: opacity .4s,visibility .4s;
}

.popup-geofilter .geofilter__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 90%;
  max-height: 100vh;
  max-height: calc(var(--vh, 1vh) * 100);
  -ms-flex-item-align: end;
  align-self: flex-end;
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transition-delay: .6s;
  transition-delay: .6s;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s,-webkit-transform .4s;
}

.popup-geofilter .geofilter__inner.block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 25vh;
}

.popup-geofilter.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 300000;
}

.popup-geofilter .geofilter__head {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.popup-geofilter .geofilter__logo {
  padding-bottom: 3rem;
}

.popup-geofilter .geofilter__buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.popup-geofilter .geofilter__button {
  padding: 0 5px;
}

.popup-geofilter .geofilter__body {
  padding: 0 1rem;
  text-align: center;
}

.popup-geofilter .geofilter__foot {
   margin-top: 2rem;
}

.geofilter-btn--optin {
  width: 10rem;
  margin: auto;
  padding: 20px; 
}

.popup-geofilter .geofilter__introduction {
  font-size: 1.4rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 675px) {
  .popup-geofilter .geofilter__inner {
    width: 80%;
    margin: 0 auto;
  }

  .geofilter-btn--optin {
    width: 6rem;
    margin: auto;
    padding: 20px; 
  }
}
@media (min-width: 675px) {
  .popup-geofilter .geofilter__inner {
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .popup-geofilter .geofilter__inner {
      width: 100%;
  }
  .popup-geofilter .geofilter__head {
    padding: 2.8rem 3.5rem 2.4rem;
  }
  .popup-geofilter .geofilter__body {
    padding: 0 4rem;
  }
  .popup-geofilter .geofilter__foot {
    margin-top: 5rem;
  }

  .popup-geofilter .geofilter__introduction {
    margin-bottom: 3rem;
  }
}

.banner-geofilter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  background-color: white
}

.banner-geofilter.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 300000;
}

.banner-geofilter .geofilter__head {
  display: flex;
  justify-content: flex-end;
  margin: 5px 10px;
}

.banner-geofilter .geofilter__body {
  display: flex;
  justify-content: space-between;
}

.banner-geofilter .geofilter__logo {
  display: flex;
  align-items: center;
}

.banner-geofilter .geofilter__message {
  display: flex;
  align-items: center;
}

.banner-geofilter .geofilter__buttons {
  display: flex;
  align-items: center;
}

.banner-geofilter .geofilter__close {
  display: flex;
  justify-content: flex-end;
  margin: 5px 10px;
}

.banner-geofilter .geofilter__foot {
  display: flex;
  flex-direction: column;
}

.banner-geofilter .geofilter__introduction {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .banner-geofilter .geofilter__message {
    padding: 5px;
    flex-direction: column;
    text-align: center;
  }
  .banner-geofilter .geofilter__introduction {
    line-height: initial;
    margin-bottom: 5px;
  }
}