.openDetails {
  cursor: pointer;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0.5;
  background-color: gray;
  z-index: 7;
}

.customConfirm {
  display: flex;
  gap: 30px;
  flex-direction: column;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9;
  background-color: #FFFFFF;
  box-shadow: 1px 1px 2px #888888;
  transform: translate(-50%, -50%);
  padding: 4vh 3vw;
}
.customConfirm .button-container {
  margin-bottom: 0;
}
.customConfirm h1 {
  font-size: 17px;
}

.popup {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  max-height: 90vh;
  padding: 4vh 3vw;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 1px 1px 2px #888888;
  overflow: hidden;
  overflow-y: auto;
  z-index: 8;
  transform: translate(-50%, -50%);
  width: 80%;
}
@media screen and (max-width: 950px) {
  .popup {
    width: 95%;
  }
}
.popup .popup-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.popup .popup-content form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 800px) {
  .popup .popup-content form {
    grid-template-columns: 1fr;
  }
}
.popup .popup-content h1 {
  font-weight: 600;
}
.popup .popup-content h2 {
  font-size: 13px;
  font-weight: 500;
  color: #131523;
}
.popup .popup-content label {
  font-weight: 500;
  color: #616F7C;
}
.popup .popup-content .button-container {
  margin: 25px 0 0;
}
.popup .close {
  position: absolute;
  right: 2%;
  top: 3%;
  fill: var(--navy);
  cursor: pointer;
  font-size: 20px;
  width: 20px;
}

.notif {
  position: fixed;
  right: 1em;
  top: 115px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px 10px;
  border-radius: 10px;
  box-shadow: 3px 3px 5px grey;
  z-index: 10;
  color: #FFFFFF;
}
.notif.error {
  background-color: var(--red);
}
.notif.success {
  background-color: var(--green);
}/*# sourceMappingURL=popup.css.map */