/* sidebarMenu */
#customblock-SidebarMenu p.menu_item { 
    padding: 10px 8px;
    margin: 0 0;
    font-size: 14px;
}

p.menu_item .fa {
    color: #1d5d93;
}

#customblock-SidebarMenu p.menu_item:last-child {
    border: 0;
}

#customblock-SidebarMenu p.menu_item {
    border-bottom: 1px solid #f4f4f5;
}
#customblock-SidebarMenu p.menu_item:hover { 
    margin-right: 10px; 
    box-shadow: -2px 1px 1px -2px rgba(0,0,0,0.75);    
    background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(246,246,246,1) 67%,rgb(255 255 255) 100%);
}
#customblock-SidebarMenu p .fa { margin-right: 8px}
.button {
  display: inline-block;
  border-radius: 4px;
  background-color: #1d5d93;
  border: none;
  color: white;
  text-align: center;
  font-size: 14px;
  padding: 12px;
  width: 180px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}
/* end sidebar */