/* .filter-panel__overlay {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.25s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.filter-panel {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.25s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.filter-panel .close {
  position: absolute;
  top: 5px;
  right: 5px;
}

.filter-panel.active {
  opacity: 1;
  visibility: visible;
}

.filter-panel.active .filter-panel__overlay {
  opacity: 1;
  visibility: visible;
}

.filter-panel.active .filter-panel__panel {
  opacity: 1;
  visibility: visible;
}

.filter-panel .filter {
  border: none;
}

.filter-panel .filter__inner {
  padding: 0;
}

.filter-panel__panel {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.25s ease-in-out;
}

.filter-panel__hd {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 42px;
  padding: 0 20px;
  border-bottom: 1px solid transparent;
}

.filter-panel__cont {
  height: 100%;
  padding-top: 42px;
  padding-bottom: 60px;
}

.filter-panel__cont .filter__action,
.filter-panel__cont .form-actions {
  display: none;
}

.filter-panel__inner {
  max-height: 100%;
  overflow: auto;
  padding: 15px;
}

.filter-panel__ft {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 55px;
  padding: 0 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.filter-panel__ft .filter__action {
  margin: 0;
}

.filter-panel__ft .filter-clear {
  margin-right: 15px;
}

@media only screen and (max-width: 479px) {
  .filter-panel__panel {
    width: 100%;
  }
}

@media only screen and (min-width: 480px) and (max-width: 1199px) {
  .filter-panel.active .filter-panel__panel {
    transform: translateX(0);
  }

  .filter-panel__panel {
    width: 300px;
    transform: translateX(-100%);
  }
} */
/*# sourceMappingURL=maps/filter-panel_1.css.map */
