.hubdb {
  scroll-margin-top:160px;
}

{#******* FILTERS *******#}
.hubdb__filters {
  display: flex; 
  justify-content: space-between;
  gap:20px;
}

.hubdb__filter-field { 
  width:100%;
}

.hubdb__filter-field input,
.hubdb__filter-field select {
  padding: 10px;
  width:100%;
  border: 1px solid #B5B5B5;
}
.hubdb__filter-field select{
  height: 50px;
}
.hubdb__filter-field input:not([type="checkbox"], [type="radio"]){
  height: 50px;
}
.hubdb__filter-field input::placeholder,
.hubdb__filter-field select{
  color: #B5B5B5;
}
.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__filter-field label::after {
  content: "*";
  padding-left:4px;
  color: #EB5D57;
}

.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;
}

{#******* 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 {
  transition:all .3s ease;
  position:relative;
  padding: 8px;
  border-radius: 12px;
}

.hubdb__path-card {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.hubdb__card:hover {
  background-color: #e5ebff;
  transition:all .3s ease;
  border-radius: 12px;
}
.hubdb__featured-image {
  width: 100%;
  height: 270px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-height: 270px;
  border-radius: 12px;
}

.hubdb__categories-container,
.hubdb__public-container,
.hubdb__duration-container,
.hubdb__year-container {
  display: flex;
  justify-content: space-between;
  text-transform:capitalize;
}

.hubdb__year-container p{
  margin: 0px;
}


.hubdb__year {
  color: #404B64;
  font-size: 13px;
  font-
}

.hubdb__information {
  padding: 16px 0;
}

.hubdb__categories {
  display: flex;
}

.hubdb--label {
  color: var(--secondary);
  font-weight:700;
  margin-bottom:8px;
}
.hubdb--hide{
  display:none;
}
{#*************** MEDIA QUERYS ***************#}
@media screen and (max-width: 992px) {
  .hubdb__filters{
    flex-wrap: wrap;
    align-items: center;
  }

  .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__filter-field{
    width:100%;
  }
}

{# Layout 2 #}

.hubdb-layout-2__header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:40px;
}

.hubdb-layout-2__grid {
  display:grid;
  grid-template-columns: minmax(0,1.6fr) minmax(0,1fr);
  gap:32px;
}

.hubdb-layout-2__featured-image {
  aspect-ratio:16/10;
  border-radius:12px;
  background-size:cover;
  background-position:center;
  margin: 8px 8px 24px 8px;
}

.hubdb-layout-2__side {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.hubdb-layout-2__small-image {
  aspect-ratio:1.6/1;
  border-radius:12px;
  background-size:cover;
  background-position:center;
  margin-bottom:16px;
}

.hubdb-layout-2__featured a,
.hubdb-layout-2__small-card {
  text-decoration:none;
  color:inherit;
  border-radius: 12px;
}

.hubdb-layout-2__side .hubdb-layout-2__small-card p {
  margin-bottom: 0 ; 
}

.hubdb-layout-2__featured h5,
.hubdb-layout-2__featured p {
  margin-left: 8px; 
}

.hubdb-layout-2__featured p,
.hubdb-layout-2__small-card p {
  color: #404B64;
  font-size: 13px;
  font-weight: 400;
}

.hubdb-layout-2__title {
  margin-bottom: 0; 
}

.hubdb-layout-2__small-card {
  padding: 8px;
  border-radius: 12px;
}

.hubdb-layout-2__small-card:hover,
.hubdb-layout-2__featured:hover {
  background-color: #CFD9FF;
  transition:all .3s ease;
  border-radius: 12px;
  text-decoration: none;
}

.hubdb-layout-2__featured h3 {
  margin-bottom:12px;
}

.hubdb-layout-2__small-card h4 {
  margin-bottom:10px;
}

.hubdb-layout-2__view-all {
  display:flex;
  align-items:center;
  gap:8px;
  color: #00239c;
  font-size: 16px;
  text-decoration: none;
}

.hubdb-layout-2__view-all,
.hubdb-layout-2__view-all:hover {
  text-decoration: none;
}

@media(max-width:991px) {
  .hubdb-layout-2__grid {
    grid-template-columns:1fr;
  }

  .hubdb-layout-2__side {
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:767px) {
  .hubdb-layout-2__side {
    grid-template-columns:1fr;
  }

}