/* Scroll bar */
.submenus::-webkit-scrollbar, .principal_menus::-webkit-scrollbar {
  width: 7px;
}
.submenus::-webkit-scrollbar-track, .principal_menus::-webkit-scrollbar-track {
  background-color: rgb(236, 236, 236);
  /* border-radius: 5px; */
}
.submenus::-webkit-scrollbar-thumb, .principal_menus::-webkit-scrollbar-thumb {
  /* border-radius: 5px; */
  /* background-color: darkgray; */
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4);
}
.submenus, .principal_menus {
  scrollbar-color:#ffffff !important;
  scrollbar-width: thin;
}
/* Scroll bar */
/* START: home page menu */
.push_page {
    opacity: 0.4;
    transform: translateX(76.3%);
  }
  body {
    overflow-x: hidden;
  }
  /* END: home page menu */
#menu.slide-left-half {
    right: auto;
    top: 0;
    left: 0;
    width: 80.5% !important;
    height: 100%;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  #menu-inner {
    position: relative;
    height: 100%;
    z-index: 3;
    overflow-y: auto;
    padding-bottom: 70px;
    padding-left: 44px;
    padding-top: 100px;
    display: flex;
    padding-bottom: 0;
  }
  ul.principal_menus {
    height: 90%;
    list-style: none;
    font-size: 40px;
    text-transform: uppercase;
    width: 40%;
    line-height: 1;
    font-family: "Barlow Condensed", sans-serif;
    overflow-y: auto;
  }

  li.menu {
    border-top: 5px solid white;
    opacity: 0.6;
    padding: 25px 0px;
  }
  li.menu:hover, li.menu.active {
    opacity: 1;
  }
  ul.submenus {
    height: 90%;
    overflow-y: auto;
    list-style: none;
    width: 55%;
    padding-left: 45px;
    transition: all 0.3s ease-in-out;
  }

  li.submenu {
    display: block;
    padding-left: 20px;
    line-height: 1;
    margin-bottom: 30px;
  }

  ul.sub_submenu {
    list-style: none;
    padding-top: 6px;
    color: #fff;
    font-weight: 100;
    font-family: "Roboto light", sans-serif;
    line-height: 1.4;
  }
  /* ul.sub_submenu a {
    color: #fff;
    font-weight: 100;
    font-family: 'Roboto light', sans-serif;
} */

  .submenu > a {
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    padding-left: 10px;
    font-size: 24px;
    font-weight: bold;
  }

  .submenu > i {
    font-size: 20px;
    padding-bottom: 2px;
  }

  .submenu a:hover {
    text-decoration: underline;
  }

  .line_submenu {
    margin-top: 0px;
    margin-bottom: 40px;
    border: 0;
    border-top: 1px solid #eee;
  }
  #menu-trigger .mt-inner {
        transition: all 0.3s ease-in-out;
    }
  .bg-darkBlue {
    background-color: #00384E !important; 
  }
  .bg-orange {
    background-color: #F26622 !important; 
  }
  .bg-coffee {
    background-color: #28495F !important; 
  }
  .bg-purple {
    background-color: #2C6F83 !important; 
  }
  .bg-middleBlue {
    background-color: #2B85BB !important; 
  }
  .bg-lightBlue {
    background-color: #0A9BAD !important; 
  }
  .menu a:focus {
      color: #fff;
  }
  /* END: sidebar */
  /* Responsiveness */
@media only screen and (max-width: 1023px) {
  #menu.slide-left-half {
    width: 100% !important;
  }
  ul.principal_menus {
    height: 95%;
    /* width: 40%; */
    line-height: 1;
    padding-right: 20px;
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  ul.principal_menus {
    width: 100%;
    font-size: 32px;
  }
  ul.submenus {
    height: auto;
    max-height: 50%;
    width: 100%;
    padding: 0;
    overflow-y: auto;
}
.line_submenu {
  margin-bottom: 0px;
}
li.submenu {
  margin-bottom: 0px;
}
ul.sub_submenu {
  font-size: 14px;
  text-transform: none;
}
.submenus_lg {
  display: none;
}
}
@media only screen and (min-width: 768px) {
  .submenus_sm {
    display: none;
  }
}