<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Variables */
:root {
  /* Font Family */
  --global-font-primary: "Source Sans Pro", sans-serif;

    /* Colors */
  --global-dark-text: #0B1332;
  --global-base-color: #F8FAFC;
  --global-field-color: #0F144F;
  --global-field-placeholder: #B8BCCA;
  --global-primary-color: #3454D1;
  --global-primary-shade: #677FDD;
  --global-secondary-color: #F7F8FF;
  --global-border-color: #DAE2EE;
  --global-fields-border: #8C94B1;
  --global-border-focus: rgba(15, 20, 79, 0.3);
  --global-pink-color: #EA4C89;
  --global-text-color: #0F144F;
  --global-text-color2: #132053;
  --global-dark-shadow: 0px 3px 3px rgba(52, 84, 209, 0.5);
  --global-light-shadow: 0px 3px 3px rgba(52, 84, 209, 0.3);
}

.filterwp .fwp-posts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.filterwp .fwp-posts &gt; div {
  display: flex;
  flex-direction: column;
}

.fwp-option {
	cursor: pointer;
}

.filterwp:not(.fwp-mobile) .fwp-option span:hover {
  font-weight: bold;
  text-shadow: 1px 1px 4px 10px rgba(0, 0, 0, 0.1);
}

/*.fwp-option.active {
	font-weight: bold;
}*/

/* CSS grid for sidebar/topbar and main content for mobile too */

.filterwp:not(.fwp-mobile).with-side {
  display: grid;
  grid-template-columns: 324px auto;
  grid-template-areas:
    "sidebar content";
}

.filterwp:not(.fwp-mobile).with-top {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "topbar"
    "topbarmore"
    "topbarpills"
    "content";
}

.filterwp:not(.fwp-mobile).with-side.fwp-sidebar-right {
  display: grid;
  grid-template-columns: auto 324px;
  grid-template-areas:
    "content sidebar";
}

.filterwp:not(.fwp-mobile).with-top.with-side {
  display: grid;
  grid-template-areas:
    "topcorner topbar"
    "topmorecorner topbarmore"
    "toppillscorner topbarpills"
    "sidebar content";
}

.filterwp:not(.fwp-mobile).with-top.with-side.fwp-sidebar-right {
  display: grid;
  grid-template-areas:
    "topbar topcorner"
    "topbarmore topmorecorner"
    "topbarpills toppillscorner"
    "content sidebar";
}


.filterwp:not(.fwp-mobile) .fwp-content {
  grid-area: content;
}

.filterwp:not(.fwp-mobile) .fwp-topbar {
  grid-area: topbar;
}
.filterwp:not(.fwp-mobile) .fwp-topbar-more {
  grid-area: topbarmore;
}

.filterwp:not(.fwp-mobile) .fwp-topbar-pills {
  grid-area: topbarpills;
}

.filterwp:not(.fwp-mobile) .fwp-sidebar {
  grid-area: sidebar;
}

.filterwp:not(.fwp-mobile) .apply_filters.mobile-only {
  display: none;
}

.filterwp.fwp-mobile:not(.fwp-filters-active) .apply_filters.mobile-only {
  display: none;
}

.filterwp.fwp-mobile .apply_filters:not(.mobile-only) {
  display: none;
}

.filterwp:not(.fwp-mobile) .fwp-mobile-nav {
  display: none;
}

.filterwp:not(.fwp-mobile) .fwp-topbar .fwp-apply-filters-wrap {
  padding: 0 1.5rem 1.25rem;
}

.filterwp.fwp-mobile.fwp-filters-active {
  padding-bottom: 6.25rem;
}

.filterwp.fwp-mobile.fwp-filters-active .fwp-mobile-nav {
  position: fixed;
  bottom: 0;
  padding: 1.5rem;
  background:#fff;
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: space-around;
  box-shadow: 0px -14px 40px rgba(217, 226, 238, 0.5);
  border-top: 1px solid var(--global-border-color);
}

