.category-wrap {
  padding: 15px;
  margin:15px;
  background: white;
  width: 220px;
  box-shadow: 2px 2px 8px rgba(0,0,0,.1);
  list-style:none;
}
.category-wrap h3 {
  font-size: 110%;
  color: rgba(0,0,0,.6);
  margin: 0 0 10px;
  padding: 0 5px;
  position: relative;
}
.category-wrap h3:after {
  content: "";
  width: 6px;
  height: 6px;
  background: #20a76a;
  position: absolute;
  right: 5px;
  bottom: 2px;
  box-shadow: -8px -8px #20a76a, 0 -8px #20a76a, -8px 0 #20a76a;
}
.category-wrap ul {
  list-style: none;
  margin: 0;
  padding: 0; 
  border-top: 1px solid rgba(0,0,0,.3);
}
.category-wrap li {margin: 12px 0 0 0px; list-style:none;}
.category-wrap a {
  text-decoration: none;
  display: block;  
  font-size: 90%;
  color: rgba(0,0,0,.6);
  padding: 5px;
  position: relative;
  transition: .3s linear;
}
.category-wrap a:after {
  content:"\2714";
  font-family: FontAwesome;
  position: absolute;
  right: 5px;
  color: white;
  transition: .2s linear;
}
.category-wrap a:hover {
  background: #20a76a;
  color: white;
}
@media (max-width: 1275px) {
.category-wrap {
	display:none;
}
}