/*:: VARIABLES ::*/
/*******************************************************/
/*:: COLORS ::*/
/*:: GUTENBERG COLOR OPTIONS 
	see inc/back.php elabo_theme_block_colors() for color palette
::*/
.entry-content .has-color-black-color,
.is-root-container .has-color-black-color {
  color: #000;
}
.entry-content .has-color-black-background-color,
.is-root-container .has-color-black-background-color {
  background-color: #000;
}

.entry-content .has-color-white-color,
.is-root-container .has-color-white-color {
  color: #fff;
}
.entry-content .has-color-white-background-color,
.is-root-container .has-color-white-background-color {
  background-color: #fff;
}

.entry-content .has-color-bg-color,
.is-root-container .has-color-bg-color {
  color: #e5e5e5;
}
.entry-content .has-color-bg-background-color,
.is-root-container .has-color-bg-background-color {
  background-color: #e5e5e5;
}

.entry-content .has-color-red-color,
.is-root-container .has-color-red-color {
  color: #ED6955;
}
.entry-content .has-color-red-background-color,
.is-root-container .has-color-red-background-color {
  background-color: #ED6955;
}

.entry-content .has-color-purple-color,
.is-root-container .has-color-purple-color {
  color: #3E3E92;
}
.entry-content .has-color-purple-background-color,
.is-root-container .has-color-purple-background-color {
  background-color: #3E3E92;
}

.entry-content .has-color-grey-dark-color,
.is-root-container .has-color-grey-dark-color {
  color: #3D3935;
}
.entry-content .has-color-grey-dark-background-color,
.is-root-container .has-color-grey-dark-background-color {
  background-color: #3D3935;
}

.entry-content .has-color-orange-color,
.is-root-container .has-color-orange-color {
  color: #F7A418;
}
.entry-content .has-color-orange-background-color,
.is-root-container .has-color-orange-background-color {
  background-color: #F7A418;
}

.entry-content .has-color-brown-color,
.is-root-container .has-color-brown-color {
  color: #866015;
}
.entry-content .has-color-brown-background-color,
.is-root-container .has-color-brown-background-color {
  background-color: #866015;
}

.entry-content .has-color-green-color,
.is-root-container .has-color-green-color {
  color: #118471;
}
.entry-content .has-color-green-background-color,
.is-root-container .has-color-green-background-color {
  background-color: #118471;
}

/*:: BREAKPOINTS ::*/
/*:: FONT SIZE ::*/
/****
	filters
****/
.dae-results-top {
  margin-bottom: 1em;
  width: 100%;
}
.dae-results-top .dae-filter {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.dae-results-top .dae-filter .dae-count-result {
  font-size: 1rem;
}
.dae-results-top .dae-filter button.wp-block-button__link.dae-button-filter {
  background: #32373c;
  border: 3px solid transparent;
  border-radius: 0;
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.dae-results-top .dae-filter button.wp-block-button__link.dae-button-filter:hover {
  background: #ffffff;
  border-color: #32373c;
  color: #32373c;
}

.dae-filters-choices {
  margin-top: 10px;
}
.dae-filters-choices ul {
  list-style: none;
  padding-left: 20px;
  padding-top: 10px;
}

#dae-filters-shadow.dae-filters-shadow {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  background-color: transparent;
  z-index: -10;
  opacity: 0;
  transform: translate3d(100%, 0, 0);
  transition: opacity 400ms cubic-bezier(0.86, 0, 0.07, 1), transform 400ms cubic-bezier(0.86, 0, 0.07, 1);
}
#dae-filters-shadow.dae-filters-shadow.open {
  z-index: 50000;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.5);
  transform: translate3d(0, 0, 0);
}

