.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;
  background-color: rgba(65, 94, 247, 1.0);
  color: rgba(255, 255, 255, 1.0);
  border-radius: 30px;
  font-size: 14px;
  padding: 13px 26px;
  text-decoration: none;
  width: fit-content;
}
.hubdb__load-more.button.button--active {
  display: flex;
  justify-content: center;
  margin: 72px auto;
  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.hubdb__card--viajes {
  background: #f4f4f4;
  border-radius: 16px;
  overflow: hidden;
  transition:all .3s ease;
  position:relative;
  height: auto;
}
.hubdb__card:hover{
}
.hubdb__card-content {
  display: flex;
  flex-direction: column-reverse;
  height: 100%;
}
.hubdb__card-image-wrapper {
  line-height: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.hubdb__tag {
  position: absolute;
  top: 18px;
  left: 22px;
  padding: 2px 12px;
  font-weight: 300;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0%;
  border-radius: 20px;
  color: rgba(52, 75, 198, 1);
  background-color: rgba(217, 223, 253, 1);
  z-index: 2;
}
.hubdb__card-image-wrapper img {
  width: 100%;
  height: 336px;
  object-fit: cover;
}
.hubdb__card-text {
  padding: 34px 34px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.hubdb__card-title {
  color: #1e1e1e;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 .5rem;
}
.hubdb__card-description {
  flex-grow: 1;
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 32px;
}
.hubdb__card-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hubdb__card-button {
  background-color: rgba(65, 94, 247, 1.0);
  color: rgba(255, 255, 255, 1.0);
  border-radius: 30px;
  font-size: 14px;
  padding: 13px 26px;
  text-decoration: none;
  width: fit-content;
  display: block;
  transition: all 0.3s ease-in-out;
}
.hubdb__card-button--solicitalo-aqui {
  background-color: rgba(65, 94, 247, 1.0);
  color: rgba(255, 255, 255, 1.0);
  border: 1px solid rgba(65, 94, 247, 1.0);
}
.hubdb__card-button--ver-mas {
  background-color: rgba(255, 255, 255, 0);
  color: rgba(65, 94, 247, 1.0);
  border: 1px solid rgba(65, 94, 247, 1.0);
}
.hubdb__card-button--solicitalo-aqui:hover {
  background-color: rgba(255, 255, 255, 1.0);
  color: rgba(65, 94, 247, 1.0);
  border: 1px solid rgba(65, 94, 247, 1.0);
}
.hubdb__card-button--ver-mas:hover {
  background-color: rgba(65, 94, 247, 1.0);
  color: rgba(255, 255, 255, 1.0);
  border: 1px solid rgba(65, 94, 247, 1.0);
}

.hubdb-viajes__badges {
  position: absolute;
  display: flex;
  gap: 12px;
  bottom: 12px;
  left: 12px;
}
.hubdb-viajes__badge {
  background: rgb(0 0 0 / 50%);
  color: white;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  border-radius: 20px;
  border: 1px solid rgba(189, 182, 185, 1);
  padding: 2px 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

{#*************** 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%;
  }
}
