﻿/* ============================
// Colors
// ============================ */

.navy       { color: #272a45; } /* light navy #393d60  : dark navy #030837 */
.white      { color: #ffffff; }
.light-gray { color: #e1dfe1; }
.green      { color: #07c519; }

.menu3dmega.skin-navy.vertical {
    background-color: #272a45;
    border-left: 1px solid #272a45;
    border-top: 1px solid #030837;
    border-right: none;
    border-bottom: 1px solid #030837;
}

.menu3dmega.skin-navy.vertical > ul > li:first-child {
    border-top: none;
}
.menu3dmega.skin-navy.vertical > ul > li a:after {
  content: '>';
  position: relative;
  top: 1px;
  padding-left: 7px;
  padding-right: 0px;
  font-size: 1.4em;
  font-family: 'Cabin Condensed', sans-serif;
  color: #ffffff;
  }
.menu3dmega.skin-navy.vertical .dropdown-menu {
    border-bottom: 2px solid #030837;
}
.menu3dmega.skin-navy.vertical a:hover {
    color:#07c519;
}
.menu3dmega.skin-navy.vertical a.white-text:hover {
    color: #ffffff;
}

/* ============================
// Rule Lines
// ============================ */

.menu3dmega.skin-navy hr.style-fade {
    border: 0;
    height: 1px;
    margin-bottom: 0;
    background-image: -webkit-linear-gradient(left, rgba(255,255,255,0), rgba(255,255,255,0.75), rgba(255,255,255,0));
    background-image:    -moz-linear-gradient(left, rgba(255,255,255,0), rgba(255,255,255,0.75), rgba(255,255,255,0));
    background-image:     -ms-linear-gradient(left, rgba(255,255,255,0), rgba(255,255,255,0.75), rgba(255,255,255,0));
    background-image:      -o-linear-gradient(left, rgba(255,255,255,0), rgba(255,255,255,0.75), rgba(255,255,255,0));
  }

/* ============================
// Sidebar Service Menu
// ============================ */

.sidebar {
  background: #272a45; /* Navy */
  position: fixed;
  z-index: 9999999;
  left: 0;
  top: 160px;
  height: 39.7%;
  width: 260px;

  -webkit-transition: left .5s ease;
     -moz-transition: left .5s ease;
          transition: left .5s ease;
  }
.sidebar #close {
  float: right;
  margin: -3.9rem 1.1rem;
  font-size: 1.4em;
  color: #ffffff;
  text-align: right;
  text-decoration: none;
  }
.sidebar.closed {
  left: -260px;
  }