.hubdb{
	scroll-margin-top:160px;
}
{#******* FILTERS *******#}
.hubdb__filters{
  display: flex;
  justify-content: space-between;
	gap:24px;
  margin-bottom:165px;
}
.hubdb__filters > div{
  width:50%;
}

.hubdb__filter-field-group {
  width: 250px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 8px; 
  border-right: 1px solid #ddd; 
}
.hubdb__filter-field-group select {
  background-color: #0060b7;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 16px;
  width: 100%;
  margin-top: 10px;
  border: none;
  cursor: pointer;
}
.hubdb__filter-field-group select:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 96, 183, 0.5);
}

.hubdb__filter-field{
	width:100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.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;
  border-radius: 30px;
  border: 2px solid #A3D55F;
  color:#3D4543;
  flex-basis: 70%;
}
.hubdb__filter-field-text--button{
  flex: 0 0 30%;
  height: 50px;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  border-radius: 30px;
  background-color: #0271CE;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 36px 15px 25px;
}
.hubdb__filter-field-text--button:hover,
.hubdb__filter-field-text--button:active,
.hubdb__filter-field-text--button:focus{
  outline:none;
  transform: none;
  background-color: #0271CE;
  opacity:0.9;
}
.hubdb__filter-field input::placeholder,
.hubdb__filter-field select{
	color: #3D4543;
}
.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 0;
}
.hubdb__filter-subfield:first-child{
  margin-top: 0;
}
.hubdb__filter-field-text--group{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:60px;
  flex-direction: row;
}
.hubdb__filter-field-text--group > input{
  flex-basis:; 
}
.hubdb__not-found-results{
	color:#861A10;
}
.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;
  align-self: center;
  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;
  font-weight:700;
}
.hubdb__button-page--active{
	pointer-events:none;
}
.hubdb__button-page:hover{
	text-decoration:none;
}
{#******* CARD *******#}

.hubdb__content-area {
  flex: 1;
  display: flex;
  flex-direction: column;
}


.hubdb__container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.hubdb__card{
  transition:all .3s ease;
  position:relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #0271CE;
  border-radius: 10px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.10);
}
.hubdb__path-card{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
}

.hubdb__featured-image{
	width: 100%;
	height: 408px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.hubdb__public-container,
.hubdb__duration-container,
.hubdb__year-container{
	display: flex;
	justify-content: space-between;
	text-transform:capitalize;
}
.hubdb__information{
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 10px;
  background-color: #0271CE;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.10);
}
.hubdb__tags-container{
  max-width: 100%;
  word-break: break-word;
  padding: 20px;
  background-color:#F8F8F8;
  flex: 1 auto;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.20);
  min-height: 131px;
}
.hubdb__solutions,
.hubdb__industries,
.hubdb__locations{
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}
.hubdb__card-header {
  padding: 52px 20px 28px 20px;
  gap:8px;
  color: white;
  min-height: 230px;
}

.hubdb__status-container {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  font-size: 16px;
  padding: 8px 37px;
  z-index: 10;
  display: none;
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
  min-width:140px;
  text-align:center;
}

.hubdb__status-container.new {
  background-color: #00c853;
  color: #ffffff;
  display: block;
}

.hubdb__status-container.updated {
  background: #FFC000;
  color: #000000;
  display: block;
}

.hubdb__status-label {
  margin: 0;
  font-size: 14px;
  color:#000;
}

.hubdb__public-title {
  margin:0;
  font-family: Helvetica;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  color: white;
}

.hubdb__content-type {
  margin: 8px 0 0;
  font-size: 18px;
  color: #FFF;
  font-family: Helvetica;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}


.hubdb__solutions-tags,
.hubdb__industries-tags,
.hubdb__locations-tags{
  display: inline-block;
}

.hubdb__source-url-container a {
  background-color: #a6d65e;
  color: #000000;
  font-weight: bold;
  top: 16px;
  position: absolute;
  right: 16px;
  font-size: 16px;
  padding: 8px 20px;
  border-radius: 9999px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
}

.hubdb__source-url-container a:hover {
  background-color: #8fbe4f;
}



.hubdb--label{
	color: var(--secondary);
	font-weight:700;
	margin-bottom:8px;
}
.hubdb--hide{
	display:none;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}

