﻿.VerticalMenu {
  height: 100%;
  width: 100%;
  cursor: pointer;
}
.VerticalMenu > div {
  width: 100%;
  float: left;
}
.VerticalMenu > div > div:first-child {
  padding: 15px 30px;
  background-color: #f6f6f6;
  border-right: 3px solid #0d6fb8;
  padding-right: 10px;
  margin-top: 4px;
  transition: background-color 0.4s linear;
}
.VerticalMenu > div > div:first-child:hover {
  background-color: #0d6fb8;
  color:#ffffff;
}
.VerticalMenu > div > div:first-child:hover a {
  color:#ffffff!important;
}
.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: #0d6fb8!important;
  color:#ffffff;
}
.VerticalMenu > div > div:last-child > div:hover a{
  color:#ffffff!important;
}
.VerticalMenu > div:first-child > div:first-child {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.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;
}