#filtres-posts {
  margin-bottom: 20px;
  background: #f0f7f3;
  padding: 20px 100px 13px 100px;
  margin-top: 25px;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-evenly;
  align-items: center;
}

#filtres-posts button {
  padding: 10px 15px;
  margin: 0 5px 10px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #111;
  font-family: 'Poppins';
  font-size: 20px;
  font-weight: 400;
}

#filtres-posts button:hover {
  color: #005378;
  font-weight: 600;
}

#filtres-posts button.active {
  color: #005378;
  font-weight: 600;
}

.elloader {
  width: 100%;
  margin: 0 auto;   
}

.lds-dual-ring {
  display: inline-block;
  width: 32px;
  height: 32px;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 32px;
  height: 32px;
  margin: 1px;
  border-radius: 50%;
  border: 4px solid #055378;
  border-color: #055378 transparent #055378 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}