.modal__root {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 3000;
}

.modal__root.open {
  display: flex;
}

.modal__header {
  display: flex;
  justify-content: flex-end;
}

.modal__content {
  position: relative;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #f6f7f8;
  background-color: white;
  color: #1a1a1b;
  box-shadow: 0 4px 23px 0 rgb(0 0 0 / 20%);
  width: 90%;
  max-height: 90%;
  overflow-y: auto;
  animation: SlideIn 200ms;
  max-width: 500px;
  padding: 16px;
  box-sizing: border-box;
}
