.modal {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  position: absolute;
  z-index: var(--z-index-10);
  top: 0;
  left: 0;
}

.modal--hidden {
  transition: all 0.4s linear;
  opacity: 0;
  visibility: hidden;
  display: none;
}

.modal--overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  background-color: var(--overlay-primary);
}

.modal--box {
  background-color: var(--color-accent-100);
  border-radius: var(--radius-five);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-width: 576px;
  min-height: 300px;
  padding: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
