/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 30 2025 | 09:03:50 */
.wp-block-button__link {
	position: relative;
    overflow: hidden;
    display: inline-flex;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    height: 49px;
    padding: 0 10px;
    min-width: 149px;
    background-color: var(--primary-brand-color);
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    color: var(--primary-brand-bg-text-color);
    cursor: pointer;
    transition: color ease-out 0.4s;
}

.btn,
.wp-block-button__link {
	border-radius: 50px;
    padding: 10px 30px;
    font-family: var(--headings-font-family);
    font-weight: 600;
    letter-spacing: 0;
	z-index: 2;
	background-color: var(--p2);
	line-height: 100%;
    text-align: center;
}
.btn.btn-tight, .btn-group .btn.btn-tight,
.wp-block-button__link {
	width: fit-content;
}
.btn:hover {
	
}
.btn.btn-alt {
	background-color: var(--p3);
	color: var(--p2);
}

/* BUTTON HOVER SLIDE EFFECT */
.btn.slide-effect::after, .gform_button.slide-effect::after,
.wp-block-button__link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--p1);
    transition: left 0.4s;
    z-index: -1;
}
.btn.slide-effect:hover::after, .gform_button.slide-effect:hover::after,
.wp-block-button__link:hover::after {
  left: 0;
}

/* FACETS */
.facetwp-facet.facetwp-facet {
    margin-bottom: 0px;
}
.program-filter {
	display: flex;
	gap: 30px;
}
.fs-wrap.fs-wrap {
    width: 280px;
}
.fs-label-wrap.fs-label-wrap {
    border: 0px;
    border-radius: 15px;
    background: #EFEFEF;
    display: flex;
    padding: 10px 30px;
    gap: 30px;
    color: var(--p2);
    font-family: var(--main-font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.4px;
}
.fs-arrow.fs-arrow {
    margin-right: 20px;
}
.fs-label-wrap .fs-label.fs-label {
    padding: 0px;
}
.fs-option.fs-option {
    padding: 3px;
    font-size: 16px;
}
.fs-wrap .fs-search.fs-search input {
    font-size: 16px;
}
.fs-dropdown {
    padding-bottom: 10px;
}
.fs-wrap.fs-open .fs-label-wrap.fs-label-wrap {
	border-radius: 15px 15px 0px 0px;
}
.fs-wrap.multiple .fs-option.selected .fs-checkbox.fs-checkbox i {
    background-color: var(--p2);
}

@media (max-width: 768px) {
	.program-filter {
		flex-direction: column;
	}
}