#popin-holder {
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 6;
}
#popin-holder.belgique .bloc-popin .bloc-text {
  align-items: flex-start;
  text-align: left;
}
#popin-holder.belgique .bloc-popin button.btn.btn-primary.-black {
  min-width: 100px;
  white-space: nowrap;
}
#popin-holder.belgique .bloc-popin .bloc-text p.heading-03 {
  color: #fff;
  text-shadow: min(0.3vw, 4.8px) min(0.3vw, 4.8px) 0 #f5afbb;
}
#popin-holder.belgique .bloc-popin .bloc-text p.title-03 {
  color: #fff;
  background-color: #f5afbb;
  padding: 0.5rem 0.5rem;
  transition: 0.1s all ease;
  border: 1px #f5afbb solid;
}
#popin-holder.belgique .bloc-popin .bloc-text p.title-03:hover {
  border: 1px #fff solid;
}
#popin-holder.belgique .bloc-popin .bloc-text .btn-transparent--vanilla {
  font-size: 0.75rem;
  width: auto !important;
  min-width: 150px;
  padding: 0.15rem 0.5rem;
  font-weight: 400;
  height: 36px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  text-transform: uppercase;
  background: rgb(245, 175, 187);
  cursor: pointer;
  transition: background 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.2);
  justify-content: center;
  white-space: nowrap;
}

.bloc-popin {
  position: fixed;
  width: min(60vw, 500px);
  height: max(250px, 25vh);
  min-height: min(150px, 40vh);
  bottom: 1rem;
  right: 1rem;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: var(--lightGrey);
  color: var(--black);
  overflow: hidden;
  transform: translateY(120%);
  transition: transform 1s cubic-bezier(0, 1.69, 1, 1);
  pointer-events: all;
}
.bloc-popin.clarins {
  height: max(250px, 25vh);
}
.bloc-popin.suisse {
  width: calc(100% - 1rem);
  height: 150px;
}
.bloc-popin.suisse {
  border-radius: 0;
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
  background: var(--white);
  color: var(--black);
  text-align: left;
}
.bloc-popin.suisse .bloc-media {
  width: 150px;
}
.bloc-popin.suisse .bloc-text {
  width: calc(100% - 150px);
}
.bloc-popin.suissev2 {
  width: calc(100% - 1rem);
  height: 280px;
}
.bloc-popin.suissev2 {
  border-radius: 0;
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
  background: var(--white);
  color: var(--black);
  text-align: left;
}
.bloc-popin.suissev2 .bloc-media {
  width: 150px;
}
.bloc-popin.suissev2 .bloc-text {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.bloc-popin.suissev2 .bloc-text .flag-CH {
  width: 40px;
  height: 40px;
}
.bloc-popin .logo {
  width: min(5vw, 95px);
  margin-bottom: 1rem;
}
.bloc-popin .bloc-text {
  padding: 1.2rem;
  width: 70%;
  height: 100%;
  color: var(--black);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.bloc-popin .bloc-text .news-input {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 100%;
}
.bloc-popin .bloc-text .news-input .input {
  padding: 5px 10px;
  width: 100%;
  padding-left: 5px;
  outline: none;
  background: var(--lightGrey);
  color: var(--black);
  border: 1px solid var(--black);
  border-radius: 5px;
  box-shadow: 3px 3px 2px 0px #E2E2E2;
  transition: 0.3s ease;
}
.bloc-popin .bloc-text .news-input .input:focus {
  background: #F2F2F2;
  border: 1px solid #626262;
  border-radius: 10px;
}
.bloc-popin .bloc-text .news-input .input::-moz-placeholder {
  color: var(--greyStrong);
}
.bloc-popin .bloc-text .news-input .input::placeholder {
  color: var(--greyStrong);
}
.bloc-popin .bloc-text .news-input .svg_icon {
  position: absolute;
  right: 15px;
  fill: var(--black);
  width: 18px;
  height: 18px;
}
.bloc-popin .bloc-media {
  width: 30%;
}
.bloc-popin .bloc-media {
  height: 100%;
}
.bloc-popin .close-button {
  all: unset;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lightGrey);
  position: absolute;
  z-index: 2;
  right: 0.5rem;
  top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.bloc-popin .icon-close {
  background: var(--black);
  position: relative;
  width: 12px;
  height: 12px;
}
.bloc-popin.ready {
  transform: translateY(0);
}
@media screen and (min-width: 1023px) {
  #popin-holder.belgique .bloc-popin {
    width: min(35vw, 450px);
    height: max(240px, 25vh);
  }
  #popin-holder.belgique .bloc-popin .bloc-text .btn-transparent--vanilla:hover {
    border-color: rgb(255, 255, 255);
  }
  #popin-holder.belgique .bloc-popin .bloc-text .btn-transparent--vanilla.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.8) !important;
  }
  .bloc-popin.suisse {
    width: auto;
    height: 250px;
  }
  .bloc-popin.suisse .bloc-media {
    width: 250px;
  }
  .bloc-popin.suisse .bloc-text {
    width: 350px;
  }
  .bloc-popin.suissev2 {
    width: auto;
    height: 250px;
  }
  .bloc-popin.suissev2 .bloc-media {
    width: 250px;
  }
  .bloc-popin.suissev2 .bloc-text {
    width: 400px;
  }
  .bloc-popin.suissev2 .bloc-text .flag-CH {
    width: 15px;
    height: 15px;
  }
  .bloc-popin .bloc-text {
    width: 65%;
  }
  .bloc-popin .bloc-media {
    width: 35%;
  }
}
@media screen and (min-width: 1200px) {
  .bloc-popin .close-button:hover {
    background: var(--black);
  }
  .bloc-popin .close-button:hover .icon-close {
    background: var(--lightGrey);
  }
  .bloc-popin:hover .etam-cta {
    background: var(--black);
    color: var(--black);
  }
}
@media screen and (max-width: 768px) {
  #popin-holder {
    height: calc(var(--vh, 1vh) * 100);
  }
  .bloc-popin .logo {
    width: 12vw;
  }
  .bloc-popin {
    width: calc(100% - 1rem);
    height: 30vh;
    line-height: 1.2;
    font-size: 0.9 em;
    left: 0.5rem;
    top: calc(100dvh - 250px - 15px);
    bottom: auto;
  }
  .bloc-popin.suisse {
    top: calc(100dvh - 150px - 15px);
  }
  .bloc-popin.suissev2 {
    top: calc(100dvh - 280px - 15px);
  }
  .bloc-popin .bloc-text {
    padding: 1rem;
  }
}

/*# sourceMappingURL=/popin_newsletter.398bca32.css.map */