.popup {
  visibility: hidden;
  &.active {
    visibility: visible;
    .popup-inner {
      transform: translateY(0);
      opacity: 1;
    }
  }
}
.popup-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow-y: auto;

}
.popup-inner {
  background-color: #ffffff;
  padding: 30px;
  max-width: 100%;
  border-radius: 16px;
  width: fit-content;
  position: relative;
  transform: translateY(100%);
  opacity: 0;
  @include _transition;
  .close {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    i {
      font-size: 24px;
    }
  }
}
