.hubdb-container{
	margin: 0px auto;
}

.hubdb-loading-screen{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: white;
	opacity: 0;
	visibility: hidden;
	transition: all ease-in-out 0.2s;
}

.hubdb-loading-screen--active{
	opacity: 0.7;
	visibility: visible;
}

.hubdb-loading-ring {
  position: fixed;
  width: 80px;
  height: 80px;
	top: calc(50% - 40px);
	left: calc(50% - 40px);
}

.hubdb-loading-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid black;
  border-radius: 50%;
  animation: loadingRing 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: black transparent transparent transparent;
}
.hubdb-loading-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.hubdb-loading-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.hubdb-loading-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes loadingRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hubdb-filters{
	display: flex; 
	justify-content: center;
	align-items:center;
	background: var(--primary);
	margin-bottom:70px;
	column-gap:12px;
}

.hubdb-filter__field{
	margin: 10px 20px;
}

.hubdb-filter__field input{
	padding: 20px;
	background-color: transparent;
  color: #FFF;
  border: 1px solid #FFFFFF;
}
.hubdb-filter__field select{
	padding: 13px 160px 13px 20px;
	background-color: transparent;
  color: #FFF;
  border: 1px solid #FFFFFF;
	background-image: url('https://23594019.fs1.hubspotusercontent-na1.net/hubfs/23594019/Vector.svg');
	font-size: 18px;
	background-position: calc(100% - 20px) 50%;
}


.hubdb-filter__field select:focus-visible {
  outline: none;
}
.hubdb-filter__field select option{
	color:var(--primary);
}

.hubdb-filter__field--multiselect{
  display: flex;
  justify-content: center;
}

.hubdb-filter__checkbox-subfield{
	text-align: center;
	margin: 0 10px;
}

.hubdb-filter__checkbox-subfield label{
  display: block;
}

.hubdb-container{
	display: flex; 
	flex-wrap: wrap; 
	justify-content: center;
	gap:24px;
}

.hubdb-card{
	width: 30%; 
	margin: 1%; 
	text-align: center;
}



.hubdb .button--disabled{
	display: none;
}

.hubdb__pagination{
	margin: 50px auto;
	text-align: center;
	overflow:hidden;
	position: relative;
	display: flex;
  justify-content: center;
}

.hubdb__pagination-container{
	padding: 0 12px;
}

.swiper-slide{
	color: #ccc;
	font-weight: 600;
	cursor: pointer;
}

.swiper-slide-active{
	color: black;
	pointer-events: none;
}

.hubdb__button-prev,
.hubdb__button-next{
	cursor: pointer;
	top:0;
}



.hubdb__button-next{
	right: -15px;
}

.swiper-wrapper{
	width: 80%;
}

{# Hide Icons #}
.hubdb-card__content .hubdb-card__image > div{
  display:none;
}
{# Show specific icon #}
.hubdb-card__content.pdf .hubdb-card__image > .hubdb-card__pdf,
.hubdb-card__content.video .hubdb-card__image > .hubdb-card__video,
.hubdb-card__content.document .hubdb-card__image > .hubdb-card__document{
  display:block;
}
.hubdb-card__content{
	padding:25px;
	box-shadow:rgba(0, 0, 0, 0.1) 0px 8px 24px;
	text-align:left;
}
.hubdb-card__document__divider{
	border:none;
	height:1px;
	background-color:#D4AF37;
	margin-bottom:15px;
}
.hubdb-card__type{
	margin-bottom:10px;
	text-transform:capitalize;
	color:#272727;
}
.hubdb-card__content.pdf .hubdb-card__type{
	text-transform:uppercase;
}
.hubdb-card__title{
	color:#1A214B;
}
.hubdb-card__description{
	color:#272727;
}
.swiper-button-disabled{
	display:none;
}
.swiper-slide{
	padding: 15px;
	border: 1px solid #9EA3A6;
	border-radius: 5px;
	color: #1A214B;
	width:64px !important;
	height:64px !important;
	font-size: 18px;
  font-weight: 800;
}
.swiper-slide-active{
	background: #1A214B;
	color:#fff;
}
.swiper-slide-active:hover {
	background: rgba(26, 33, 75, 0.85);
	color:#fff;
}
.hubdb__pagination-container .swiper-wrapper{
	transform: translate3d(0px, 0px, 0px)!important;
	gap:20px;
}
.hubdb__pag{
	overflow:hidden;
}
.hubdb__pag > div{
	margin-left:-50px;
}
.hubdb-filters__label{
	margin:0;
	color:#fff;
  font-size: 24px;
}
.hubdb-filters button.button{
	padding: 10px 30px;
}
@media(max-width:992px){
	.hubdb-card{
		width:45%;
	}
}
@media screen and (max-width: 765px){
	.hubdb-filters{
		flex-direction: column;
    align-items: center;
		padding:20px 0;
	}
	.hubdb-card{
		width:90%;
	}
	.hubdb-container {
    row-gap: 55px;
  }
}

.hubdb-container .popup-container {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.hubdb-container .popup-container.visible {
  opacity: 1;
  visibility: visible;
}
.hubdb-container .popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 435px;
  height: 350px;
}

.template-hidden {
	display: none;
}

@media screen and (max-width: 428px){
  .hubdb__pagination{
    padding: 12px;
  }
  .hubdb__pagination-container {
  transform: translate3d(0px, 0px, 0px) !important;
  gap: 5px;
    
}
  
  .hubdb__pagination-container {
  padding: 0;
}
  
  .swiper-slide{
    width: unset;
    height: unset;
    display: grid;
    place-items: center;
  }
/*  remove all the buttons after the 3rd  */
  .swiper-slide:nth-child(n+4){
   display: none;
  }
  
  .swiper-slide:nth-of-type(3){
    margin-right: 5px;
  }
  
  
  .hubdb__pagination-container .swiper-wrapper{
    gap: 5px;
  }

  .hubdb__button-prev {
  margin-right: 5px;
}
  
}