.bloc-blog-vit{
    display: none;
}

.bloc-blog-vit.shortcode{
    display: flex;
}

#filter-bar{
    position: relative;
    z-index: 2;
}

#loadMoreContainer{
    text-align: center;
}

#loadMore{
    display: inline-block;
    background-color: #1C75BC;
    color: #fff;
    padding: 10px 25px;
    line-height: 1;
    font-size: 16px;
    border: 2px solid #1C75BC;
    transition: all ease-in-out 0.25s;
    cursor: pointer;
}

#loadMore:hover,
#loadMore:focus,
#loadMore:active{
    background-color: #fff;
    color: #1C75BC;
}

#clearFilter{ display: flex;
    align-items: center;
    margin-right: 10px;
    cursor: pointer;
    color:#1C75BC;
    padding-bottom: 1px;
    border-bottom: 2px solid #1C75BC;
}

.filter-bar{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

#loading_filter{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.7);
    display: none;
}

#loading_filter.active{
    display: block;
}

#loading_filter:after{
    position: absolute;
    content: '';
    background-image: url(../img/loading_filter.svg);
    background-position: center;
    background-repeat: no-repeat;
    width: 200px;
    height: 200px;
    transform: translate(-50%, 100px);
    left: 50%;
    top: 0;
}

/* Dropdown Button */
.dropdown-toggle {
    background-color: #fff;
    color: #000;
    padding: 13px 30px 13px 15px;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid #D0D7D9;
    border-radius: 10px;
    margin: 0 10px;
    line-height: 1;
    min-width: 200px;
    text-align: left;
  }
  
  .no-more p{ 
    color: #000;
    font-size: 16px;
    text-align: center;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    z-index: 1;
    margin: 0 10px;
    list-style: none;
    padding: 10px;
    border: 1px solid #D0D7D9;
    border-radius: 0 0 5px 5px;
    border-top: none;
    width: calc(100% - 20px);
  }

  .dropdown-toggle:after{
    content: '';
    position: absolute;
    right: 25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8.7px 5px 0 5px;
    border-color: #000000 transparent transparent transparent;
    top: 17px;
  }

  .dropdown-toggle.active:after{
    content: '';
    position: absolute;
    right: 25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 8.7px 5px;
    border-color: transparent transparent #000000 transparent;
    top: 17px;
  }

  .dropdown-toggle.active{
    border-bottom: none;
    border-radius: 5px 5px 0 0;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd}
  
  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  .show {display:block;}