  .custom-filter-choices {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-filter-choices span.cfc-choice {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #0f2c47;
    cursor: pointer;
    padding: 3px 13px;
    border-radius: 5px;
    transition: 0.4s;
}

.custom-filter-choices span.cfc-choice:hover, .custom-filter-choices span.cfc-choice.active {
    background: #ebebeb;
    color: #666;
}

.custom-filter-title h3 {
    color: #0f2c47;
    font-size: 25px;
    font-weight: 600;
}

.custom-filter-content {
    background: #f3f3f3;
    padding: 30px 40px;
    border-left: solid 3px #102d48;
}

.custom-filter-display {
    margin-top: 20px;
}
.custom-filter-display {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 40px;
}

.custom-filter-display .custom-filter-content {
    width: calc((100%/3) - 40px);
}

.custom-filter-content {
    display: none;
}
@keyframes animate-in-anim {
  0%   {display: block;opacity: 0;}
  25%  {opacity: 0.25;}
  50%  {opacity: 0.50;}
  100% {opacity: 1;}
}
.custom-filter-content.animate-in {
    display: block;
	animation-name: animate-in-anim;
    animation-duration: 0.8s;
}
.show-all.show-all .custom-filter-content {
    display: block;
}

.custom-filter-choices {
    flex-wrap: wrap;
    grid-gap: 5px;
}
.custom-filter-content {
    position: relative;
}

a.custom-filter-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hide-all-choices span.cfc-choice {
    display: none;
}

@media screen and (max-width: 1025px) and (min-width: 650px){
	.custom-filter-display .custom-filter-content {
		width: calc((100%/2) - 40px);
	}
}
@media (max-width: 650px){
	.custom-filter-display .custom-filter-content {
		width: 100%;
	}
}

