/* Main div */
.wct-categories {
    padding: 15px;
    border-radius: 20px;
    border: 1px solid #eeeeee;
    color: #222222;
    background-color: rgb(238 238 238 / 20%);
}
@media (max-width:768px) {
	.wct-categories {
		margin: 0 auto;
	}
}
/* Plus if element is hidden */
.main-category-expand::after, .sub-category-expand::after {
  content: '\002b';
}

/* Minus if element is expanded */
.main-category-expand.expanded::after, .sub-category-expand.expanded::after {
  content: '\2212';
}

/* Plus/Minus style */
.main-category-expand, .sub-category-expand {
  margin-left: 10px;
  font-size: 1.2em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Hover on plus/minus */
.main-category-expand:hover, .sub-category-expand:hover {
  color: #59983E;
  transform: scale(1.1);
}

/* Font main category */
.wct-category a {
  font-size: 15px;
	line-height: 40px;
	color: #222222;
}

/* Font sub category */
.wct-sub-category a {
  font-size: 14px;
}

/* Font sub sub category */
.wct-sub-sub-category a {
  font-size: 13px;
}

/* Default subcategory/subsubcategory */
.wct-sub-categories, .wct-sub-sub-categories {
  display: none;
  margin-left: 10px;
  border-left: 1px solid #cccccc;
  padding-left: 10px;
  overflow: hidden;
}

/* Active category - only direct active link */
.wct--active > a {
  font-weight: bold;
  color: #59983E;
}
