.wrapper {
  height: 100%;
}
.modal {
  &__wrapper {
    position: fixed;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 100%;
    min-width: 250px;
    min-height: 100px;
    width: auto;
    height: auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 20px 0px 20px;

    &.disableCenterPosition {
      transform: unset;
    }
  }

  &_close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 9;
  }
  &_content {
    height: 100%;
  }

  &_bg {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 29, 29, 0.4);
    opacity: 0.4;
    backdrop-filter: blur(50px);
  }
}

@media (max-width: 650px) {
  .modal {
    &__wrapper {
      width: 90%;
      max-width: unset;
    }
  }
}
