.custom-modal {
  display: none;
  position: fixed;
  height: 100%;
  width: 100vw;
  left: 0px;
  top: 0px;
  justify-content: center;
  align-items: center;
  background-color: rgba(44, 44, 44, 0.75);
  overflow: hidden;
}

.custom-modal-dialog {
  background-color: white;
  padding: 1rem;
  width: 800px;
  height: min-content;
  border-radius: 8px;
}

.custom-modal.visible {
  display: flex;
  z-index: 2000;
}

.custom-modal .custom-modal-content {
  display: grid;
  row-gap: 1rem;
}

.custom-modal .custom-modal-header {
  display: grid;
  grid-template-columns: 1fr auto;
}

.custom-modal .btn-close {
  font-size: 1.5rem;
  font-weight: 300;
  cursor: pointer;
}