.video__icon {
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 35px);
  width: 60px;
  z-index: 10;
}
.video__icon img {
  opacity: 1 !important;
}

.scroller-status {
  text-align: center;
  padding: 50px 0;
  width: 80%;
  margin: 0 auto;
  position: relative;
}

// Animation pour le chargement des contenus
.loading {
  width: 42px;
  height: 42px;
  position: relative;
  overflow: hidden;
}
.loading:before , .loading:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width:32px;
  height: 32px;
  border-radius: 50%;
  background:#FFF;
  transform: translate(-50% , 100%)  scale(0);
  animation: push 2s infinite ease-in;
}
.loading:after {
  animation-delay: 1s;
}
@keyframes push {
  0% {
    transform: translate(-50% , 100%)  scale(1);
  }
  15% , 25%{
    transform: translate(-50% , 50%)  scale(1);
  }
  50% , 75% {
    transform: translate(-50%, -30%) scale(0.5);
  }
  80%,  100% {
    transform: translate(-50%, -50%) scale(0);
  }
}
.sidebar {
  position: sticky;
  top: 25px !important;
}
@media (min-width: 769px) {
  .posts__title {
    margin: 2rem 0 !important;
  }
}