﻿#cssmenu,
#cssmenu ul,
#cssmenu li,
#cssmenu a {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  font-weight: normal;
  text-decoration: none;
  line-height: 1;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  position: relative;  
}
#cssmenu {
  margin: 0 1rem;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  margin-bottom: 15px;
}
#cssmenu a {
  line-height: 1.3;
}
#cssmenu > ul > li:first-child {
  background: #fff;
  border: 1px solid #fff;
  -webkit-border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
}
#cssmenu > ul > li:first-child > a {
  padding: 15px 10px;
  border: none;
  border-top: 1px solid #818176;
  -webkit-border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
  font-family: 'Ubuntu', sans-serif;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
}
#cssmenu > ul > li:first-child > a > span {
  padding: 0;
}
#cssmenu > ul > li:first-child:hover {
  background: #777;
}
#cssmenu > ul > li {
  border-bottom: 1px solid #e4e5e7;
}
#cssmenu > ul > li:hover {
  background: #eee;
}
#cssmenu > ul > li > a {
  display: block;
  border-top: none;
}
#cssmenu > ul > li > a > span {
  display: block;
  padding: 12px 28px 12px 0px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
#cssmenu > ul > li > ul > li > a > span {
  display: block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
#cssmenu > ul > li.active {
  border-bottom: none;
}
.feather {
	fill:#000;
}
#cssmenu > ul > li.has-sub > a span {
  background: url('/images/icon-plus.svg') 100% center no-repeat;
  background-size: 12px 12px;
}
#cssmenu > ul > li.has-sub.active > a span {    
  background: url('/images/icon-minus.svg') 100% center no-repeat;
  background-size: 12px 12px;
}
#cssmenu > ul > li > ul > li.has-sub > a {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="grey" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-plus-square"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line></svg>') 98% center no-repeat;
}
#cssmenu > ul > li > ul > li.has-sub.active > a {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="grey" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-minus-square"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="8" y1="12" x2="16" y2="12"></line></svg>') 98% center no-repeat;
}
/* Sub menu */
#cssmenu ul ul {
  display: none;
  background: #fff;
}

#cssmenu ul ul ul {
  display: none;
  background: #fff;
  border-right: none;
  border-left: none;
}

#cssmenu ul ul li {
  padding: 0;
  border-top: none;
  background: #fefefe;
}

#cssmenu ul ul ul li {
  background: #fff;
}

#cssmenu ul ul li:last-child {
  border-bottom: none;
}
#cssmenu ul ul a {
  padding: 10px 32px 10px 16px;
  display: block;
  font-size: 14px;
  font-weight: normal;
}
#cssmenu ul ul ul a {
  padding: 10px 5px 10px 28px;
  color: #444;
}
#cssmenu ul ul a:before {
  position: absolute;
  left: 10px;
  color: #111;
}
#cssmenu ul ul ul a:before {

}
#cssmenu ul ul a:hover {
  color: #111;
}

#cssmenu ul ul a span.active {
  color: #221e1f;
  font-weight: bold;
}

#cssmenu .mclick {
    display: inline-block;
    width: 42px;
    height: 42px;
    position: absolute;
    right: 0;
    top: 0;
	z-index: 9;
	cursor: pointer;
}