.filter-box {
  position: absolute;
  right: 0;
  max-width: 600px;
  min-width: 300px;
  z-index: 3;
  background-color: white;
  max-height: 300px;
  overflow: auto;
  padding: 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
  top: 50px;
  display: none;
}

#filter-btn {
  position: absolute;
  right: 10px;
  top: 15px;
  z-index: 3;
}

#filter-btn:hover {
  cursor: pointer;
  color: #c73535;
}

ul {
  list-style: none;
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

.check-box {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 7px;
  cursor: pointer;
}

.check-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.check-box input:checked ~ .checkmark {
  background-color: #C73536;
  border: none;
}

.check-box input:checked ~ .checkmark:after {
  display: block;
}

.check-box:hover input ~ .checkmark {
  background-color: #c735359a;
}

.check-box .checkmark:after {
  left: 6px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.checkmark, .checkmark2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  border: 1px solid #bbb;
}

.checkmark:after, .checkmark2:after {
  content: "";
  position: absolute;
  display: none;
}

#style-3::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(51, 51, 51, 0.493);
  background-color: #F5F5F5;
}

#style-3::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}

#style-3::-webkit-scrollbar-thumb {
  background-color: #333;
}
/*# sourceMappingURL=cat.css.map */