.region-bloc-pub {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}

.bloc-pub__container {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.bloc-pub {
  position: relative;
  height: 0;
}

.bloc-pub__close {
  display: none;
}


.bloc-pub__close .fa {
  vertical-align: text-top;
}

.bloc-pub.is-open .bloc-pub__close {
  position: absolute;
  top: -10px;
  right: 0;
  display: block;
  padding: 0 9px;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  color: #ffffdd;
  background-color: #1a1a1a;
}

.bloc-pub.is-open {
  height: 50px;
  font-size: 1.4rem;
}

.bloc-pub__image--desktop {
  display: none;
}
@media (min-width: 480px) {
  .bloc-pub.is-open .bloc-pub__close {
    right: -10px;
  }
}
@media (min-width: 992px) {
  .bloc-pub.is-open {
    height: 100px;
  }

  .bloc-pub__image--mobile {
    display: none;
  }

  .bloc-pub__image--desktop {
    display: block;
  }
}
