/* This navigation stylesheet obtained at:
   https://www.astuteo.com/mobilemenu/ */

.nav-button { display: none; } /* hide the navigation button by default */

  /* Navigation Button
  -------------------------------------------------------- */

  .nav-button {
    display: block;
    position: absolute;
    top: 4px;
    left: 7px;
    width: 40px;
    height: 35px;
    cursor: pointer;
    border: 0 none;
    border-bottom: 2px solid rgba(255,255,255,.1);
    box-shadow: 0 0 4px rgba(0,0,0,.7) inset;
    border-radius: 5px;
    z-index: 999;
    color: #839496; /* Base0 */
  	/*color: #268bd2; /* Blue */
    text-decoration: none;
	text-align: center;
    font-size: 30px;
    font-weight: bold;
    font-family: "Source Code Pro", monospace;
    text-shadow: -1px -1px 0 rgba(0,0,0,.15);
  }
  .nav-button:hover { 
    background-color: #073642; /* Base02 */
  }
  .nav-button.open {
  	/*color: #268bd2; /* Blue */
  	/*color: #cb4b16; /* Orange */
  }

  /* Navigation Bar
  -------------------------------------------------------- */

  body { padding-top: 41px; } 

  .primary-nav {
    width: 320px;
    float: none;
    background-color: #002b36; /* Base03 */
    display: block;
    height: 41px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    /* box-shadow: 0 7px 2px rgba(0,0,0,.6); */
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 998;
    clear: both;
  }
  .primary-nav li {
    display: none;
    width: 100%;
  }
  .primary-nav li a {
    display: block;
    width: 100%;
    padding: 10px 5%;
    font-size: 16px;
    font-weight: bold;
    text-shadow: -1px -1px 0 rgba(0,0,0,.15);
  	color: #2aa198; /* Cyan */
  	/*color: #859900; /* Green */
  	/*color: #268bd2; /* Blue */
    background-color: rgba(0,0,0,.1);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.5);
    /* border-top: 1px solid rgba(255,255,255,.1); */
  }
  .primary-nav li a:hover {
    background-color: rgba(0,0,0,.5);
    /* border-top-color: transparent; */
  }
  .primary-nav > li:first-child {
    /* border-top: 1px solid rgba(0,0,0,.2); */
  }

  /* Toggle the navigation bar open  */

  .primary-nav.open { 
    height: auto; 
    padding-top: 41px;
  }
  .primary-nav.open li { 
    display: block; 
  }

  /* Submenus – optional .parent class indicates dropdowns */

  .primary-nav > li:hover > a {
    background: rgba(0,0,0,.5);
    /* border-bottom-color: transparent; */
  }
  .primary-nav li.parent > a:after {
    content: "▼";
    color: rgba(255,255,255,.5);
    float: right;
  }
  .primary-nav li.parent > a:hover {
    background: rgba(0,0,0,.75);
  }
  .primary-nav li ul {
    display: none;
    background: rgba(0,0,0,.5);
    /* border-top: 0 none; */
    padding: 0;
  }
  .primary-nav li ul a {
    /* border: 0 none; */
    /* font-size: 12px; */
    padding: 10px 5%;
    font-weight: normal;
  }
  .primary-nav li:hover ul {
    display: block;
    /* border-top: 0 none; */
  }

/* End Mobile Styles */
