/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
#computer_case_brands,
#computer_case_filters {
  display: inline;
}
.close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  font-weight: bold;
  color: red;
  cursor: pointer;
  font-size: 15px;
}
.select-btn {
  display: inline-flex;
  margin-right: 10px;
  height: 35px;
  width: fit-content;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-radius: 8px;
  cursor: pointer;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.select-btn .btn-text {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.select-btn .arrow-dwn {
  display: flex;
  margin-left: 20px;
  height: 21px;
  width: 21px;
  color: #fff;
  font-size: 14px;
  border-radius: 50%;
  background: #6e93f7;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.select-btn.open .arrow-dwn {
  transform: rotate(-180deg);
}
.list-items {
  cursor: pointer;
  position: absolute;
  z-index: 1;
  margin-top: 15px;
  border-radius: 8px;
  padding: 16px;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  display: none;
  background: rgba(255, 255, 255, 0.96);
}
.list-items .selected {
  background: rgba(210, 210, 210, 0.35);
}
.list-items .resultaten {
  width: 128px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.list-items .opnieum {
  width: 128px;
  position: absolute;
  bottom: 50px;
  right: 10px;
}
.select-btn.open ~ .list-items {
  display: block;
}
.list-items .item {
  display: flex;
  align-items: center;
  list-style: none;
  height: 50px;
  cursor: pointer;
  transition: 0.3s;
  padding: 0 15px;
  border-radius: 8px;
}
.list-items .item:hover {
  background-color: #e7edfe;
}
.item .item-text {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}
.item .checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  width: 16px;
  border-radius: 4px;
  margin-right: 12px;
  border: 1.5px solid #c0c0c0;
  transition: all 0.3s ease-in-out;
}
.item.checked .checkbox {
  background-color: #4070f4;
  border-color: #4070f4;
}
.checkbox .check-icon {
  color: #fff;
  font-size: 11px;
  transform: scale(0);
  transition: all 0.2s ease-in-out;
}
.item.checked .check-icon {
  transform: scale(1);
}
