.product-sidebar {
  width: 100%;
  padding: 20px 20px;
  background: transparent;
}
.product-sidebar h2 {
  margin-bottom: 20px;
}
.category {
  background: #2e502e;
  color: #fff;
  padding: 12px 15px;
  cursor: pointer;
  margin-bottom: 5px;
  position: relative;
  border-radius: 20px;
}
.category::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 18px;
  transition: transform 0.3s;
}
.category.active::after {
  content: "-";
  transform: rotate(180deg);
}
.productdropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #ffffff;
  border-left: 3px solid #2e502e;
  padding: 0 0 0 15px;
  margin-bottom: 10px;
}
.productdropdown-menu a {
  display: block;
  color: #333;
  padding: 8px 0;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}
.productdropdown-menu a:hover {
  color: #2e502e;
}
/*.productdropdown-menu.open {
  padding: 10px 0 10px 15px;
}*/
.producttable{
  padding: 20px 0px;
}
.producttable thead tr th{
  background: rgba(18, 70, 0, 0.5);
  color: #fff;
}
.producttable td a{
  padding: 5px 10px;
  border-radius: 25px;
  color: #fff;
  background: rgba(18, 70, 0, 0.5);
}
.table td, .table th {
    padding: 4px 10px;
    vertical-align: top;
    border: 1px solid #dee2e6;
}
.productcatalouge{
  margin-top: 20px;
  width: 100%;
  color: white;
  background: #D2B61F;
  border-radius: 20px;
  text-align: center;
  padding: 10px 0;
  font-size: 20px;
}
.productcatalouge a{
  color: white;
  text-align: center;
}
.productlisthead{
  margin: 20px 0;
  color: #124600;
  font-weight: 700;
  font-size: 25px;
}

/*green 124600 rgba(18, 70, 0, 1)
yellow D2B61F  rgba(210, 182, 31, 1)*/