/*** STYLE MENU SIDE ***/
.side-menu-wrapper { /* style menu wrapper */
    overflow-y: auto;
    /*background: url("../images/bg-nav.jpg");*/
    background: var(--global-bg-menu-side);
    padding: 34px 0 0 34px;
    position: fixed; /* Fixed position */
    top: 0;
    left: -320px; /* Sidebar initial position. "right" for right positioned menu */
    height: 100%;
    transition: 0.2s; /* CSS transition speed */
    width: 320px;
    font-family: var(--font-family-primary); 
    font-weight: 700;
    text-transform: uppercase;
    z-index: 99999999999999;
}
img.logo-side-mobile{
  margin-top: -20px;
  margin-bottom: 14px;
  max-width: 200px;
}
.side-menu-wrapper > a.menu-close { /* close button */
    padding: 8px 0 4px 23px;
    color: var(--global-color-text-menu-side);
    display: block;
    margin: -36px 0 -10px -20px;
    font-size: 42px;
    text-decoration: none;
    float: right;
    margin-right: 20px;
}
.side-menu-wrapper > a:hover.menu-close { /* close button */
    color: var(--global-color-text-hover-menu-side);
}
.side-menu-overlay { /* overlay */
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgba(0, 11, 98, 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;
  text-decoration: none;
  line-height: 1;
  font-family: var(--font-family-primary);
  font-weight: 500;
  position: relative;
  text-transform: uppercase;
}
#menu-vertical {
  max-width: 230px;
  margin-bottom: 10px;
}
#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 #ffffff;
}
#menu-vertical > ul > li:last-child{
  border-bottom: none;
}
#menu-vertical > ul > li:hover{
  background: none;
  color: var(--global-color-text-hover-menu-side);
  text-decoration: none !important;
}
#menu-vertical > ul > li > a {
  margin-left: 0px !important;
  font-size: 14px;
  display: block;
  color: var(--global-color-text-menu-side);
  border-bottom: 0.3px solid #ffffff;
  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: var(--global-color-text-hover-menu-side);
  text-decoration: none !important;
}
#menu-vertical > ul > li.has-sub > a span:after{
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-size: 1.2em !important;
  color: var(--global-color-text-menu-side);
  padding: 8px;
  position:relative;
  font-weight: 700;
  top:0px;
  float: right;
  z-index:-1;
  width:10%;
  line-height:10%;
}
#menu-vertical > ul > li.has-sub > a:hover span:after{
  color: var(--global-color-text-hover-menu-side);
}
#menu-vertical > ul > li.has-sub.active > a span:after {
  content: "\f077";
  font-family: "Font Awesome 5 Free";
  font-size: 1.2em !important;
  color: var(--global-color-text-menu-side);
  padding: 8px;
  position:relative;
  top:0px;
  float: right;
  z-index:-1;
  width:10%;
  line-height:10%;
}
#menu-vertical ul ul {
  padding-left: 0px !important;
  display: none;
}
#menu-vertical ul ul li {
  padding: 0;
  border-bottom: 0.3px solid #ffffff;
  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: 12px;
  color: var(--global-color-text-menu-side);
  left: 10px;
}
#menu-vertical ul ul a:hover{
  color: var(--global-color-text-hover-menu-side);
  text-decoration: none !important;
}
#menu-vertical h6{
  font-family: 'Maven Pro', arial;
  font-weight: 600;
  font-size: 16px;
  color: var(--global-color-text-menu-side);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-top: 0px;
  margin-bottom: 24px;
}
#menu-vertical .social-top { float: left; margin-top: -10px; }
#menu-vertical .social-top li {
    font-size: 15px;
    padding: 0px 1px 1px 1px;
}

/*** 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;
  }
}
