.notify_wrapper {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
}
.notify_wrapper .notify {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
  max-width: 500px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 0.5rem;
  background-color: rgb(255, 255, 255);
  color: #000;
}
.notify_wrapper .notify_header {
  text-align: center;
  font-weight: bold;
  font-size: 1.85rem;
  border-bottom: 1px solid #d1d1d1;
}
.notify_wrapper .notify_content {
  height: fit-content;
  text-align: center;
  padding: 0.5rem;
}
.notify_wrapper .notify_controls {
  width: 100%;
  display: flex;
}
.notify_wrapper .notify_controls .notify_close {
  flex: 1;
  padding: 0.5rem;
  background-color: #e99414;
  text-align: center;
  cursor: pointer;
  border-radius: 0.5rem;
}

/*
    <div class="notify">
        <div class="notify_header">Alert header</div>
        <div class="notify_content">
            <p>Alert content</p>
        </div>
        <div class="notify_controls">
            <div class="notify_close">Close alert</div>
        </div>
    </div>
*/

/*# sourceMappingURL=notify.css.map */
