@media (max-width: 992px) {
  .filter-form-grid {
    position: fixed;
    transform: translateY(100%);
    left: 0;
    visibility: hidden;
    width: 100%;
    bottom: 0px;
    z-index: 3000000000;
    background: #FFFFFF;
    padding: 32px 40px 36px 40px;
    overflow-y: scroll;
    transition: all 0.4s ease;
    max-height: 224px;
  }
  .filter-expanded {
    visibility: visible;
    transform: none;
  }
  .filter-expanded .filter-wrapper .filter--close {
    cursor: pointer;
    display: block;
    background: url(../../images/faq/close.svg) center center no-repeat;
    width: 9px;
    height: 12px;
    font-size: 0px;
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 9999;
  }
}
.burger-filter {
  border: 1px solid #ABABAB;
  border-radius: 0;
  padding: 20px 16px;
  color: #313538;
  height: 52px;
  outline: none;
  font-weight: 700;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: url(../../images/faq/dropdown-icon.svg) right 15px center no-repeat;
  width: 100%;
  text-align: left;
}
@media (min-width: 768px) {
  .burger-filter {
    padding: 20px 24px;
  }
}