.dae-filters {
  position: fixed;
  background-color: #fff;
  top: 0;
  bottom: 0;
  right: 0;
  width: 900px;
  z-index: 50000;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  transition: all 400ms cubic-bezier(0.86, 0, 0.07, 1);
  transform: translate3d(100%, 0, 0);
  max-width: 900px;
  margin: 0;
  padding: 0;
}
.dae-filters ul, .dae-filters li {
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  color: inherit;
  list-style-type: none;
  text-decoration: none;
  border-radius: 0;
  box-shadow: 0 0 0;
  text-shadow: 0 0 0;
  text-transform: none;
  text-align: left;
}
.dae-filters ul:after, .dae-filters ul:before, .dae-filters li:after, .dae-filters li:before {
  display: none;
}
.dae-filters.open {
  max-width: 70%;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
@media (max-width: 768px) {
  .dae-filters.open {
    max-width: 100%;
  }
}
.dae-filters .dae-filters-wrapper {
  position: relative;
  margin: 80px;
  width: calc(100% - 160px);
  min-height: calc(100% - 160px);
}
.dae-filters .dae-filters-wrapper .dae-close-filters {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  background: #32373c;
  border: 3px solid transparent;
  border-radius: 0;
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.dae-filters .dae-filters-wrapper .dae-close-filters:hover {
  background: #ffffff;
  border-color: #32373c;
  color: #32373c;
}
.dae-filters .dae-filters-wrapper .dae-date {
  padding: 0.5em;
  width: 15em;
  margin-left: 1em;
}
.dae-filters .dae-wrapper-suppress-btn {
  font-size: 1rem;
  margin-top: 1em;
}
.dae-filters h2 {
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  color: inherit;
  list-style-type: none;
  text-decoration: none;
  border-radius: 0;
  box-shadow: 0 0 0;
  text-shadow: 0 0 0;
  text-transform: none;
  text-align: left;
}
.dae-filters h2:after, .dae-filters h2:before {
  display: none;
}
.dae-filters h2.dae-filters-title {
  font-size: 1.5em;
  margin-bottom: 1em;
}
.dae-filters ul.dae-filters-selected-list {
  margin: 1em 0 2em;
}
.dae-filters ul.dae-filters-selected-list:after {
  content: "";
  display: block;
  height: 1px;
  background: #000;
  width: 50px;
  margin-top: 1.5em;
}
.dae-filters fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  color: inherit;
  list-style-type: none;
  text-decoration: none;
  border-radius: 0;
  box-shadow: 0 0 0;
  text-shadow: 0 0 0;
  text-transform: none;
  text-align: left;
}
.dae-filters fieldset:after, .dae-filters fieldset:before {
  display: none;
}
.dae-filters fieldset.dae-fieldset {
  margin: 1em 0;
}
.dae-filters fieldset.dae-fieldset legend {
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  color: inherit;
  list-style-type: none;
  text-decoration: none;
  border-radius: 0;
  box-shadow: 0 0 0;
  text-shadow: 0 0 0;
  text-transform: none;
  text-align: left;
}
.dae-filters fieldset.dae-fieldset legend:after, .dae-filters fieldset.dae-fieldset legend:before {
  display: none;
}
.dae-filters fieldset.dae-fieldset legend.dae-legend {
  display: block;
  font-weight: bold;
}
.dae-filters fieldset input[type=checkbox] {
  margin-right: 5px;
  vertical-align: middle;
}
.dae-filters fieldset label {
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  color: inherit;
  list-style-type: none;
  text-decoration: none;
  border-radius: 0;
  box-shadow: 0 0 0;
  text-shadow: 0 0 0;
  text-transform: none;
  text-align: left;
  display: inline;
}
.dae-filters fieldset label:after, .dae-filters fieldset label:before {
  display: none;
}
.dae-filters details li {
  margin: 0.75em 0;
  text-shadow: none;
}
.dae-filters details summary {
  cursor: pointer;
  padding: 0.5rem 1rem;
}
.dae-filters details summary:hover {
  background-color: #f6f6f6;
}
.dae-filters details summary > * {
  display: inline;
}
.dae-filters details > *:not(summary) {
  padding: 1rem;
}

#dae-filters .dae-filter-content .dae-date {
  margin: 0;
}
#dae-filters .dae-filter-header .dae-filter-title button {
  background-color: transparent;
  color: #000;
}

