.filter-panel {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80vw;
  max-width: 480px;
  height: 100vh;
  background: #fff;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: left 0.35s ease;
  padding: 2em 1.5em;
  overflow-y: auto;
}

.filter-panel.active {
  left: 0;
}

.filter-panel .content-button {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 1rem;
}

.filter-panel .content-button button {
  background: unset;
  border: unset;
  position: relative;
  height: 25px;
  width: 30px;
  padding: 0;
  cursor: pointer;
}

.filter-panel .content-button button span {
  position: absolute;
  left: 0;
  height: 1px;
  width: 30px;
  background-color: var(--black);
}

.filter-panel .content-button button span:nth-child(1) {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}

.filter-panel .content-button button span:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
}

.filter-panel .filter-content p {
  text-transform: uppercase;
  font-family: var(--font-semiBold);
  color: var(--black);
  margin-bottom: 0;
  font-size: 18px;
}

.filter-panel .filter-content span {
  font-family: var(--font-medium);
  font-size: 14px;
  margin-bottom: 1.25rem;
  display: block;
}

.filter-panel .filter-content .button {
  border: unset;
  background: unset;
  border: 2px solid var(--black);
  background-color: var(--yellow);
  color: var(--black);
  text-transform: uppercase;
  font-size: 18px;
  font-family: var(--font-semiBold);
  width: 100%;
  padding: 0.825rem 0;
  border-radius: 5px;
  padding-bottom: 0.7rem 0;
  margin-top: 0;
}

.filter-panel .filter-content .filter-section {
  position: relative;
  padding-bottom: 1.5rem;
}

.filter-panel .filter-content .filter-section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--black);
  left: 0;
  bottom: 0;
}

.filter-panel .filter-content .category-filter {
  margin: 1.5rem 0;
}

.filter-panel .filter-content .category-filter p {
  font-size: 18px;
  margin: 0;
}

.filter-panel .filter-content .category-filter ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1.25rem;
}

.filter-panel .filter-content .category-filter ul li {
  margin-bottom: 1.35rem;
}

.filter-panel .filter-content .category-filter ul li a {
  text-decoration: none;
  color: var(--black);
  text-transform: uppercase;
  font-family: var(--font-medium);
  font-weight: 200;
  font-size: 16px;
  transition: 120ms ease-in-out;
}

.filter-panel .filter-content .category-filter ul li a:hover {
  color: var(--sky-blue);
}

@media only screen and (min-width: 960px) {
  .filter-panel {
    position: initial;
    height: auto;
    padding: 0;
    box-shadow: unset;
    padding-right: 1rem;
    max-width: 30%;
    width: 100%;
    z-index: 2;
  }

  .filter-panel .content-button {
    display: none;
  }

  .filter-panel .filter-content p {
    margin-top: 0;
  }

  .range-slider-container {
    width: 80%;
  }

  .filter-panel .filter-content .button {
    width: 80%;
    padding: 0.625rem 0;
  }

  .wrapper-store .range-slider-container {
    width: 80%;
  }

  .wrapper-store .filter-panel .filter-content .button {
    width: 80%;
  }

  .filter-panel .filter-content .filter-section::after {
    width: 80%;
  }

  .filter-panel .filter-content .category-filter p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 1300px) {
  .filter-panel {
    max-width: 20%;
  }
}