.cmp-filters-clusters__clusters {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  justify-content: space-between;
  padding-left: 20px;
}
@media (max-width: 991px) {
  .cmp-filters-clusters__clusters {
    gap: 2px 20px;
  }
}
@media (max-width: 500px) {
  .cmp-filters-clusters__clusters {
    gap: 6px 20px;
  }
}
.cmp-filters-clusters__cluster-item {
  display: block;
  margin-right: 24px;
  width: 30%;
}
.cmp-filters-clusters__cluster-item:nth-of-type(3),
.cmp-filters-clusters__cluster-item:nth-of-type(6),
.cmp-filters-clusters__cluster-item:nth-of-type(9),
.cmp-filters-clusters__cluster-item:nth-of-type(12),
.cmp-filters-clusters__cluster-item:nth-of-type(15) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .cmp-filters-clusters__cluster-item:nth-of-type(3),
  .cmp-filters-clusters__cluster-item:nth-of-type(6),
  .cmp-filters-clusters__cluster-item:nth-of-type(9),
  .cmp-filters-clusters__cluster-item:nth-of-type(12),
  .cmp-filters-clusters__cluster-item:nth-of-type(15) {
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .cmp-filters-clusters__cluster-item {
    margin-right: 20px;
    width: 45%;
  }
}
@media (max-width: 767px) {
  .cmp-filters-clusters__cluster-item {
    margin-right: 20px;
    width: 42%;
  }
}
@media (max-width: 500px) {
  .cmp-filters-clusters__cluster-item {
    margin-right: 20px;
    width: 100%;
  }
}
.cmp-filters-clusters__clusters-checkmark {
  border: 1px solid #ccc;
  display: block;
  font-weight: var(--body-regular-weight);
  height: 16px;
  left: -24px;
  position: absolute;
  top: 1px;
  width: 16px;
}
.cmp-filters-clusters__clusters-checkmark:after {
  border: solid var(--bgsu-orange);
  content: "";
  display: none;
  height: 18px;
  left: 5px;
  position: absolute;
  top: -6px;
  transform: rotate(45deg);
  width: 10px;
  border-width: 0 4px 3px 0;
}
.cmp-filters-clusters__cluster-item-label {
  cursor: pointer;
  display: block;
  font-size: 14px;
  font-weight: var(--body-regular-weight);
  line-height: 1.2;
  margin: 0 0 18px;
  position: relative;
  user-select: none;
}
@media (max-width: 991px) {
  .cmp-filters-clusters__cluster-item-label {
    line-height: 1.3;
  }
}
.cmp-filters-clusters__cluster-item:hover .cmp-filters-clusters__clusters-checkmark {
  border-color: var(--bgsu-orange);
}
.cmp-filters-clusters__virtual-checkbox {
  cursor: pointer;
  float: left;
  margin: 3px 10px 20px 0;
  opacity: 0;
  position: absolute;
}
.cmp-filters-clusters__cluster-item-label:hover .cmp-filters-clusters__virtual-checkbox ~ .cmp-filters-clusters__clusters-checkmark {
  background-color: #fff;
}
.cmp-filters-clusters__cluster-item-label .cmp-filters-clusters__virtual-checkbox:checked ~ .cmp-filters-clusters__clusters-checkmark {
  background-color: #fff;
}
.cmp-filters-clusters__cluster-item-label .cmp-filters-clusters__virtual-checkbox:checked ~ .cmp-filters-clusters__clusters-checkmark:after {
  display: block;
}
