﻿.VerticalMenu {
  height: 100%;
  width: 100%;
  cursor: pointer;
}

.VerticalMenu > div {
  width: 100%;
  float: left;
}

.VerticalMenu > div > div a{
  outline: none;
  font-size: 16px;
  /*font-weight: bold;*/
  letter-spacing: 1px;
  color:#222;
}

.VerticalMenu > div > div > div > div a{
  font-size: 13px;
}

.VerticalMenu > div > div:first-child {
  text-align: center;
  height: 40px;
  background-color: white;
  line-height: 40px;
  padding-right: 10px;
  /*border-bottom: 1px solid  #cdb0b0;*/
  transition: background-color 0.4s linear;
}

.VerticalMenu > div > div:first-child:hover {
  background-color: #ccc;
}
.VerticalMenu > div > div.on {
  background-color: #ccc;
}

/*.VerticalMenu > div > div:first-child:hover >a{
  color: #fff;
}

.VerticalMenu > div > div:first-child:hover >i{
  color: #fff;
}
*/
.VerticalMenu > div > div:first-child > i:last-child {
  line-height: 40px;
  float: right;
  transform: rotate(0deg);
  transition: transform 0.4s linear;
}
.VerticalMenu > div > div:last-child {
  width: 100%;
  display: none;
}
.VerticalMenu > div > div:last-child > div {
  background-color: white;
  transition: background-color 0.1s linear;
  text-align: center;
  line-height: 40px;
  /*border-bottom: 1px solid #e6e6e6;*/
}
.VerticalMenu > div > div:last-child > div:hover {
  background-color: #eee;
}
.VerticalMenu > div:first-child > div:first-child {
  /*border-top-left-radius: 5px;*/
  /*border-top-right-radius: 5px;*/
}
.VerticalMenu > div:last-child > div:first-child {
  /*border-bottom-left-radius: 5px;*/
  /*border-bottom-right-radius: 5px;*/
}
.VerticalMenu > div:last-child::after {
  display: block;
  clear: both;
}