.filterwp.fwp-mobile:not(.fwp-filters-active) .fwp-mobile-nav {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.filterwp.fwp-mobile.fwp-filters-active .fwp-mobile-nav &gt; .fwp-mobile-trigger:not(.fwp-mobile-trigger-close),
.filterwp.fwp-mobile:not(.fwp-filters-active) .fwp-mobile-nav &gt; .fwp-mobile-trigger-close,
.filterwp.fwp-mobile:not(.fwp-filters-active) .fwp-mobile-nav &gt; .fwp-reset {
  display: none;
}


.fwp-reset,
.apply_filters,
.fwp-mobile-nav button,
.fwp-more .load-more {
  height: 3.125rem;
  background-color: var(--global-primary-color);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  color: #fff;
  padding-left: 0;
  padding-right: 0;
  flex-grow: 1;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fwp-more .load-more {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin: auto;
}

.fwp-mobile-nav button{
  margin: 0 0.375rem;
}

.fwp-topbar .fwp-control-wrap &gt; button {
  padding: 0 3.125rem;
  height: 2.75rem;
}

.filterwp.fwp-mobile:not(.fwp-filters-active) .fwp-mobile-nav &gt; .fwp-mobile-trigger {
  padding: 0 3.125rem;
}

.fwp-mobile-nav button.fwp-mobile-trigger-close,
.fwp-more .load-more {
  background-color: var(--global-base-color);
  color: var(--global-text-color);
  border-color: var(--global-border-color);
}

.fwp-control-wrap {
  display: flex;
  justify-content: space-around;
}

.fwp-control-wrap button {
  padding-left: 0;
  padding-right: 0;
  flex-grow: 1;
}

.filterwp.fwp-mobile .fwp-control-wrap {
  display: none;
}

.fwp-control-wrap button:nth-child(2) {
  margin-left: 0.75rem;
}

/*.filterwp.fwp-mobile.fwp-filters-active .fwp-apply-filters-wrap {
  display: initial;
}*/

.fwp-apply-filters-wrap {
  grid-area: sidebar;
  margin: 1.25rem 0;
}

.filterwp.fwp-mobile.fwp-filters-active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: #fff;
  z-index: 2147483647;
  padding-top: 1.25rem;
}

.filterwp.fwp-mobile:not(.fwp-filters-active) .fwp-topbar,
.filterwp.fwp-mobile:not(.fwp-filters-active) .fwp-sidebar {
  display: none;
}

.filterwp.fwp-mobile.fwp-filters-active .fwp-content {
  display: none;
}

.filterwp:(.fwp-mobile) .fwp-mobile-trigger {
  display: none;
}

/* general css */
.filterwp {
}

/*.filterwp button {
	background: var(--global-primary-color);
	border-radius: 4px;
	color: #fff;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	user-select: none;
	border: 1px solid transparent;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	transition: ease-in-out all .4s;
}*/

/*.filterwp button:hover {
	background: var(--global-primary-color) !important;
	color: #fff;
	transition: ease-in-out all .4s;
	box-shadow: 0px 4px 7px #DCE1E9;
}*/

.filterwp:not(.fwp-mobile) .fwp-sidebar {
	text-align: left;
	padding: 1rem 1.25rem;
	box-sizing: border-box;
	border-radius: 10px;
  margin: 0 0.75rem 0.75rem;
}


.filterwp:not(.fwp-mobile) .fwp-sidebar &gt; div {
	margin-bottom: 0.9375rem;
  padding: 0.9375rem 0 1.5625rem 0;
}

.filterwp:not(.fwp-mobile) .fwp-sidebar &gt; div:first-child {
  padding-top: 0;
}

.filterwp.fwp-mobile .fwp-sidebar &gt; div,
.filterwp.fwp-mobile .fwp-topbar &gt; div {
  margin-bottom: 0.625rem;
  padding-bottom: 1.5rem;
}

.filterwp.fwp-mobile .fwp-sidebar div.search,
.filterwp.fwp-mobile .fwp-topbar div.search {
  padding-bottom: 0;
  margin-bottom: 2.8333rem;
}

.filterwp.fwp-mobile .fwp-topbar &gt; div,
.fwp-sidebar &gt; div:not(.sorter):not(.range):not(:last-child) {
  border-bottom: 1px solid var(--global-border-color);
}

 .fwp-sidebar h3,
 .fwp-topbar h3 {
	font-weight: 600;
	font-size: 1.125rem;
	line-height: 2.375rem;
	font-family: inherit;
	color: #333;
}



/*css specific to checkboxes*/
ul.fwp-filter-list {
    padding: 0 !important;
    list-style-type: none;
    margin: 0;
    list-style: none;
}
li.fwp-option {
    position: relative;
    line-height: 2rem;
    padding: 0.25rem;
    display: block;
    font-size: 1rem;
    margin: 0;
    color: var(--global-text-color);
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


li.fwp-option label {
    cursor: pointer;
    position: relative;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    letter-spacing: .4px;
    display: block;
    word-break: break-all;

}

.fwp-filter-wrap:not(.buttons) li.fwp-option.active &gt; label,
.fwp-filter-wrap:not(.buttons) li.fwp-option.active &gt; span {
	font-weight: 600;
}

.filterwp:not(.fwp-mobile) .fwp-topbar .fwp-filter-list.list li.fwp-option span {
  margin-left: 0.375rem;
}

li.fwp-option label .checkmark {
    position: relative;
    height: 1.3125rem;
    width: 1.3125rem;
    border: 1px solid var(--global-fields-border);
    background-color: var(--global-base-color);
    border-radius: 2px;
    top: 0.3125rem;
    left: 0;
    float: left;
    margin-right: 0.9375rem;
}

.filterwp:not(.fwp-mobile) .fwp-topbar li.fwp-option label .checkmark {
  background-color: #fff;
}

li.fwp-option label:hover .checkmark {
    box-shadow: 0 0 4px rgb(235 239 245 / 50%);
}

.fwp-filter-list:not(.radio) li.fwp-option.active &gt; label .checkmark {
    background-color: var(--global-text-color);
    border-color: var(--global-text-color);
    box-shadow: 0 0 4px rgb(235 239 245 / 50%);
}

li.fwp-option.active &gt; label .checkmark:after {
    display: block;
}
label .checkmark:after {
    content: "";
    color: #fff;
    position: absolute;
    display: none;
}

ul.radio li.fwp-option label .checkmark {
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 1.3125rem;
	width: 1.3125rem;
}

ul.checkboxes li.fwp-option label .checkmark:after {
		top: 0;
		left: 0;
		height: 1.0625rem;
		width: 1.0625rem;
    background-image: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg' width='17' height='17'&gt;&lt;line stroke='white'  x1='3' y1='8' x2='8' y2='14' stroke-width='2'&gt;&lt;/line&gt;&lt;line stroke='white' x1='7' y1='14' x2='16' y2='4' stroke-width='2' /&gt;&lt;/svg&gt;")
}

ul.radio li.fwp-option label .checkmark:after {
  height: 0.6875rem;
  width: 0.6875rem;
  border-radius: 100%;
  background: var(--global-text-color);
}

li.fwp-option label .checkmark:after,
.fwp-filter-title:after {
  background-size: contain;
}

/* CSS for range control */
.fwp-filter-range {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0.625rem 0;
  flex-wrap: wrap;
}
.filterwp:not(.fwp-mobile) .fwp-topbar .fwp-filter-range {
  flex-direction: column;
  align-items: center;
}

.filterwp.fwp-mobile .fwp-topbar .fwp-filter-range,
.filterwp.fwp-mobile .fwp-sidebar .fwp-filter-range {
  padding: 0;
}

.filterwp.fwp-mobile .fwp-topbar .fwp-filter-range &gt; div:not(.fwp-range-slider),
.fwp-sidebar .fwp-filter-range &gt; div:not(.fwp-range-slider) {
  width: calc(50% - 0.625rem)
}

.filterwp:not(.fwp-mobile) .fwp-topbar .fwp-filter-range .fwp-range-slider {
  width: calc(100% - 2.5rem);
}


.fwp-filter-range &gt; div {
  background: #fff;
  border: 1px solid var(--global-border-color);
  border-radius: 4px;
  position: relative;
  padding: 0 0.6875rem;
  display: flex;
  align-items: center;
}

.fwp-filter-range &gt; div &gt; span {
  margin: 0 0.3125rem;
}

.filterwp.fwp-mobile .fwp-filter-range &gt; div,
.filterwp .fwp-sidebar .fwp-filter-range &gt; div {
  background: var(--global-base-color);
}


.filterwp:not(.fwp-mobile) .fwp-topbar .fwp-filter-range &gt; div {
  margin: 0.625rem;
}

.filterwp:not(.fwp-mobile) .fwp-topbar .fwp-filter-range &gt; .fwp-range-slider {
  margin: 2.5rem 0.625rem;
}

.filterwp .fwp-filter-range .fwp-range-slider {
  width: calc(100% - 1.25rem);
}

.fwp-range-slider:not(:last-child) {
  margin-bottom: 3rem;
}

.filterwp.fwp-mobile .fwp-topbar .fwp-filter-range &gt; div:not(.fwp-range-slider):nth-last-child(2):after,
.fwp-sidebar .fwp-filter-range &gt; div:not(.fwp-range-slider):nth-last-child(2):after {
  content: '';
  position: absolute;
  width: 0.625rem;
  height: 1px;
  border-top: 1px solid var(--global-text-color);
  right: -1rem;
  top: 50%;

}
.filterwp.fwp-mobile .fwp-topbar .fwp-filter-range &gt; div:not(.fwp-range-slider):last-child,
.fwp-sidebar .fwp-filter-range &gt; div:not(.fwp-range-slider):last-child {
  margin-left: 1.25rem;
}
.fwp-filter-range &gt; div &gt; input {
  border: none;
  box-shadow: none;
  background-color: transparent;
  outline: none;
  padding: 0.6875rem 0;
  width: 100%;
  font-size: 1rem;
  line-height: 1.25rem;
}

.fwp-filter-range &gt; div &gt; input:focus {
  background: transparent;
}

.filterwp .fwp-filter .fwp-filter-range &gt; .fwp-range-slider {
  height: 0.5rem;
  border-radius: 2px;
  background: #EBEEF2;
  border: none !important;
  margin-top: 1rem;
}
.fwp-filter-range &gt; .fwp-range-slider .ui-slider-range {
  background-color: #0B5FFF;
}
.fwp-filter-range &gt; .fwp-range-slider .ui-slider-handle,
.fwp-filter-range &gt; .fwp-range-slider .ui-slider-handle:focus {
  text-align: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 100%;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  top: -0.5625rem;
  background-color:#fff;
  outline: none;
}

.ui-slider-handle &gt; span {
  position: relative;
  bottom: 1.75rem;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.25rem;
  color: #000;
  white-space: nowrap;
}

.fwp-range-slider .limit {
  font-size: 0.8125rem;
  font-weight: 200;
  color: #999;
  display: flex;
  width: calc(100% + 0.5rem);
  margin-left: -0.25rem;
  position: relative;
  top: 1.2rem;
}

.fwp-range-slider .limit &gt; span {
  width: 50%;
}

.fwp-range-slider .limit &gt; span:last-child {
   text-align: right;
}

.fwp-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
}
.fwp-content .page-numbers {
	margin: 0 0.25rem;
	padding: 0.75rem;
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--global-text-color);
}
.fwp-content .page-numbers.current {
	color: var(--global-primary-color);
}

