/********************POPUP********************/
#popup {
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  position: fixed;
  overflow-x: hidden;
  background: rgba(0, 0, 0, .8);
  transform: translateY(-120%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 9999999;
}
.popup-container {
  background: white;
  box-shadow: 0 0 15px $dark;
  margin: 2rem auto;
  max-width: 100%;
  padding: 1.675rem 2rem;
  width: 800px;
  transition: transform 0.3s ease-in-out;
  transform: translateY(-120%);
}
.popup-close {
  text-decoration: none;
  position: relative;
  top: -1rem;
  left: 100%;
}
.popup-close-x {
  height: 20px;
  width: 20px;
}
.popup-close-x path {
  fill: var(--brand-med-text);
}
body.popup-open {
  height: 100%;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  pointer-events: none;
  touch-action: none;
}
body.popup-open #popup {
  pointer-events: auto;
  touch-action: auto;
}
body.popup-open #popup,
body.popup-open .popup-container {
  opacity: 1;
  transform: translate(0);
}
