/* [project]/components/ui/Modal/modal.module.css [app-client] (css) */
.modal-module__hASgMa__overlay {
  z-index: 1035;
  background-color: #00000080;
  position: fixed;
  inset: 0;
}

.modal-module__hASgMa__content {
  z-index: 99999;
  background-color: var(--color-background);
  border-radius: 8px;
  outline: none;
  width: 80%;
  max-width: 80vw;
  height: max-content;
  max-height: 90vh;
  margin: auto;
  display: flex;
  position: absolute;
  inset: 40px 0;
  overflow: hidden;
}

.modal-module__hASgMa__content_small {
  z-index: 99999;
  background-color: var(--color-background);
  border-radius: 8px;
  outline: none;
  width: 356px;
  height: max-content;
  margin: auto;
  display: flex;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.modal-module__hASgMa__body {
  width: 100%;
  padding: 20px;
  position: relative;
  overflow: hidden auto;
}

.modal-module__hASgMa__close_button {
  color: #696969;
  width: 30px;
  height: 30px;
  box-shadow: none;
  z-index: 1;
  background-color: #0000;
  border: 0;
  border-radius: 50%;
  outline: 0;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 550px) {
  .modal-module__hASgMa__content {
    border-radius: 0;
    width: 100%;
    max-height: 100%;
    inset: 0;
  }

  .modal-module__hASgMa__content_small {
    width: 92%;
    inset: 90px 10px;
  }
}

/*# sourceMappingURL=components_ui_Modal_modal_module_82ac357d.css.map*/