.fwp-content a.page-numbers.next,
.fwp-content a.page-numbers.prev {
	color: #0F144F !important;
	width: unset;
}


.fwp-topbar .fwp-filter-list.checkboxes {
	background: #F8FAFC;
  padding: 0.75rem !important;
}
/* sorter dropdown */

div.fwp-sorter,
div.fwp-search {
  position: relative;
  border-radius: 4px;
}

.filterwp.fwp-mobile .fwp-topbar .fwp-search,
.filterwp .fwp-sidebar .fwp-search {
  border-radius: 4px 4px 0 0;
}

div.fwp-sorter &gt; ul {
  display: none;
  list-style-type: none;
  position: absolute;
  padding: 0;
  min-width: 100%;
  margin: 0;
  z-index: 2147483647;

}

.filterwp.fwp-mobile .fwp-topbar .fwp-sorter &gt; ul,
.filterwp .fwp-sidebar .fwp-sorter &gt; ul {
  margin-top: 0.5rem;
}

.fwp-sorter.open &gt; ul {
  display: block;
}

.fwp-sidebar .fwp-sorter .fwp-filter-title &gt; .title,
.fwp-mobile .fwp-sorter .fwp-filter-title &gt; .title {
  display: none;
}


.fwp-sorter .fwp-filter-title &gt; .chosen {
  font-weight: normal;
}

.fwp-sorter .fwp-filter-title &gt; .chosen:before {
  content: " ";
  white-space: pre;
}

