/* -------------------------------- 

Primary style

-------------------------------- */

.cd-vertical-nav {
  position: fixed;
  z-index: 1;
  left: 12.3%;
  top: 50%;
  width: 90%;
  margin-top: -95px;
  max-width: 265px;
  max-height: 90%;
  overflow-y: auto;
  background: url(images/bar.gif) 18px center no-repeat;
}


.cd-vertical-nav li{
  height: 40px;
  position: relative;
  margin-bottom: 10px;
  padding-right: 50px;
}

.cd-vertical-nav a {
  display: block;
  color: #fff;
  font-weight: bold;
  font-size:18px;
  line-height: 35px;
}
.cd-vertical-nav a:before{
  content: "";
  display: block;
  position: absolute;
  background-size:contain; 
}
.cd-vertical-nav a:after{
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: #eddfeb;
  border:4px solid #b055b5;
  border-radius: 20px;
  -o-border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  -ms-border-radius: 20px;
  box-sizing: border-box;
  box-shadow: 0px 5px 3px rgba(0,0,0,0.2);
  -o-box-shadow: 0px 5px 3px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 5px 3px rgba(0,0,0,0.2);
  -ms-box-shadow: 0px 5px 3px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0px 5px 3px rgba(0,0,0,0.2);
}
.cd-vertical-nav a.active:after{
  background: #fff;
  box-shadow: none;
}
.cd-vertical-nav li:nth-child(1) a:before{
  width: 13px;
  height: 18px;
  top:12px;
  left:16px;
  background: url("images/nav1.png") center center no-repeat;
}
.cd-vertical-nav li:nth-child(2) a:before{
  width: 24px;
  height: 24px;
  top:8px;
  left:9px;
  background: url("images/nav2.png") center center no-repeat;
}
.cd-vertical-nav li:nth-child(3) a:before{
  width: 19px;
  height: 18px;
  top:11px;
  left:10px;
  background: url("images/nav3.png") center center no-repeat;
}
.cd-vertical-nav li:nth-child(4) a:before{
  width: 21px;
  height: 17px;
  top:12px;
  left:10px;
  background: url("images/nav4.png") center center no-repeat;
}
.cd-vertical-nav .label {
  display: none;
  height: 100%;
  position: absolute;
  left:40px;
  padding:0 20px 0 5px;
  background: #b055b5;
  border-radius: 0  20px 20px 0;
  -o-border-radius: 0  20px 20px 0;
  -moz-border-radius: 0  20px 20px 0;
  -webkit-border-radius: 0  20px 20px 0;
  -ms-border-radius: 0  20px 20px 0;


}
.cd-vertical-nav a.active{
  background: #b055b5;
  border-radius: 20px;
  -o-border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  -ms-border-radius: 20px;
  box-shadow: 0px 5px 3px rgba(0,0,0,0.2);
  -o-box-shadow: 0px 5px 3px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 5px 3px rgba(0,0,0,0.2);
  -ms-box-shadow: 0px 5px 3px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0px 5px 3px rgba(0,0,0,0.2);
}
.cd-vertical-nav a.active .label {
  display: block;
}
