/* //////////////////////////////////////////////// */
/* Background */

.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  pointer-events: none;
  opacity: 0;
  background-color: var(--white);
  z-index: 5;
  transition: all 0.5s ease-in-out;
}

.modal-bg::-webkit-scrollbar {
  display: none;
}

.modal-bg.show {
  pointer-events: all;
  opacity: 1;
}

/* //////////////////////////////////////////////// */
/* Modal */

.modal {
  padding: 10.4rem 1.2rem 6.4rem 1.2rem;
}

/* //////////////////////////////////////////////// */
/* Title */

.modal-title {
  font-family: seasons-bold, sans-serif;
  font-size: 3.6rem;
}
