.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(--heritageBlack);
  padding: 20px;
  /* border: 4px solid;
  border-image: url("https://labarbedepapa.fr/useehuva/2020/10/test-bg.jpg") 30
    round; */
  color: var(--heritageBlue);
  font-family: var(--body-font-family);
}
.modalCloseButton {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: transparent;
  color: var(--heritageWhite);
  border: none;
  cursor: pointer;
  z-index: 15;
  transition: color 0.5s ease;
  height: 50px;
  width: 50px;
}
.modalCloseButton:hover {
  color: var(--heritageRed);
}
.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(--heritageRed);
  font-family: var(--body-font-family);
}

#newsletterError {
  color: var(--heritageRed);
}
