
.container { 
    display: flex; 
    padding: 20px; 
}

.filter { 
  width: 200px;
  margin-right: 20px; 
  border-left: 1px solid #363636;
  padding-left: 20px; 
  font-size: 14px;
}

.filter select { 
  width: 100%; 
  margin-top: 3px;
  margin-bottom: 10px;
  padding: 5px; 
}

.filter-catergories { 
  padding: 5px 20px; 
  border-radius: 8px;
  background-color: rgb(44, 44, 44);
  border: 1px solid rgb(44, 44, 44);
  color: #ccc;
}

.filter-catergories:hover { 
  background-color: rgb(59, 56, 56);
  border: 1px solid rgb(44, 44, 44);
  color: #ccc;
}

h3 {
  font-weight: 500;
  font-size: 15px;
}

.mobile-filter-toggle {
  display: none;
}
  
.filter {
  position: fixed;
  z-index: 1000;
  inset: 0 0 0 100%;

  flex-direction: column;
  padding: min(40vh, 15.3rem) 1em;

  background: hsla(0, 0%, 9%, 0.8);
  backdrop-filter: blur(1rem);
  border-radius: 15px 0 0 15px ;

  transform: translateX(-100%);
  transition: transform 350ms ease-out;

}

.filter[data-visible="false"] {
  transform: translateX(0%);
}

.mobile-filter-toggle {
  display: block;
  position: absolute;
  z-index: 9999;
  background-image: url("../images/icons/filter-list.svg") !important;
  background-color: transparent;
  width: 1.5rem;
  border: 0;
  aspect-ratio: 1;
  top: 16rem;
  right: 4rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  
}
