.modalChildren {
  cursor: pointer;
  display: inline;
}

.modalInner {
  @include flex-align(center, center);

  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;

  @include customZindex(modal);
}

.activeModal {
  display: flex;
}

.modalOverlay {
  background: rgb(0 0 0 / 30%);
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;

  @include customZindex(modal);
}

.modalContent {
  background: #000;
  color: #808080;
  padding: 2rem;
  min-width: 30rem;
  width: 100%;
  max-width: calc(var(--main-container-max) - 48px);
  border-radius: 1rem;
  position: relative;

  @include customZindex(modal);
}

.closeIcon {
  position: absolute;
  top: 1rem;
  right: 1rem;
}