.iris-modal-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: rgba($color: #000000, $alpha: 0.5);

  opacity: 0;

  transition: opacity 300ms;
  &__fade-in {
    opacity: 1;
    &__display {
      display: inline-block;
    }
  }
  &__fade-out {
    opacity: 0;
    &__dismiss {
      display: none;
    }
  }
}

.iris-modal-content-wrapper {
  &.default-width {
    width: 37.5rem;
  }
  border-radius: 8px;
  overflow: hidden;
  // overflow: hidden;
  position: absolute;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -150%);
  opacity: 0;
  transition: all 500ms;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  &--slide-down {
    transform: translate(-50%, -50%);
    opacity: 1;
  }

  &--slide-up {
    transform: translate(-50%, -150%);
    opacity: 0;
  }

  &__container {
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2em;

    &__content {
      flex-grow: 1;
      padding-top: 1em;
    }
    &__action-btns {
      margin-left: auto;
      display: flex;
      .iris-button + .iris-button {
        margin-left: 0.5rem;
      }
    }
  }
}
