.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 58px 10px 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 select:focus ~ .hubdb__filter-dropdown-options {
  display: flex;
}
.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(--primary);
  font-weight:700;
  margin:0;
}
.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;
}
{#******* Dropdown Filter *******#}
.hubdb__filter-dropdown-content {
  position: relative;
  display: inline-block;
  width: 100%;
}
.hubdb__filter-dropdown-close {
  position: absolute;
  right: 1px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 16px;
  padding: 0.95em 1.2em;
}
.hubdb__filter-dropdown-options {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  max-height: 600px;
  overflow-y: auto;
  border: 1px solid #ccc;
  border-radius: 4px;
  flex-direction:column;
  row-gap:5px;
}
.hubdb__dropdown-option {
  display: flex;
  align-items: center;
  padding: 8px;
  cursor: pointer;
  position:relative;
}
.hubdb__dropdown-option input[type="radio"]{
  width:100%;
  opacity:0;
  position:absolute;
  left:0;
  right:0;
  top:0;
  bottom:0;
}
.hubdb__dropdown-option label{
  width:100%;
  cursor:pointer;
}
.hubdb__dropdown-option:hover {
  background-color: #f1f1f1;
}
.hubdb__filter-dropdown-input {
  padding: 10px 20px 10px 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}
{#******* End Dropdown Filter *******#}


{#******* map-partnerships-container *******#}
.hubdb__map-partnerships-container{
  display: flex;
  justify-content: space-between;
  column-gap:100px;
}
{#******* map container *******#}
.hubdb__map-container{
  width:calc(70% - 100px);
  position:relative;
  padding: 13px 0px;
}
.hubdb__filter-partnerships-container{
  width: 30%;
}
{#******* CARD *******#}
.hubdb__partners-container{
	margin: 0 auto;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.hubdb__card{
	transition:all .3s ease;
	position:relative;
  border: 1px solid var(--light);
  padding:20px;
  margin-top:10px;
  border-radius:4px;
}
.hubdb__partner{
  text-align:center;
}
.hubdb__dropdown-option{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hubdb__container:not(.active) .hubdb__card{
  display:none;
}
.hubdb--hide{
	display:none;
}

{#***************** SVG MAP **********************#}
.hubdb__map-container svg path{
  fill:#FFE9C1;
}
.hubdb__map-container svg path.pointed-active{
  position: relative;
}
.hubdb__map-pin{
  display:none;
  position:absolute;
}
.hubdb__map-pin.pin-active{
  display:block;
  object-fit: contain;
}

{#*************** MEDIA QUERYS ***************#}
@media screen and (max-width: 992px){
  .hubdb__filters{
    flex-wrap: wrap;
    align-items: center;
	}
  .hubdb__card{
    margin: 10px auto 0;
    height: fit-content;
    flex-direction: column;
    align-items: stretch;
    max-width: 818px;
    width: 100%;
  }
  .hubdb__map-partnerships-container{
    flex-direction:column;
  }
  .hubdb__filter-partnerships-container,
  .hubdb__map-container{
    width:100%;
  }
}
@media(max-width:765px){
	.hubdb__filter-field{
		width:100%;
	}
}