/* top bar */
.filterwp:not(.fwp-mobile) .fwp-topbar {
  /*display: flex;
  flex-wrap: wrap;*/
  display: grid;
  grid-auto-columns: unset;
  grid-auto-flow: column;
}

.filterwp:not(.fwp-mobile) div.fwp-topbar &gt; * {
  margin: 0.625rem;
}

.filterwp:not(.fwp-mobile) div.fwp-topbar &gt; *:first-child {
  margin-left: 0.75rem;
}
.filterwp:not(.fwp-mobile) div.fwp-topbar &gt; *:last-child {
  margin-right: 0.75rem;
}
.filterwp:not(.fwp-mobile) div.fwp-topbar.fwp-topbar-col3 &gt; *:last-child {
  margin-left: auto;
}

/* mobile specific nav */
.filterwp.fwp-mobile .fwp-topbar,
.filterwp.fwp-mobile .fwp-sidebar {
  padding: 0 1.875rem;
}

/* loading... */
.filterwp.loading .fwp-content {
  position: relative;
}

/* search module */
.fwp-search {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  padding: 0 1rem;
}

.filterwp.fwp-mobile .fwp-search,
.filterwp:not(.fwp-mobile) .fwp-topbar .fwp-search {
  padding-right: 0.5625rem;
}

.filterwp .fwp-search {
  background: var(--global-base-color);
}


.fwp-search svg {
  fill: var(--global-field-color);
}
.fwp-search &gt; span {
  line-height: 0.75rem;
}
.fwp-search &gt; span:first-child {
  margin-right: 0.875rem;
}
.fwp-search input {
  border: none;
  padding: 0.75rem 0;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  width: 100%;
  font-size: 1rem;
  line-height: 1.25rem;
}

.fwp-search input:focus {
  border: none;
  outline: none;
  box-shadow: none;
  background-color: transparent;
}

.fwp-search &gt; div {
  flex-grow: 1;
}

.fwp-filter-wrap:not(.fwp-control-wrap) {
  display: flex;
  flex-direction: column;
}

.filterwp:not(.fwp-mobile) .fwp-topbar .fwp-filter-wrap.buttons {
  flex-direction: row;
}

.filterwp .fwp-filter-content{
  display: flex;
  gap: 20px;
}


.fwp-filter-wrap.buttons .fwp-filter {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.fwp-filter-wrap.list, .fwp-filter-wrap.color{
  position: relative;
}

.fwp-topbar .fwp-filter-wrap.list .fwp-filter, .fwp-topbar .fwp-filter-wrap.color .fwp-filter {
  position: absolute !important;
  bottom: 0;
  left: 0;
  right: 0;
}

.filterwp .fwp-filter-wrap.buttons ul.buttons li.fwp-option[data-slug="reset_button"] {
  order: -1;
}

.filterwp:not(.fwp-mobile) .fwp-filter-wrap.range,
.filterwp:not(.fwp-mobile) .fwp-filter-wrap.sorter,
.filterwp:not(.fwp-mobile) .fwp-filter-wrap.search {
  padding-bottom: 0;
}

.filterwp:not(.fwp-mobile) .fwp-topbar .fwp-search &gt; div {
  width: 7.5625rem;
}

.fwp-reset-control {
  cursor: pointer;
}

.filterwp .fwp-filter-wrap.sorter .fwp-filter-title {
  margin-bottom: 0;
}


.filterwp .fwp-filter-wrap.date-range .fwp-filter-title {
  display: none;
}

.filterwp .fwp-filter-wrap.date-range .fwp-filter {
  min-width: 12.5rem;
}

.filterwp .fwp-filter-wrap.date-range .fwp-filter-daterange{
  position: relative;
}

.filterwp .fwp-filter-wrap.date-range .fwp-filter-daterange:before{
  content: '';
  position: absolute;
  left: 12px;
  height: 100%;
  width: 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='511.634px' height='511.634px' viewBox='0 0 511.634 511.634' style='enable-background:new 0 0 511.634 511.634;' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M482.513,83.942c-7.225-7.233-15.797-10.85-25.694-10.85h-36.541v-27.41c0-12.56-4.477-23.315-13.422-32.261 C397.906,4.475,387.157,0,374.591,0h-18.268c-12.565,0-23.318,4.475-32.264,13.422c-8.949,8.945-13.422,19.701-13.422,32.261v27.41 h-109.63v-27.41c0-12.56-4.475-23.315-13.422-32.261C178.64,4.475,167.886,0,155.321,0H137.05 c-12.562,0-23.317,4.475-32.264,13.422c-8.945,8.945-13.421,19.701-13.421,32.261v27.41H54.823c-9.9,0-18.464,3.617-25.697,10.85 c-7.233,7.232-10.85,15.8-10.85,25.697v365.453c0,9.89,3.617,18.456,10.85,25.693c7.232,7.231,15.796,10.849,25.697,10.849h401.989 c9.897,0,18.47-3.617,25.694-10.849c7.234-7.234,10.852-15.804,10.852-25.693V109.639 C493.357,99.739,489.743,91.175,482.513,83.942z M137.047,475.088H54.823v-82.23h82.224V475.088z M137.047,374.59H54.823v-91.358 h82.224V374.59z M137.047,264.951H54.823v-82.223h82.224V264.951z M130.627,134.333c-1.809-1.809-2.712-3.946-2.712-6.423V45.686 c0-2.474,0.903-4.617,2.712-6.423c1.809-1.809,3.946-2.712,6.423-2.712h18.271c2.474,0,4.617,0.903,6.423,2.712 c1.809,1.807,2.714,3.949,2.714,6.423v82.224c0,2.478-0.909,4.615-2.714,6.423c-1.807,1.809-3.946,2.712-6.423,2.712H137.05 C134.576,137.046,132.436,136.142,130.627,134.333z M246.683,475.088h-91.365v-82.23h91.365V475.088z M246.683,374.59h-91.365 v-91.358h91.365V374.59z M246.683,264.951h-91.365v-82.223h91.365V264.951z M356.323,475.088h-91.364v-82.23h91.364V475.088z M356.323,374.59h-91.364v-91.358h91.364V374.59z M356.323,264.951h-91.364v-82.223h91.364V264.951z M349.896,134.333 c-1.807-1.809-2.707-3.946-2.707-6.423V45.686c0-2.474,0.9-4.617,2.707-6.423c1.808-1.809,3.949-2.712,6.427-2.712h18.268 c2.478,0,4.617,0.903,6.427,2.712c1.808,1.807,2.707,3.949,2.707,6.423v82.224c0,2.478-0.903,4.615-2.707,6.423 c-1.807,1.809-3.949,2.712-6.427,2.712h-18.268C353.846,137.046,351.697,136.142,349.896,134.333z M456.812,475.088h-82.228v-82.23 h82.228V475.088z M456.812,374.59h-82.228v-91.358h82.228V374.59z M456.812,264.951h-82.228v-82.223h82.228V264.951z'/%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E");
}


.filterwp .fwp-sidebar .fwp-filter-wrap.date-range .fwp-filter-daterange input{
  width: 100%;
}

.filterwp .fwp-filter-wrap.date-range .fwp-filter-daterange input{
  font-size: 1rem;
  font-weight: 400;
  color: var(--global-field-color);
  border-radius: 4px;
  padding: 0.75rem 2rem 0.75rem 0.75rem;
  border: none;
  padding-left: 32px;
  line-height: 1.25rem;
}
.filterwp .fwp-filter-wrap.date-range .fwp-filter-daterange input{
  background-repeat: no-repeat;
  background-position: right 0.75rem bottom 45%;
  background-size: 1rem;
  background-image: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg' width='16' height='10'&gt;&lt;line stroke='black' x1='1' y1='1' x2='7' y2='7' stroke-width='2'/&gt;&lt;line stroke='black' x1='6' y1='7' x2='12' y2='1' stroke-width='2' /&gt;&lt;/svg&gt;");
}

.filterwp .fwp-filter-wrap.date-range .fwp-filter-daterange input.focus-visible{
  background-image: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg' width='16' height='10'&gt;&lt;line stroke='black'  x1='1' y1='7' x2='7' y2='1' stroke-width='2'&gt;&lt;/line&gt;&lt;line stroke='black' x1='6' y1='1' x2='12' y2='7' stroke-width='2' /&gt;&lt;/svg&gt;");
}

.filterwp .fwp-filter-wrap.date-range .fwp-filter-daterange input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--global-field-color);
  opacity: 1; /* Firefox */
}

