/*  THIES STYLE SHEET JUST COVERS THE MOBILE NAV STYLING */

mobile-menu .menu {
    width: 90%;
    display: block;
    margin: 0 auto;
}


mobile-menu .menu ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1.3rem;
  }


mobile-menu .menu ul ul {
    width: 100%;
    margin-left: 0;
    xborder: #fff 1px solid ;
}

mobile-menu .menu ul ul li a {
    font-size: 0.9rem;
}

mobile-menu .icon-1, .icon-2, .icon-3 {
    position: absolute;
    left: 25%;
    top: 50%;
    width: 32px;
    height: 3px;
    background-color: white;
    transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.8);
  }
  
mobile-menu  .icon-1 {
    transform: translateY(-8px);
    animation-delay: 100ms;
  }
  
mobile-menu   .icon-3 {
    transform: translateY(8px);
    animation-delay: 250ms;
  }
  
mobile-menu  .hamburger-icon {
    position: absolute;
    height: 60px;
    width: 60px;
    top: 5%;
    left: 5%;
    z-index: 1000;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
    xbackground: rgba(255, 255, 255, 0.9);
  }
  mobile-menu   .hamburger-icon:hover {
    transform: scale(1.2);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  
  mobile-menu   .icon-1.a {
    transform: rotate(40deg);
  }
  
  mobile-menu   .icon-3.b {
    transform: rotate(-40deg);
  }
  
  mobile-menu   .icon-2.c {
    opacity: 0;
  }
  
  mobile-menu   .clear {
    clear: both;
  }
  
  @keyframes slideIn {
    0% {
      width: 0%;
      opacity: 0;
    }
    100% {
      width: 50%;
      opacity: 1;
    }
  }
  mobile-menu  nav {
    background: #0f0f63;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 0%;
    z-index: 10;
    opacity: 0;
    transition: all 600ms cubic-bezier(0.62, 0.04, 0.3, 1.56);
    transition-delay: 100ms;
  }
  mobile-menu  nav .menu > ul {
    margin: 0;
    position: absolute;
    top: 20%;
    left: 5%;
    width: 90%;
    text-align: center;
  }
  
  mobile-menu   .children li:before {
      content: "-";
      padding-right: 10px;
  }
  
  mobile-menu  .children li {
      padding-left: 0px;
      display: block
  }
  
  mobile-menu  nav .menu > ul li {
    list-style: none;
    font-size: 14px;
    color: #fff;
    line-height: 2;
    text-transform: uppercase;
    letter-spacing: 1.2px;
  }
  mobile-menu  nav.show {
    width: 100%;
    opacity: 0.8;
  }
  
  mobile-menu  .dark-blue {
    position: absolute;
    top: 0;
    left: 0;
    background: #1823bd;
    height: 100vh;
    width: 0%;
    transition: all 500ms cubic-bezier(0.62, 0.04, 0.3, 1.8);
    transition-delay: 50ms;
    z-index: 5;
    opacity: 1;
  }
  
  mobile-menu  .dark-blue.slide {
    width: 50%;
    opacity: 1;
  }
  
  @keyframes shotup {
    0% {
      transform: translateY(300%);
      opacity: 0;
    }
    90% {
      transform: translateY(-50px);
    }
    100% {
      transform: translateY(0%);
      opacity: 1;
    }
}
  
  mobile-menu .menu > ul::-webkit-scrollbar {
    width: 5px;               /* width of the entire scrollbar */
  }
  
  mobile-menu .menu > ul::-webkit-scrollbar-track {
    background: o#0f0f63;        /* color of the tracking area */
  }
  
  mobile-menu .menu > ul::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.1);    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    border: 3px solid #0f0f63;  /* creates padding around scroll thumb */
  }


  mobile-menu .menu > ul {
    height: 80%;
    overflow:scroll;
  }
  