.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: relative;
  width: 100%;
  max-width: 600px;
  min-height: 150px;
  background-color: var(--heritageWhite);
  border: 2px solid var(--heritageBlack);
  padding: 20px;
  color: var(--heritageBrown);
  font-family: var(--body-font-family);
}
.modal > h3 {
  color: var(--heritageBrown);
}
.modalCloseButton {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: transparent;
  color: var(--heritageBlack);
  border: none;
  cursor: pointer;
  z-index: 15;
  transition: all 0.5s ease;
  height: 50px;
  width: 50px;
}
.modalCloseButton:hover {
  color: var(--heritageBeige);
  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(--heritageBeige);
  font-family: var(--body-font-family);
}

#newsletterError {
  color: var(--heritageBeige);
}
#popup {
  max-width: 100vw;
  padding: 0;
  width: fit-content;
  border: none;
  height: fit-content;
  max-height: 400px;
  cursor: pointer;
}
#popup > #popupCloseButton {
  color: var(--heritageBrown);
}
#popup > #popupCloseButton:hover {
  color: var(--heritageBeige);
}
.popupImage {
  object-fit: contain;
}
@media screen and (min-width: 800px) {
  #popup {
    max-height: 500px;
  }
}
