.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 90;
  overflow: auto;
}
.modal::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-color: #000000;
  opacity: 0.5;
}
.modal__cage {
  background-color: #FFFFFF;
  margin: auto;
  width: 800px;
  max-width: 90vw;
  box-shadow: 0 0 1rem #2d2d2d;
  border-radius: 0.7rem;
}
.modal__header, .modal__content, .modal__footer {
  padding: 1rem 2.5rem;
  background-color: #FFFFFF;
}
.modal__header {
  border-bottom: 1px solid #894360;
  color: white;
  background-color: #894360;
  display: flex;
  align-items: center;
  border-top-right-radius: 0.5rem;
  border-top-left-radius: 0.5rem;
}
.modal__content {
  max-height: 75vh;
  overflow: auto;
  padding: 1rem;
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.modal__title {
  font-size: 1.35rem;
  text-transform: uppercase;
}
.modal__close {
  border: 0;
  background: transparent;
  outline: 0;
  margin-left: auto;
}
.modal__close img {
  display: block;
  width: 1rem;
  padding: 0;
}
.modal__footer {
  display: flex;
  flex-direction: row-reverse;
  border-top: 1px solid #894360;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.add-users {
  height: 55vh;
  overflow-x: hidden;
  overflow-y: auto;
}

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