/*Filter: Colors*/
ul.color-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

ul.color-list li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
}

.color-checkbox {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

.color-list label {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.3s;
}

.color-list input:checked+label {
  border: 3px solid #999;
  border-radius: 0px;
}



/*Filter: Sizes*/
.widget .size-link {
  display: flex;
  flex-wrap: wrap;
}

.widget .size-link label {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  font-size: 10px;
  text-transform: uppercase;
  color: #222;
}

.widget .size-link .size-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.widget .size-link span {
  display: inline-block;
  line-height: 32px;
  min-width: 32px;
  min-height: 32px;
  border-radius: 50%;
  text-align: center;
  background-color: #eeeeee;
  transition: all 0.3s;
}

.widget .size-link .size-checkbox:checked+span {
  background-color: #ff5454;
  color: #fff;
}



/*Filter: Main Categories*/
.widget .category-checkbox-list {
  display: flex;
  flex-direction: column;
}

.widget .category-checkbox-list label {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #565d64;
  line-height: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.widget .category-checkbox-list input[type="checkbox"] {
  margin-right: 10px;
  cursor: pointer;
}

.widget .category-checkbox-list input[type="checkbox"]:checked+label {
  font-weight: bold;
  color: #10111e;
}

.widget .category-checkbox-list label:hover {
  color: #10111e;
}



/*Filter: Price*/
.slider-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-inputs input {
  width: 48%;
}

#minPrice, #maxPrice  {
  border-radius: 10px;
  border: 1px solid #aaa;
  color: #555;
  font-size: .9rem;
  padding: .3rem;
}



/*Tag cloud*/
.widget .tag-list ul li {
  display: inline-block;
  margin: 3.5px 0px;
}

.widget .tag-list ul li input[type="checkbox"] {
  display: none;
}

.widget .tag-list ul li label {
  color: #777779;
  background: #ededed;
  font-size: 12px;
  font-weight: 400;
  line-height: 21.4286px;
  padding: 5px 12px;
  border-radius: 30px;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.widget .tag-list ul li input[type="checkbox"]:checked + label {
  background: #ff5454; /* Change to your desired active color */
  color: #ffffff;
}

.filter-form-submit button {
  width: 100%;
}

