.overlay {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: rgba(255, 255, 255, 0.02);
  top: 0;
  left: 0;
  z-index: -999;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.overlay.open {
  z-index: 999;
  opacity: 1;
}

.dismiss-area {
  width: 67vw;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
}

.modal {
  position: fixed;
  height: 99vh;
  width: 33vw;
  bottom: -100vw;
  right: 2vw;
  background: #ffffff8f;
  box-shadow: 4px -2px 12px 2px #00000014;
  border-radius: 1vw;
  transition: all 0.8s ease-in-out;
  overflow-y: auto;
  backdrop-filter: blur(4px);
}

.open .modal {
  bottom: -1vw;
}

.modal-title {
  width: 100%;
  height: 5vw;
  border-bottom: 1px dashed purple;
  padding: 1vw;
  box-sizing: border-box;
}

.modal .content {
  padding: 1.2vw;
  margin-top: 4vw;
  font-size: 1vw;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