ul.dae-filters-labels {
  max-height: 350px;
  overflow-y: auto;
  list-style: none;
  padding: 0.25em 0 0 0.25em;
  margin-left: 0;
  float: none;
}

li.dae-label-item {
  float: left;
  margin-top: 0;
  margin-bottom: 10px;
  padding: 0;
  width: auto;
}
li.dae-label-item .dae-label-item-content-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}
li.dae-label-item .dae-label-item-content-wrapper input {
  display: none;
}
li.dae-label-item .dae-label-item-content-wrapper label {
  display: flex;
  margin-right: 8px;
  margin-left: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding-left: 0;
  margin-bottom: 0;
  position: relative;
}
li.dae-label-item .dae-label-item-content-wrapper label:hover {
  border-color: #3E3E92;
  background-color: #3E3E92;
  color: #ffffff;
}
li.dae-label-item .dae-label-item-content-wrapper .dae-filter-label-wrapper {
  border: 1px solid transparent;
  margin-left: 0;
  cursor: pointer;
  display: flex;
  padding: 2px 10px;
  border-radius: 3px;
}
li.dae-label-item .dae-label-item-content-wrapper :checked + label span.dae-filter-label-wrapper {
  background-color: #3E3E92;
  color: #ffffff;
}
li.dae-label-item .dae-label-item-content-wrapper :disabled + label span.dae-filter-label-wrapper {
  opacity: 0.5;
}
li.dae-label-item .dae-label-item-content-wrapper :disabled + label:hover {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
  color: unset;
}

.dae-filters-section {
  margin-bottom: 1.5em;
  position: relative;
}

.dae-filter-header .dae-filter-title {
  margin-bottom: 1em;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0 0 1em;
}
.dae-filter-header .dae-filter-title button {
  width: 100%;
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
  outline: 0;
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  box-shadow: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  min-height: 0;
}
.dae-filter-header .dae-filter-title button .dae-open-icon {
  content: "";
  width: 0.5em;
  min-width: 0.5em;
  height: 0.5em;
  display: block;
  border-left: 1px solid #6d6d6d;
  border-top: 1px solid #6d6d6d;
  position: relative;
  transform: rotate(-135deg);
}

.dae-filter-collapsible.dae-opened .dae-filter-title button .dae-open-icon {
  transform: rotate(45deg);
}

.dae-wrap-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  line-height: 1;
}

.dae-filter-content input[type=text] {
  border: 1px solid #ccd0dc;
  border-radius: 3px;
  background: transparent;
  box-shadow: none;
  padding-top: 5px;
  padding-bottom: 5px;
}
.dae-filter-content input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #ccd0dc;
  background: #ffffff;
  border-radius: 5px;
  min-width: 20px;
}
.dae-filter-content input[type=checkbox]:hover {
  border-color: #3E3E92;
  background: transparent;
}
.dae-filter-content input[type=checkbox]:checked {
  border: 2px solid #3E3E92;
  background: transparent;
}
.dae-filter-content input[type=checkbox]:after {
  content: "";
  opacity: 0;
  display: block;
  left: 5px;
  top: 2px;
  position: absolute;
  width: 4px;
  height: 8px;
  border: 2px solid #3E3E92;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
  box-sizing: content-box;
}
.dae-filter-content input[type=checkbox]:checked:after {
  opacity: 1;
}
.dae-filter-content input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #ccd0dc;
  background: #ffffff;
  border-radius: 50%;
  min-width: 20px;
}
.dae-filter-content input[type=radio]:hover {
  border-color: #3E3E92;
  background: transparent;
}
.dae-filter-content input[type=radio]:checked {
  border: 2px solid #3E3E92;
  background: transparent;
}
.dae-filter-content input[type=radio]:after {
  content: "";
  opacity: 0;
  display: block;
  left: 4px;
  top: 4px;
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3E3E92;
  box-sizing: content-box;
}
.dae-filter-content input[type=number] {
  border: 1px solid #ccd0dc;
  border-radius: 3px;
  background: transparent;
  box-shadow: none;
  padding-top: 5px;
  padding-bottom: 5px;
}
.dae-filter-content :disabled + label {
  opacity: 0.5;
}
.dae-filter-content select {
  max-width: 100%;
  background-color: transparent;
  border: 1px solid #ccd0dc;
  border-radius: 3px;
}
.dae-filter-content .dae-term-count {
  color: #828282;
  margin: 0 5px;
}
.dae-filter-content .dae-term-count-value::before {
  content: "(";
}
.dae-filter-content .dae-term-count-value::after {
  content: ")";
}

