.overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 40;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
  height: 100vh;
  width: 100vw;
  transform: scale(1.1);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.12s ease-out, opacity 0.12s ease-out;
}
.overlay.display {
  transform: scale(1);
  opacity: 1;
  pointer-events: all;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--secondary-color);
  padding: 20px;
  border-radius: 8px;
}

.cancel_container {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  height: 25px;
  width: 25px;
}

.main {
  margin-top: 40px;
}

.number {
  font-size: 48px;
}

.form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px 10px;
}

.detail {
  text-align: center;
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.text {
  font-size: 14px;
  margin-top: 10px;
}
