.hubdb{
  scroll-margin-top:160px;
}
{#******* FILTERS *******#}
.hubdb__filters{
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.hubdb__filter-field{
  width: 20%;
}

.hubdb__filter-field-selects{
  width: 100%;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.hubdb__filter-field--text {
  width:70%;
}
.hubdb__filter-field input,
.hubdb__filter-field select{
  padding: 10px;
  width:100%;
  border: 1px solid #E3E3E3;
  border-radius:30px;
  box-shadow: 1.39px 1.39px 4.96px rgb(0 0 0 / 10%);
  color:#2c2c2c;
  font-size:12px;
}
.hubdb__filter-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAh0lEQVQ4T93TMQrCUAzG8V9x8QziiYSuXdzFC7h4AcELOPQAdXYovZCHEATlgQV5GFTe1ozJlz/kS1IpjKqw3wQBVyy++JI0y1GTe7DCBbMAckeNIQKk/BanALBB+16LtnDELoMcsM/BESDlz2heDR3WePwKSLo5eoxz3z6NNcFD+vu3ij14Aqz/DxGbKB7CAAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 95%;
  background-size: 20px;
}
.hubdb__filter-field select{
  min-height: 40px;
}
.hubdb__filter-field input:not([type="checkbox"], [type="radio"]){
  min-height: 40px;
}
.hubdb__filter-field input::placeholder,
.hubdb__filter-field select{
  color: #2c2c2c;
}
.hubdb__filter-field select:focus{
  color:revert;
}
.hubdb__filter-field input[type="checkbox"],
.hubdb__filter-field input[type="radio"]{
  display: block;
}

.hubdb__filter-field label{
  display: block;
}
.hubdb__filter-field--multiselect:not(.hubdb--SELECT),
.hubdb__filter-field--foreign_id:not(.hubdb--SELECT),
.hubdb__filter-field--select:not(.hubdb--SELECT){
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.hubdb__filter--checkbox-subfield{
  text-align: center;
  margin: 0 10px;
}
.hubdb__filter--checkbox-subfield label{
  display: block;
}
.hubdb__filter-subfield{
  margin: 10px;
}

.hubdb__not-found-results{
  color:var(--secondary)
}
.hubdb__information .hubdb__card-button.button {
  margin: unset;
  display: inline-block;
  text-transform:uppercase;
  margin-bottom:8px;
}
.hubdb .hubdb__load-more{
  margin: 0 auto;
  display: none;
}
.hubdb__load-more.button.button--active {
  display: flex;
  justify-content: center;
  margin: 64px auto 32px;
  width: fit-content;
}
.hubdb__clear-filters-btn{
  padding: 12px 35px;
  border-radius: 30px;
  outline: none;
  border: 1px solid #E3E3E3;
  border-radius: 30px;
  box-shadow: 1.39px 1.39px 4.96px rgb(0 0 0 / 10%);
  background-color:#fff;
  color:#2c2c2c;
  font-size:12px;
  line-height:1;
  min-height:40px;
}

{#******* PAGINATION *******#}
.hubdb__pagination{
  margin: 64px auto 32px;
  text-align: center;
  width: fit-content;
  position: relative;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.hubdb__pagination-container{
  padding: 0 16px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.hubdb__button-prev,
.hubdb__button-next{
  pointer-events: none;
  cursor: initial;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .3s ease-in-out;
  opacity:0.6;
  text-decoration:none;
}
.hubdb__button-prev.button--active,
.hubdb__button-next.button--active{
  pointer-events: initial;
  cursor: pointer;
  opacity:0.95;
}
.hubdb__button-prev:hover,
.hubdb__button-next:hover{
  opacity:1;
}
.hubdb--pagination-hide .hubdb__button-prev,
.hubdb--pagination-hide .hubdb__button-next{
  display:none;
  transition: all .3s ease;
}
.hubdb__button-prev{
  left: -32px;
}
.hubdb__button-next{
  right: -32px;
}
.hubdb__button-page {
  width:40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration:none;
  transition: all .3s ease;
}
.hubdb__button-page--active{
  pointer-events:none;
}
.hubdb__button-page:hover{
  text-decoration:none;
}
{#******* CARD *******#}
.hubdb__container{
  margin: 44px auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.hubdb__card{
  overflow: hidden;
  box-shadow: 1.39px 1.39px 4.96px rgb(0 0 0 / 10%);
  position: relative;
  width: 100%;
  border-radius: 25px;
  transition: transform .4s;
}
.hubdb__path-card{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.hubdb__card:hover{
  transform: translateY(-10px);
}
.hubdb__featured-image{
  width: 100%;
  height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hubdb__information{
  padding: 30px 30px 50px;
}
.hubdb__time-container{
  position:absolute;
  bottom:20px;
  right:40px;
}
.hubdb__time,
.hubdb__topic span{
  margin:0;
  font-size:12px;
  color:#808080;
}
.hubdb--label{
  color: #2c2c2c;
  font-weight:700;
  margin:15px 0 15px;
  font-size:14px;
}
.hubdb__divider{
  margin-top: 30px;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, .1);
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  background-color: #fff;
}
.hubdb--hide{
  display:none;
}
{#*************** MEDIA QUERYS ***************#}
@media(min-width:1440px){
  .hubdb__time,
  .hubdb__topic span{
    font-size:16px;
  }
  .hubdb--label{
    font-size:21px;
  }
}
@media screen and (max-width: 992px){
  .hubdb__filters{
    flex-wrap: nowrap;
    align-items: center;
    justify-content: start;
  }
  .hubdb__filter-field{
    width:48%;
  }
  .hubdb__card{
    margin: 0 auto;
    height: fit-content;
    flex-direction: column;
    align-items: stretch;
    max-width: 818px;
    width: 100%;
  }
}
@media(max-width:765px){
  .hubdb__filters{
    flex-wrap: wrap;
  }
  .hubdb__filter-field{
    width:100%;
  }
}

.hubdb__filters .hubdb_searchbar-input:focus{
  border-color: #015B97;
}