#filters-toggle {
  display: none;
}

/* Mobile only */
@media (max-width: 768px) {
  #filters-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 2vw;
    left: 2vw;
    z-index: 10000;
    background-color: #8703ff;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  }
}