.modalContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3000;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
}
.modal {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  max-width: 600px;
  min-height: 150px;
  background-color: var(--spaWhite);
  padding: 20px;
  color: var(--spaPrimary);
  font-family: var(--body-font-family);
  border-radius: 30px;
}
.modal > h3 {
  color: var(--spaPrimary);
}
.modalCloseButton {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: transparent;
  color: var(--spaBlack);
  border: none;
  cursor: pointer;
  z-index: 15;
  transition: all 0.5s ease;
  height: 50px;
  width: 50px;
}
.modalCloseButton:hover {
  color: var(--spaPrimary);
  transform: scale(1.1);
}
.modalBody {
  padding: 5px 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
}
#salonSearchModalContainer {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 600;
  display: flex;
}
#salonSearchInput {
  width: 100%;
  height: 30px;
  box-sizing: border-box;
}
#noResult {
  color: var(--spaPrimary);
  font-family: var(--body-font-family);
  background-color: #ffffff5b;
  padding: 10px 20px;
  border-radius: 10px;
}

#newsletterError {
  color: var(--spaPrimary);
}
#popup {
  max-width: 100vw;
  padding: 0;
  width: fit-content;
  border: none;
  height: fit-content;
  max-height: 400px;
  cursor: pointer;
}
#popup > #popupCloseButton {
  color: var(--spaPrimary);
}
#popup > #popupCloseButton:hover {
  color: var(--spaPrimary);
}
.popupImage {
  object-fit: contain;
}
@media screen and (min-width: 800px) {
  #popup {
    max-height: 500px;
  }
}
