.popup_area {
  position: absolute;
  width: 100vw;
  height: auto;
  z-index: 4;
}

.popup {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  width: 100%;
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
  transform: translate(0, -10px);
  background-color: #efefff;
}
.popup_body {
  display: flex;
  flex-direction: column;
  width: 100vw;
  padding: 32px 60px;
  min-height: 200px;
  background-color: #efefff;
}

.popup.active {
  max-height: 500px;
  opacity: 1;
  transform: translate(0, 0);
}

.popup_trigger {
  text-align: center;
  width: 100vw;
  height: 3rem;
  line-height: 3rem;
  font-size: x-large;
  color: #fff;
  background-color: #030968;
  border-radius: 0 0 50% 50%;
  cursor: pointer;
}
.popup_trigger p {
  transition: transform 0.3s ease;
}

.popup_trigger.active p {
  transform: rotate(180deg);
}
/*# sourceMappingURL=master.css.map */