
/*  -------- BULLE -------- */
.crl-bulle-info {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  height: auto;
  max-width: 200px;
  top: 6px;
  right: 3px;
  z-index: 7;
  font-size: clamp(0.8461538462rem, 0.6813186813rem + 0.6696428571vw, 1.0769230769rem);
  line-height: auto;
}
@media screen and (min-width: 768px) {
  .crl-bulle-info {
    font-size: clamp(0.8461538462rem, 0.6892470924rem + 0.2652519894vw, 1.0769230769rem);
    line-height: auto;
    right: 25px;
  }
}

.crl-bulle-info p {
  margin: 0;
}

.crl-bulle-info .icon-informations-bubble {
  margin-right: 15px;
}

.crl-bulle-info .triangle-bulle {
  position: relative;
  width: 17px;
  height: 15px;
  margin-right: 17px;
  background-color: #eee;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  margin-bottom: -0.1em;
  margin-top: 0.5em;
}

.crl-bulle-info .cont-texte-info.active {
  opacity: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  flex-flow: column;
  animation: fade-in 0.5s linear forwards;
}

/* !!!! MODIF SITE !!!!! */
.search-count-title {
    z-index: 0;
}

.bmnr-search-results-header .wrapper-right .btn-filters-desktop{
  z-index: 0;
}
/* !!!! MODIF SITE !!!!! */

.crl-bulle-info .cont-texte-info {
  opacity: 0;
  display: none;
  animation: fade-in 0.5s linear forwards;
    z-index: 20;
}
@media screen and (min-width: 768px) {
  .crl-bulle-info .cont-texte-info {
    opacity: 0;
    display: none;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.crl-bulle-info .icon-close {
  width: 12px;
  height: 11px;
  margin-left: 5px;
}

.crl-bulle-info .mobile {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .crl-bulle-info .mobile {
    display: none !important;
  }
}

.crl-bulle-info .cont-texte-info .rectangle-texte {
  display: flex;
  flex-flow: nowrap;
  background-color: #eee;
  border-radius: 5px;
  color: #03112C;
  margin-top: 0;
  padding: 0.8em;
  height: auto;
  width: auto;
}

@media screen and (min-width: 768px) {
  .crl-bulle-info:hover .cont-texte-info {
    opacity: 1;
    position: relative;
    display: flex;
    align-items: flex-end;
    flex-flow: column;
  }
}

/*  -------- BULLE FIN -------- */