.dateDiv {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #343434;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 5px;
}

#headerBlogTree {
	background-image: url(https://www.alternate.be/download/b2c_be_nl/pic/b2b/MediaArchitect/SSD.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
    color: white;
}

#textBlog {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
}

.descriptionBlog {
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    font-size: 18px;
}

#blogFilters label {
    position: relative;
  }
  
#blogFilters label:before {
    content: "";
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    width: 25px;
    height: 25px;
    margin: auto auto;
    background: url("https://www.svgrepo.com/show/532554/search-alt.svg") no-repeat center center / contain;
    filter: invert(40%);
  }
  
#blogFilters input {
    padding-left: 10px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0;
    border: 1px solid #676767;
}

.filterButton {
   border: none;
   color: #676767; 
   background-color: #fff;
   font-size: 16px;
   font-weight: 600;
   padding: 0;
}

#blogFilters .searchContainer, #blogFilters .searchLabel {
    max-width: 260px;
}

@media (max-width: 860px) {
    .filterButton {
        font-size: 14px;
        font-weight: 500;
    }
}


@media (max-width:768px) {
    #blogFilters input {
        max-width: 500px;
    }

    #blogFilters .searchContainer, #blogFilters .searchLabel {
        max-width: 500px;
    }
}

@media (min-width: 1330px) {
    #blogFilters input {
        min-width: 424px;
    }

    #blogFilters .searchContainer, #blogFilters .searchLabel {
        max-width: 424px;
    }
    
}

.filterButton:not(:last-child)::after {
    content: "-";
    padding: 0;
    margin: 0 5px;
    width: 1px;
    height: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #676767;
}

.filterButton.active {
    color: #e3001d;
}


.mediaTree {
    font-family: 'Poppins', sans-serif;
    min-height: 60vh
}


   /* Overlay */
   #overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.0);
  z-index: 999;
}
#spinner {
  position: absolute;
  top: calc(100% / 2 + 15px);
  left: calc(100% / 2 + 16px);
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  fill: #e3001d;
  animation: lds-circle 3.6s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
@keyframes lds-circle {
  0%,
  100% {
    animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
  }
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(1800deg);
    animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
  }
  100% {
    transform: rotateY(3600deg);
  }
}
.lds-dual-ring {
  display: inline-block;
  width: 100px;
  height: 100px;
}
.lds-dual-ring:after {
  content: " ";
  width: 80px;
  height: 80px;
  position: absolute;
  top: calc(100% / 2);
  left: calc(100% / 2);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 6px solid #e3001d;
  border-color: #e3001d transparent #e3001d transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.fade-in {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.show {
opacity: 1;
transform: translateY(0);
}

