/* CSS content for Menu Display */
* {
    box-sizing: border-box
} 

.content {
  padding: 8px;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}

.sticky + .content {
  padding-top: 30px;
}
span, div {
  height: 25px;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
}
span a.menu:hover, .dropdown:hover .dropbtn {
  color: #FFF;
  background-color: #002e99;
  text-decoration: none;
  z-index: 3;
}
div a.menu, span a.menu, .dropbtn {
  display: inline-block;
  background-color: #002E99; /* #80a6ff; */
  color: #000;
  text-align: center;
  padding: 4px 9px;
  font-size: 14px;
  text-decoration: none;
  /* border-left: 1px solid #FFFFFF; White border */
  z-index: 3;
}
.dropbtn {
  background-color: #80a6ff;
  color: #000;
  padding: 4px 9px;
  font-size: 14px;
/*  border: none;*/
  cursor: pointer;
  z-index: 2; 
}

/* Dropdown icon for small screen menu - don't display on larger screen' */
.dropdown .dropMenu {
  display:none;
  }
  
/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #002e99;
  color: #FFF; /* #0038b8; */
}

/* The container <div> - needed to position the dropdown content */
.dropdown:not(:first-child) {
  position: relative;
  background-color: #0038b8;
  display: inline-block;
  font-family: sans-serif;
  font-size: 14px;
  z-index: 3;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #0038b8;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 3;
}

/* Links inside the dropdown */
.dropdown-content a.menu {
  color: black;
  padding: 4px 16px;
  text-decoration: none;
  background-color: #0038b8;
  display: block;
  text-align: left;
  z-index: 3;
}

/* Change color of dropdown links on hover */
.dropdown-content a.menu:hover {  
  background-color: #000;
  color: #002e99;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;} 

.chevron {
  width: 10px;
  height: 8px;
  position: relative;
  display: inline-block;
  background-color: #0038b8;
  /* margin: 50px; */
  }
.dropdown .dropbtn .img-sel {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  }
.dropdown:hover .dropbtn .img-sel {
  display: inline;
  }
    
/* Below items are for menus on small screens */    
/* Hide the link that should open and close the navbar on small screens */
.dropdown .dropMenu .MenuIcon { display: none; }
/* When the screen is less than 650 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the navbar (.icon) */
@media screen and (max-width: 675px) {
  div { display: block; 
        float: left;
        height: 25px;
      }
  
  .dropdown .dropbtn { /*  :not(:last-child) */
    display: none;
    }
  .dropdown:first-child .dropMenu { /* .MenuIcon */
    position: relative;
    background-color: #80a6ff;
    /* margin-top: 40px; */
    padding: 4px 10px;
    cursor: pointer;
    float: right;
    display: block;
    z-index: 3;
    }
  .dropdown .dropMenu .MenuIcon { /* */
    background-color: #80a6ff;
    padding: 4px 4px;
    cursor: pointer;
    float: right;
    display: block;
    z-index: 3;
    }

  .navbar.responsive { 
    position: relative;
    z-index: 2;
    }
  .navbar.responsive .dropdown button.MenuIcon { /*  */
    position: relative;
    right: 0;
    top: 0;
    }
  .navbar.responsive .dropdown {
    float: none;
    display: block;
    text-align: left;
    height: auto;
    z-index: 2; 
    }/* */
  .navbar.responsive .dropdown button {
    float: none;
    display: block;
    text-align: left;
    height: auto;
    z-index: 2;
    }/* */
/* Dropdown Content (Hidden by Default) */ 
  .navbar.responsive .dropdown .dropdown-content {
    position: absolute;
    background-color: #002EAC;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    left: 145px;
    top: 0px;
    /*z-index: 5; */
   }

/* Links inside the dropdown */
  .navbar.responsive .dropdown .dropdown-content a {
    color: black;
    padding: 4px 16px;
    text-decoration: none;
    background-color: #0038b8;
    position: relative;
    z-index: 5; /* */
    }
  .navbar.responsive .dropdown .dropdown-content a:hover {
    background-color: #000;
    color: #0038b8;
    z-index: 5; /* */
    }
  .navbar.responsive .dropdown .dropdown-content {
    z-index:5;/*  */
    }
  }