.hubdb__filter-field .hubdb__radio-item{
  display:none;
}
.hubdb__filter-field.hubdb--radio-active  .hubdb__radio-item{
  display:block;
}

.hubdb__filter-subfield--checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid #ddd;
}

.hubdb__filter-subfield--checkbox:last-child {
  border-bottom: none;
}

.hubdb__filter-subfield--checkbox input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin: 0;
  flex-shrink: 0;
}

.hubdb__filter-subfield--checkbox label {
  order: 2;
  flex: 1;
}

.hubdb__filter-search input {
  background-color: #A7D8B8; 
  border: 2px solid #3C8D32; 
  color: #2C4C3A; 
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
}
.hubdb__filter-search input::placeholder {
  color: #4A6C59; 
}
.hubdb__all-tags{
  font-weight:700;
}
.hubdb__industries-tags{
  color:#861A10;
}
.hubdb__solutions-tags{
  color:#00c853;
}
.hubdb__locations-tags{
  color:#1A67C1;
}
/* Box Filters */
.hubdb__box-filters-container{
  position: sticky;
  top: 50px;
  z-index:20;
  overflow: hidden;
  margin-bottom: 50px;
}
.hubdb__filters-container{
  background-color:#F8F8F8;
  box-shadow: -4px 4px 20px 0px rgba(0, 0, 0, 0.03);
  max-height: 400px;
  width:350px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  margin-top:10px;
  border-radius: 10px;
  padding:0;
  height: 0;
}
.hubdb__box-filters-container.active .hubdb__filters-container{
  transform: translateX(0);
  height: auto;
  padding:20px 20px 10px;
}
.hubdb__show-filter-button{
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath d='M4 10h7.09a6 6 0 0 0 11.82 0H44a1 1 0 0 0 0-2H22.91a6 6 0 0 0-11.82 0H4a1 1 0 0 0 0 2zm13-5a4 4 0 1 1-4 4 4 4 0 0 1 4-4zm27 18h-7.09a6 6 0 0 0-11.82 0H4a1 1 0 0 0 0 2h21.09a6 6 0 0 0 11.82 0H44a1 1 0 0 0 0-2zm-13 5a4 4 0 1 1 4-4 4 4 0 0 1-4 4zm13 10H22.91a6 6 0 0 0-11.82 0H4a1 1 0 0 0 0 2h7.09a6 6 0 0 0 11.82 0H44a1 1 0 0 0 0-2zm-27 5a4 4 0 1 1 4-4 4 4 0 0 1-4 4z' data-name='Layer 15'/%3E%3C/svg%3E");
  background-position: 16px 50%;
  background-size: 30px;
  background-repeat: no-repeat;
  padding-left: 65px;
  padding-right: 16px;
  background-color:#00c853;
  font-size: 14px;
}
.hubdb__show-filter-button:hover,
.hubdb__show-filter-button:active,
.hubdb__show-filter-button:focus{
  outline:none;
  transform: none;
}
.hubdb__radio-label{
  cursor:pointer;
  transition: transform 0.4s ease;
  font-weight:700;
  margin-bottom: 10px;
}
.hubdb__radio-label.hubdb--radio-active-child{
  color:#0271ce;
}
.hubdb__radio-label:hover{
  color:#0271ce;
}

html {
  scroll-behavior: smooth;
}
{#*************** MEDIA QUERYS ***************#}
@media screen and (max-width: 992px){
  .hubdb__filters{
    flex-wrap: wrap;
    align-items: center;
	}
	.hubdb__filter-field{
		width:48%;
	}
  .hubdb__filters > div{
    width:100%;
  }
  .hubdb__filters {
    margin-bottom: 100px;
  }
}
@media(max-width:765px){
  .hubdb__filter-field{
    width:100%;
  }
  .hubdb__filter-field-text--group {
    gap: 20px;
  }
  .hubdb__filter-field input:not([type="checkbox"],
  [type="radio"]) {
    flex-basis: 60%;
  }
  .hubdb__filter-field-text--button {
    flex: 0 0 40%;
  }
}
@media(max-width:520px){
  .hubdb__filter-field-text--group {
    justify-content: start;
    align-items:start;
    flex-direction: column;
  }
}