.hubdb{
  scroll-margin-top:160px;
  font-family: Montserrat;
}
{#******* FILTERS *******#}
.hubdb__filters{
  display: flex;
  flex-flow: column;
  align-items: start;
  gap: 20px;
}
.hubdb__filter-field--text {
  max-width: 300px;
  width: 100%;
}
.hubdb__filter-field--text input {
  background-color: #fff;
  background-image: url(https://imexhs.com/hubfs/search.png);
  background-position: 3px 3px;
  background-repeat: no-repeat;
  border: none;
  border-radius: 56px;
  font-family: Montserrat;
  padding: 14px 16px 14px 50px;
}
.hubdb__filter-field--select.hubdb--RADIO {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hubdb__filter-field--select.hubdb--RADIO input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.hubdb__filter-field--select.hubdb--RADIO label {
  background-color: #e0e0f5;
  border: 1.5px solid #e0e0f5;
  border-radius: 16px;
  color: #0d0f58;
  cursor: pointer;
  float: left;
  font-size: 20px;
  font-weight: 500;
  outline: none;
  padding: 14px 16px;
  transition: all .3s ease;
  max-width: 300px;
  width: 100%;
  display: block;
  text-align: center;
}
.hubdb__filter-field--select.hubdb--RADIO input[type="radio"]:checked + label {
  background-color: #fff;
  border: 1.5px solid #3d5bea;
}


.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: start;
  flex-wrap: wrap;
}
.hubdb__filter--checkbox-subfield{
  text-align: center;
  margin: 0 10px;
}
.hubdb__filter--checkbox-subfield label{
  display: block;
}
.hubdb__filter-subfield{
  margin: 0px;
}
.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: 30px auto 0;
  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: 32px;
  height: 32px;
  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:auto;
  height: 32px;
  padding: 0 5px;
  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;
  font-family: Montserrat;
}
.hubdb__card-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  background: #FFF;
}
.hubdb__date {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 13.8px;
  color: #000;
}
.hubdb__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}
.hubdb__right {
  flex-shrink: 0;
}
.hubdb__download-icon svg {
  width: auto;
  height: 32px;
}
.hubdb--hide{
  display:none;
}
{#*************** MEDIA QUERYS ***************#}
@media screen and (max-width: 767px){
  .hubdb__filter-field--select.hubdb--RADIO {
    flex-flow: column;
    width: 100%;
  }
  .hubdb__filter-subfield,
  .hubdb__filter-field--text,
  .hubdb__filter-field--select.hubdb--RADIO label,
  .hubdb__filter-field--text input {
    max-width: 100%;
    width: 100%;
  }
}