.filterwp .fwp-filter-wrap.date-range .fwp-filter-daterange input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--global-field-color);
}

.filterwp .fwp-filter-wrap.date-range .fwp-filter-daterange input::-ms-input-placeholder { /* Microsoft Edge */
  color: var(--global-field-color);
}

/*.filterwp .fwp-filter-wrap.select-filter .fwp-filter-title {
  display: none;
}*/

.filterwp .fwp-filter-wrap .fwp-filter-select .fwp-filter-list{
  background: var(--global-base-color);
  font-size: 1rem;
  font-weight: 600;
  color: var(--global-field-color);
  border-radius: 4px;
  padding: 0.75rem 0.75rem;
  padding-right: 3.125rem;
  margin-bottom: 0.5rem;
  border: none;
  min-width: 12.5rem;
  line-height: 16px;
}

.filterwp .fwp-filter-wrap .fwp-filter-select .fwp-filter-list:focus{
  border: none;
}

.fwp-topbar ::placeholder,
.fwp-sidebar ::placeholder {
  color: var(--global-field-placeholder);
}

/* focus outline for search and range fields */
div.fwp-filter-range &gt; div:focus-within,
div.fwp-search:focus-within {
  border-color: transparent;
  box-shadow: 0 0 0 1px var(--global-fields-border);
}

.filterwp.fwp-mobile .fwp-topbar .fwp-search:focus-within,
.filterwp .fwp-sidebar .fwp-search:focus-within {
  border-radius: 4px;
}

@-webkit-keyframes fadeIn {
	0% { opacity: 0;}
	100% { opacity: 1; }
}

@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
.filterwp .fwp-content {
  position: relative;
}
.filterwp .fwp-loading-message {
  display: none;
}
.filterwp.loading .fwp-loading-message {
  display: block;
  position: absolute;
  top: -0.625rem;
  width: 100%;
  left: 0;
  text-align: center;
}
.filterwp.loading .fwp-loading-message span {
  display: inline-block;
  width: 0.9375rem;
  height: 0.9375rem;
  border-radius: 100%;
  background-color: #222;
  margin: 2.1875rem 0.3125rem;
  opacity: 0.2;
}

.filterwp.loading .fwp-loading-message span:nth-child(1) {
  animation: bounce 1s ease-in-out infinite;
}

.filterwp.loading .fwp-loading-message span:nth-child(2) {
  animation: bounce 1s ease-in-out 0.33s infinite;
}

.filterwp.loading .fwp-loading-message span:nth-child(3) {
  animation: bounce 1s ease-in-out 0.66s infinite;
}

