/*** STYLE MENU SIDE ***/
.side-menu-wrapper { /* style menu wrapper */
    overflow-y: auto;
    /*background: url("../images/bg-nav.jpg");*/
    background: #ffffff;
    padding: 34px 0 0 34px;
    position: fixed; /* Fixed position */
    top: 0;
    left: -300px; /* Sidebar initial position. "right" for right positioned menu */
    height: 100%;
    z-index: 2;
    transition: 0.2s; /* CSS transition speed */
    width: 300px;
    font-family: 'Maven Pro', arial; 
    font-weight: 700;
    text-transform: uppercase;
    z-index: 99999999999999;
}
img.logo-side-mobile{
  margin-top: -24px;
  margin-bottom: 14px;
  max-width: 196px;
}
.side-menu-wrapper > a.menu-close { /* close button */
    padding: 8px 0 4px 23px;
    color: #124267;
    display: block;
    margin: -46px 0 -10px -20px;
    font-size: 55px;
    text-decoration: none;
    float: right;
    margin-right: 20px;
}
.side-menu-overlay { /* overlay */
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.7);
    overflow-y: auto;
    overflow-x: hidden;
    text-align: center;
    opacity: 0;
    transition: opacity 0.2s;
    cursor: pointer;
    z-index: 99999999999999;
}


/* MENU VERTICAL */
#menu-vertical,
#menu-vertical ul,
#menu-vertical li,
#menu-vertical a {
  margin-left: 0px !important;
  list-style: none;
  font-weight: normal;
  text-decoration: none;
  line-height: 1;
  font-family: 'Maven Pro' , arial;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
}
#menu-vertical {
  max-width: 230px;
  margin-bottom: 40px;
}
#menu-vertical a {
  line-height: 1.3;
  padding: 4px 0px 4px 0px;
}

#menu-vertical > ul > li {
  padding-left: 0px !important;
  background: none;
  border-bottom: 0.3px solid #696969;
}
#menu-vertical > ul > li:hover {
  background: none;
  color: #124267;
  text-decoration: none !important;
}
#menu-vertical > ul > li > a {
  margin-left: 0px !important;
  font-size: 14px;
  display: block;
  color: #363636;
  border-bottom: 0.3px solid #696969;
  border-top: none;
}
#menu-vertical > ul > li > a > span {
  display: block;
  padding: 10px 0px 10px 0px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
#menu-vertical > ul > li > a:hover {
  color: #124267;
  text-decoration: none !important;
}
#menu-vertical > ul > li.has-sub > a span {
  background: url("../images/icon_plus.png") 96% center no-repeat;
}
#menu-vertical > ul > li.has-sub.active > a span {
  background: url("../images/icon_minus.png") 96% center no-repeat;
}

#menu-vertical ul ul {
  padding-left: 0px !important;
  display: none;
}
#menu-vertical ul ul li {
  padding: 0;
  border-bottom: 0.3px solid #696969;
  border-top: none;
}
#menu-vertical ul ul li:last-child {
  border-bottom: none;
}
#menu-vertical ul ul a {
  padding: 10px 0px 10px 0px;
  display: block;
  font-size: 13px;
  color: #363636;
  left: 10px;
}
#menu-vertical ul ul a:hover {
  color: #124267;
  text-decoration: none !important;
}
#menu-vertical h6{
  font-family: 'Maven Pro', arial; 
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-top: -20px;
  margin-bottom: 16px;
}



/*** SCROLL BAR ***/
/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
