.modal {
  width: 100%;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 9999;
}
.modal .modal-window {
  border-radius: 10px;
  width: 340px;
  height: 220px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
}
.modal.open {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal .modal-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border: none;
  background-color: transparent;
  border-radius: 50%;
  background-image: url('https://skidie94.cafe24.com/images/close.svg');
  background-size: contain;
}
#organization-modal .h-new-belong {
  width: 100px;
  height: 100px;
  background-color: #144597;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#organization-modal .h-new-belong span {
  color: white;
  font-size: 16px;
}
#organization-modal .h-new-info {
  background-color: white;
  position: relative;
  bottom: 20px;
  padding: 5px;
  width: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  border: 1px solid #144597;
}
#organization-modal .h-new-info p {
  color: black;
  font-size: 14px;
}
