.sidebar {
  float: left;
  overflow-x: hidden;
  width: 15%;
  position: static;
}
.sidebar-content {
  width: 85%;
  float: left;
}
.filtersContainer {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 768px) {
  .sidebar-content {
    width: 100%;
  }
  .sidebar {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .sidebar.show {
    display: block;
  }
  .sidebar-shows {
    min-width: 350px;
    width: 25%;
    background-color: white;
    border-right: solid 1px black;
    z-index: 1000;
  }
  .sidebar .scroll {
    position: fixed;
    overflow-y: hidden;
    top: 1px;
    height: calc(100% - 1px);
    width: 75%;
    background-color: white;
    border-right: solid 1px black;
  }
  .filtersContainer {
    height: 100%;
    overflow-y: auto;
  }
}
