
/* header.php sub-menu style sheet

/* to hide sub menu links */
 ul.sub-menu {
  display:none;
  position: relative;
  background: #23AF4E;
  right: 0;
  z-index: 99;
  padding: 5px;
  height: 40vh;
  width: 125%;
  cursor: pointer;
  color: #23AF4E;
  border-radius: 10pt;
  }

li.sub-menu-children {
  width: 80% !important;
  margin-left: 15%;
  }

li.sub-menu-children a {
  font-size: 1em !important;
  color: #23AF4E;
}

/*  Adjust Size of Drop Down Sub Menu Items for Screen Width Less Then 915 Pixels */
@media only screen and (max-width: 915px) {
	li.sub-menu-children a {
	  font-size: .75em !important;
	}
}

/* Dropdown Menu  */
/* Dropdown Button */
.dropbtn {
  background-color: #23AF4E;
  color: #FECB0E;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

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

/* Links inside the dropdown 
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-family: 'Arial', cursive;
  font-size: 1em;
  color: #000000;
}
*/

.dropdown-link-text {
  margin-left: 10px;
  color: #0F5E73;
  text-decoration: none;
  display: block;
  font-family: 'Arial', cursive;
  font-size: .2em;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* 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;
	border-radius: 15px;
    border-top-left-radius: 0px;
	margin-top: -7px;
}