@keyframes bounce{
  0%, 75%, 100%{
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  25%{
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.filterwp .fwp-content {
  position: relative;
}

.filterwp.lazy.lazyloading .fwp-loading-message {
	top: unset;
	bottom: -4.0625rem;
}

.filterwp.more.lazyloading .fwp-loading-message {
  top: unset;
  bottom: -5.625rem;
}

/* collapsed filter modules */
.fwp-filter-title,
.fwp-filter-label {
  font-size: 1rem;
  font-weight: 600;
  line-height: 2.5rem;
  margin-bottom: 0.625rem;
  color: var(--global-dark-text);
}
.fwp-sorter &gt; .fwp-filter-title,
.fwp-filter-wrap.collapsible &gt; .fwp-filter-title {
  position: relative;
  cursor: pointer;
}

.fwp-topbar .fwp-filter-wrap.collapsible:not(.sorter) &gt; .fwp-filter-title:after,
.fwp-sidebar .fwp-filter-wrap.collapsible:not(.sorter) &gt; .fwp-filter-title:after,
.fwp-sorter &gt; .fwp-filter-title:after,
.fwp-sorter.open &gt; .fwp-filter-title:after {
    content: '';
    position: absolute;
    right: 12px;
    height: 100%;
    width: 1rem;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg' width='16' height='10'&gt;&lt;line stroke='black'  x1='1' y1='7' x2='7' y2='1' stroke-width='2'&gt;&lt;/line&gt;&lt;line stroke='black' x1='6' y1='1' x2='12' y2='7' stroke-width='2' /&gt;&lt;/svg&gt;");
}

.filterwp.fwp-mobile .fwp-topbar .fwp-filter-wrap.collapsible.collapsed &gt; .fwp-filter-title:after,
.filterwp:not(.fwp-mobile) .fwp-topbar .fwp-filter-wrap.collapsible.collapsed:not(.hover) &gt; .fwp-filter-title:after,
.fwp-sidebar .fwp-filter-wrap.collapsible.collapsed:not(.hover):not(.sorter) &gt; .fwp-filter-title:after,
.filterwp:not(.fwp-mobile) .fwp-topbar .filterwp.fwp-mobile .fwp-filter-wrap.collapsible.collapsed.hover &gt; .fwp-filter-title:after,
.filterwp:not(.fwp-mobile) .fwp-topbar .fwp-filter-wrap.collapsible.hover:not(:hover) &gt; .fwp-filter-title:after,
.filterwp:not(.fwp-mobile) .fwp-filter-wrap.select-filter.collapsible.hover:not(:hover) &gt; .fwp-filter-title:after,
.fwp-sorter &gt; .fwp-filter-title:after {
  background-image: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg' width='16' height='10'&gt;&lt;line stroke='black' x1='1' y1='1' x2='7' y2='7' stroke-width='2'/&gt;&lt;line stroke='black' x1='6' y1='7' x2='12' y2='1' stroke-width='2' /&gt;&lt;/svg&gt;");
}

.fwp-filter-wrap.collapsible.collapsed:not(.hover):not(.buttons) &gt; .fwp-filter,
.fwp-sidebar .fwp-filter-wrap.buttons.collapsible.collapsed:not(.hover) &gt; .fwp-filter,
.filterwp.fwp-mobile .fwp-topbar .fwp-filter-wrap.buttons.collapsible.collapsed:not(.hover) &gt; .fwp-filter,
.filterwp.fwp-mobile .fwp-filter-wrap.collapsible.collapsed.hover &gt; .fwp-filter,
.filterwp:not(.fwp-mobile) .fwp-filter-wrap.collapsible.hover:not(:hover):not(.buttons) &gt; .fwp-filter {
  max-height: 0;
  overflow: hidden;
}

.filterwp:not(.fwp-mobile) .fwp-filter-wrap.collapsible.hover:not(.buttons):hover &gt; .fwp-filter ,
.filterwp:not(.fwp-mobile) .fwp-topbar .fwp-filter-wrap.collapsible:not(.hover):not(.collapsed):not(.buttons) &gt; .fwp-filter {
	max-height: 0;
	overflow: visible;
	position: relative;
	z-index: 5;
}
.filterwp:not(.fwp-mobile) .fwp-topbar .fwp-filter-wrap.collapsible.hover:hover:not(.buttons) &gt; .fwp-filter &gt; .fwp-list-wrap,
.filterwp:not(.fwp-mobile) .fwp-topbar .fwp-filter-wrap.collapsible:not(.hover):not(.collapsed):not(.buttons) &gt; .fwp-filter &gt; .fwp-list-wrap,
.fwp-sorter &gt; ul, 
.filterwp:not(.fwp-mobile) .fwp-filter-wrap.select-filter &gt; .fwp-filter &gt; .fwp-list-wrap{
	background: var(--global-base-color);
  box-shadow: -2px 4px 5px rgba(223, 230, 255, 0.6);
  border-radius: 4px;
}



/*.filterwp.fwp-mobile .fwp-topbar .fwp-filter-wrap.collapsible.hover:hover &gt; .fwp-filter &gt; .fwp-list-wrap,
.filterwp.fwp-mobile .fwp-topbar .fwp-filter-wrap.collapsible:not(.hover):not(.collapsed) &gt; .fwp-filter &gt; .fwp-list-wrap,
.filterwp:not(.fwp-mobile) .fwp-sidebar .fwp-sorter &gt; ul {
  background: #fff;
}*/

/* front end dropdowns in the topbar */
.filterwp:not(.fwp-mobile) .fwp-topbar .fwp-filter-wrap:not(.search):not(.buttons) .fwp-filter-title,
div.fwp-sorter &gt; div,
.fwp-moretrigger,
.filterwp:not(.fwp-mobile) .fwp-filter-wrap.select-filter .fwp-filter-title {
  background: var(--global-base-color);
  font-size: 1rem;
  font-weight: 600;
  color: var(--global-field-color);
  border-radius: 4px;
  padding: 0.125rem 0.75rem ;
  padding-right: 3.125rem;
  margin-bottom: 0.5rem;
}

.fwp-topbar .fwp-control-wrap &gt; button.fwp-moretrigger {
  padding: 0 0.75rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.fwp-topbar .fwp-control-wrap &gt; button.fwp-moretrigger:hover,
.fwp-topbar .fwp-control-wrap &gt; button.fwp-moretrigger:focus {
  border-color: transparent;
  box-shadow: 0 0 0 1px var(--global-fields-border);
}

.filterwp:not(.fwp-mobile) .fwp-topbar .fwp-filter-wrap:not(.search) .fwp-filter-title {
  min-width: 12.5rem;
  font-weight: 400;
  padding-left: 1rem;
}

.filterwp:not(.fwp-mobile) .fwp-topbar .fwp-filter-wrap.buttons .fwp-filter-title {
  display: none;
}

.filterwp:not(.fwp-mobile) .fwp-topbar .fwp-search input {
  font-weight: 400;
  color: var(--global-field-color);
}

/*.filterwp:not(.fwp-mobile) .fwp-sidebar div.fwp-sorter &gt; div
 {
  background: #fff;
}*/

.filterwp:not(.fwp-mobile) .fwp-topbar .fwp-filter-wrap.sorter &gt; .fwp-filter-title,
.filterwp:not(.fwp-mobile) .fwp-topbar .fwp-filter-wrap.search &gt; .fwp-filter-title {
  display: none;
}

.filterwp:not(.fwp-mobile) .fwp-topbar .fwp-filter-wrap .fwp-option,
.fwp-sorter-items .fwp-option,
.filterwp:not(.fwp-mobile) .fwp-filter-wrap.select-filter .fwp-option {
  padding: 0.375rem 0.625rem;
}

.filterwp .fwp-filter-wrap.buttons ul.buttons li.fwp-option {
  padding: 0.175rem 0.625rem;
}

.filterwp:not(.fwp-mobile) .fwp-topbar .fwp-filter-wrap:not(.buttons) ul:not(.colors) &gt; .fwp-option:first-child,
.fwp-sorter-items .fwp-option:first-child,
.filterwp:not(.fwp-mobile) .fwp-filter-wrap.select-filter .fwp-option:first-child {
  padding-top: 0.625rem;
}

.filterwp:not(.fwp-mobile) .fwp-topbar .fwp-filter-wrap:not(.buttons) ul:not(.colors) &gt; .fwp-option:last-child,
.fwp-sorter-items .fwp-option:last-child,
.filterwp:not(.fwp-mobile) .fwp-filter-wrap.select-filter .fwp-option:last-child {
  padding-bottom: 0.625rem;
}

.fwp-no-results {
  margin-top: 2.5rem;
  text-align: center;
}

div.filterwp {
  opacity: 1 !important;
}

/* specific to color swatches */
ul.fwp-filter-list.colors {
  display: flex;
  flex-wrap: wrap;
}

ul.fwp-filter-list.colors &gt; li &gt; div {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}

ul.fwp-filter-list.colors &gt; li &gt; div label {
  position: absolute;
  top: -2.5em;
  opacity: 0;
  width: auto;
  white-space: nowrap;
  background-color: #353c4e;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  pointer-events: none;
  line-height: 1;
  padding: 6px;
  border-radius: 3px;
}

ul.fwp-filter-list.colors &gt; li:hover &gt; div label {
  top: -2.3em;
  opacity: 1;
  transition: all 0.3s;
}

ul.fwp-filter-list.colors &gt; li:hover &gt; div label:after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  left: 50%;
  bottom: -10px;
  margin-left: -5px;
  border-style: solid;
  border-color: transparent;
  border-top-color: #353c4e;
  border-width: 5px;
  box-sizing: border-box;
}

ul.fwp-filter-list.colors &gt; li &gt; div &gt; div {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 100%;
}

ul.fwp-filter-list.colors:not(.active-shadow) &gt; li.active &gt; div &gt; div:before {
  content: '';
  position: absolute;
  left: -0.25rem;
  top: -0.25rem;
  width: calc(100% + 0.5rem);
  height: calc(100% + 0.5rem);
  border: 2px solid #252525;
  box-sizing: border-box;
}

ul.fwp-filter-list.colors &gt; li &gt; div &gt; div:before {
  border-radius: 100%;
}

ul.fwp-filter-list.shape-box-sharp.colors &gt; li &gt; div &gt; div,
ul.fwp-filter-list.shape-box-sharp.colors &gt; li &gt; div &gt; div:before {
  border-radius: 0;
}

ul.fwp-filter-list.shape-box-rounded.colors &gt; li &gt; div &gt; div {
  border-radius: 4px;
}

ul.fwp-filter-list.shape-box-rectangle.colors &gt; li &gt; div &gt; div {
  border-radius: 4px;
  width: 3rem;
}

ul.fwp-filter-list.shape-box-rounded.colors &gt; li &gt; div &gt; div:before,
ul.fwp-filter-list.shape-box-rectangle.colors &gt; li &gt; div &gt; div:before
{
  border-radius: 6px;
}

ul.fwp-filter-list.size-large.colors &gt; li &gt; div &gt; div {
  width: 2rem;
  height: 2rem;
}

ul.fwp-filter-list.size-large.shape-box-rectangle.colors &gt; li &gt; div &gt; div {
  width: 4rem;
}
ul.fwp-filter-list.colors &gt; li {
  padding: 0.3125rem;
}
ul.fwp-filter-list.size-large.colors &gt; li {
  padding: 0.4375rem;
}

ul.fwp-filter-list.active-shadow.colors &gt; li.active &gt; div &gt; div {
  border: 1px solid rgba(117, 104, 104, 0.5);
  box-shadow: 0px 1px 6px rgba(117, 104, 104, 0.5);
}

.fwp-option.fwp-more-data {
  display: none;
}

.fwp-option.fwp-more-data.fwp-less-data {
  display: block;
}

.fwp-list-more,
.fwp-list-less {
  font-size: 0.85rem;
  margin-left: 0.5rem;
  cursor: pointer;
}
/* pills */
.fwp-filter-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-basis: 100%;
}

.filterwp .fwp-filter-pills {
  margin-top: 0 !important;
}

.fwp-filter-pills &gt; div:only-child {
  display: none;
}

.fwp-filter-pills:has(&gt; div.filter-pill){
  display: none;
}

.fwp-pill {
  display: flex;
  margin-right: 0.5rem;
}

.fwp-pill,
.fwp-pill-reset,
.fwp-pill-count {
  padding: 0.45rem 1rem;
  border: 1px solid #D4D9DF;
  font-size: 0.875rem;
  line-height: 1;
  border-radius: 1rem;
  margin-bottom: 0.5rem;
}

.fwp-pill-reset {
  cursor: pointer;
  background: var(--global-base-color);
}

.fwp-pill:hover,
.fwp-pill-reset:hover,
.fwp-pill-count:hover {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08);
}

.fwp-pill span {
  display: block;
  height: 1rem;
  width: 1rem;
  background: url("data:image/svg+xml;utf8,&lt;svg width='8' height='8' xmlns='http://www.w3.org/2000/svg'&gt;&lt;path d='M6.79464 0.22937L3.96598 3.05737L1.13798 0.22937L0.195312 1.17204L3.02331 4.00004L0.195312 6.82804L1.13798 7.7707L3.96598 4.9427L6.79464 7.7707L7.73731 6.82804L4.90931 4.00004L7.73731 1.17204L6.79464 0.22937Z' /&gt;&lt;/svg&gt;") no-repeat;
  background-position: center center;
  background-size: 50%;
  cursor: pointer;
  margin-left: 0.5rem;
}

.fwp-filter-wrap.buttons ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch;
  align-items: center;
}

