/* || Modal */

.modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.modal.open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.modal-bg {
  position: absolute;
  background: var(--light-blue-alpha);
  width: 100%;
  height: 100%;
}

.modal-container {
  width: 75vw;
  height: 75vh;
  border-radius: 2px;
  background: #fff;
  position: relative;
  padding: 1.5rem 1.5rem 2rem 1.5rem;
}

#modal-content {
  margin-top: 0.5rem;
}

.modal-close {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  outline: none;
  appearance: none;
  color: var(--medium-blue);
  background: none;
  border: 0px;
  font-weight: bold;
  cursor: pointer;
}