.dae-filters-range-wrapper {
  display: flex;
  justify-content: space-between;
}

.dae-filters-range-column {
  width: auto;
}

.dae-filters-range-max-column, .dae-filters-range-min-column {
  max-width: 47%;
}

.dae-filters-range-min-column {
  margin-right: 3%;
}

/* jQuery UI Slider */
.dae-filters-range-slider-wrapper {
  margin: 1.5em 13px 10px 0;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #ffffff;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #ffffff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 26px;
  height: 26px;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
  box-shadow: inset 0 0 0 1px #ebebeb;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}

.ui-slider-horizontal {
  height: 3px;
  background: #c5c5c5;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -12px;
  margin-left: -6px;
  border-radius: 50%;
  outline: none;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.23);
}

.ui-slider-horizontal .ui-slider-range:hover,
.ui-slider-horizontal .ui-slider-handle:hover {
  cursor: pointer;
}

.dae-filters-widget-main-wrapper .ui-slider-horizontal .ui-slider-handle:after,
.dae-filters-widget-main-wrapper .ui-slider-horizontal .ui-slider-handle:before {
  display: none;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
  background: #4c4c4c;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

/* Autocomplete */
.dae-filters .dae-filters-wrapper #i-fpost_title, .dae-filters .dae-filters-wrapper #dae-autocomplete {
  width: 15em;
}

#dae-autocomplete {
  position: absolute;
  z-index: 1;
  background-color: white;
}
#dae-autocomplete .ui-autocomplete {
  max-height: 300px;
  overflow-y: auto;
  /* prevent horizontal scrollbar */
  overflow-x: hidden;
}
#dae-autocomplete .ui-widget.ui-widget-content {
  border: 1px solid #d3d3d3;
}
#dae-autocomplete .ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
  border-bottom: 1px solid #d3d3d3;
}
#dae-autocomplete .ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding: 3px 1em 3px 0.4em;
}

.dae-input-autocomplete {
  position: relative;
  width: 15em;
}
.dae-input-autocomplete .dae-icon-container {
  position: absolute;
  right: 10px;
  top: calc(50% - 10px);
  display: none;
}
.dae-input-autocomplete .dae-loader {
  position: relative;
  height: 20px;
  width: 20px;
  display: inline-block;
  animation: around 5.4s infinite;
}
@keyframes around {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.dae-input-autocomplete .dae-loader::after, .dae-input-autocomplete .loader::before {
  content: "";
  background: white;
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  border-width: 2px;
  border-color: #333 #333 transparent transparent;
  border-style: solid;
  border-radius: 20px;
  box-sizing: border-box;
  top: 0;
  left: 0;
  animation: around 0.7s ease-in-out infinite;
}
.dae-input-autocomplete .dae-loader::after {
  animation: around 0.7s ease-in-out 0.1s infinite;
  background: transparent;
}/*# sourceMappingURL=filters.css.map */