ul.fwp-filter-list.buttons:not(.style-button) li.fwp-option.active label,
ul.fwp-filter-list.buttons:not(.style-button) li.fwp-option:hover label,
ul.fwp-filter-list.buttons:not(.style-button) &gt; li[data-slug="reset_button"] label {
  border-bottom: 2px solid var(--global-primary-color);
  color: var(--global-primary-color);
}

ul.fwp-filter-list.buttons:not(.style-button) &gt; li.fwp-option.active ~ li[data-slug="reset_button"] label {
  border-bottom: unset;
  color: unset;
}

ul.fwp-filter-list.style-button.buttons &gt; li  {
  border-radius: 4px;
  background: var(--global-base-color);
  border: 1px solid var(--global-border-color);
  box-sizing: border-box;
  margin: 0.5rem 0.938rem;
}

ul.fwp-filter-list.style-button.buttons &gt; li.active,
ul.fwp-filter-list.style-button.buttons &gt; li:hover,
ul.fwp-filter-list.style-button.buttons &gt; li[data-slug="reset_button"] {
  background: #eef2f6;
  border-color: var(--global-text-color);
}

.fwp-filter-list.buttons.style-button li.fwp-option.active ~ li[data-slug="reset_button"] {
  background: var(--global-base-color);
  border-color: var(--global-border-color);
}

