.moduleTrouver .nav-link {
  border-radius: 0;
  border-bottom: 3px solid lightgray;
}

.moduleTrouver .nav-link.active{
  background-color: transparent;
  color: black;
}

.input-group-text{
  border-radius: 0px;
  background-color: transparent;
  border: none;
  font-size: 1.5rem;
}

.tooltipAdresse .tooltip-inner{
  max-width: 350px;
}

#btnModifierAdresse{
  display: none;
}

#btnAnnulerModifierAdresse{
  display: none;
}

#selectCirc{
  width: 100%;
}

.listeCirc .listeCircList{
  padding-left: 0px;
  padding-right: 20px;
  height: 250px;
  overflow-y: scroll;
}

.listeCirc .listeCircList::-webkit-scrollbar{
  height: 10px;
  width: 5px;
}

.listeCirc .listeCircList::-webkit-scrollbar-track{
  background: linear-gradient(90deg, rgba(255,255,255,1) 47%, rgba(0,0,0,1) 50%, rgba(255,255,255,1) 53%);
}

.listeCirc .listeCircList::-webkit-scrollbar-thumb{
  background: var(--noir, black);
}

.listeCirc .listeCircList .listCircBTN{
  display: block;
  margin-bottom: 10px;
  padding: 15px 30px;
  background-color: var(--gris, lightgray);
  background-image: url(../images/icons/fleche-action.svg);
  background-repeat: no-repeat;
  background-position: center right+20px;
  background-size: 75px;
  cursor: pointer;
}

#map{
  height: 400px;
}

#tabTrouveCircContent{
  margin-bottom: 40px;
}

.savedCirc{
  margin-top: 0px;
}

.rechercheSurUneLigneGroup{
  position: relative;
}

.rechercheSurUneLigneGroup #loadingModuleCirc{
  position: absolute;
  top: 14px;
  right: 80px;
  border-radius: 50%;
  z-index: 1000;
}

.ui-menu.ui-widget.ui-widget-content.ui-autocomplete.ui-front{
  z-index:  9999;
}



.carteInteractive .popover{
  min-width: 250px;
  border-radius: 0;
}

.carteInteractive .popover .popover-header{
  margin-top: 0px;
  background-color: black;
  color: white;
  border-radius: 0;
  position: relative;
  min-height: 36px;
}

.carteInteractive .popover .popover-header .closePopover{
  color: white;
  position: absolute;
  display: block;
  top: 0;
  right: 12px;
  text-decoration: none;
  font-size: 2rem;
}

.carteInteractive .popover .popover-body{
  text-align: center;
}

@media (max-width: 576px){

  .listeCirc .listeCircList .listCircBTN{
    background-image: url(../images/icons/fleche-action-mobile.svg);
    background-size: 50px;
  }

}

@media (max-width: 440px){
  .listeCirc .listeCircList .listCircBTN{
    background-size: 25px;
  }
}


@media (max-width: 767px){
  .carteInteractive{
    height: 400px;
  }
}


.loadingBar {
  overflow: hidden;
  width: 75%;
  height: 4px;
  background-color: #acacac;
  margin: 20px auto;
}

.indeterminate {
  position: relative;
  width: 100%;
  height: 100%;
}

.indeterminate:before {
  content: '';
  position: absolute;
  height: 100%;
  background-color: #7a7a7a;
  animation: indeterminate_first 1.5s infinite ease-out;
}

.indeterminate:after {
  content: '';
  position: absolute;
  height: 100%;
  background-color: #4b4b4b;
  animation: indeterminate_second 1.5s infinite ease-in;
}

@media (max-width: 768px){

  #rechercheSurUneLigne{
    padding: 0.5rem;
    font-size: 0.8rem;
  }
  
}

@keyframes indeterminate_first {
  0% {
      left: -100%;
      width: 100%;
  }
  100% {
      left: 100%;
      width: 10%;
  }
}

@keyframes indeterminate_second {
  0% {
      left: -150%;
      width: 100%;
  }
  100% {
      left: 100%;
      width: 10%;
  }
}