.filterwp:not(.fwp-mobile) div.fwp-topbar .fwp-ml-auto {
  margin-left: auto;
}

.filterwp:not(.fwp-mobile) div.fwp-topbar .fwp-mr-auto {
  margin-right: auto;
}

.filterwp:not(.fwp-mobile) .fwp-topbar.fwp-topbar-more {
  display: none;
}
.filterwp:not(.fwp-mobile) .fwp-topbar.fwp-topbar-more.active {
  /*display: flex;*/
  display: grid;
  /*grid-auto-columns: 1fr;*/
  grid-auto-columns: unset;
  grid-auto-flow: column;
}

.filterwp .fwp-filter-wrap &gt; .fwp-filter &gt; .fwp-list-wrap{
  position: relative;
}

.filterwp .fwp-filter-wrap:not(.collapsible) &gt; .fwp-filter &gt; .fwp-list-wrap &gt; .fwp-btn-reset {
  position: absolute;
  right: 14px;
  top: -36px;
  border-bottom: 1px solid #000;
}

.filterwp .fwp-filter-wrap &gt; .fwp-filter &gt; .fwp-list-wrap &gt; .fwp-btn-reset {
  font-size: 14px;
  cursor: pointer;
  line-height: 16px;
}

.filterwp .fwp-filter-wrap.collapsible &gt; .fwp-filter &gt; .fwp-list-wrap &gt; .fwp-btn-reset {
  display: flex;
  margin-right: 14px;
  padding-top: 4px;
  justify-content: right;
}

.filterwp .fwp-filter-wrap.collapsible &gt; .fwp-filter &gt; .fwp-list-wrap &gt; .fwp-btn-reset span{
  border-bottom: 1px solid #000;
}

.filterwp .fwp-filter-wrap:not(.collapsible) &gt; .fwp-filter &gt; .fwp-list-wrap &gt; .fwp-btn-reset {
  top: -36px;
}

.filterwp.fwp-mobile .fwp-topbar .fwp-filter-content.empty{
  border: unset !important;
  padding: 0px;
  margin: 0px;
}</pre></body></html>