.navigation {
  display: block;
  background: #eee;
  border-radius: 0px;
  z-index:9999;
}

.navigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: block;
}

.navigation li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
  font-size:0.5em;
  /* color: #000; */
}

.navigation li a {
  padding: 10px 15px;
  font-size:1em;
  color: #000;
  display: inline-block;
  outline: 0;
  font-weight: 400;
  text-decoration:none;
}

.navigation li:hover ul.dropdown { display: block; }

.navigation li ul.dropdown {
  position: absolute;
  display: none;
  width: 200px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  padding-top: 0;
  z-index:9999;
}

.navigation li ul.dropdown li {
  display: block;
  list-style-type: none;
}

.navigation li ul.dropdown li a {
  padding:5px 10px;
  font-size: 0.75em;
  color: #fff;
  background:#999;
  display: block;
  border-bottom: 1px solid #ccc;
  font-weight: 400;
}

.navigation li ul.dropdown li:last-child a { border-bottom: none; }

.navigation li:hover a {
  background: #999;
  color: whitesmoke !important;
}

.navigation li:first-child:hover a { border-radius: 3px 0 0 3px; }

.navigation li ul.dropdown li:hover a { background: #ccc; }

.navigation li ul.dropdown li:first-child:hover a { border-radius: 0; }

.navigation li:hover .arrow-down { border-top: 5px solid #fff; }

.arrow-down {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #666;
  position: relative;
  top: -0.1em;
  right: -5px;
  content: '';
}

/* ********************************************************************************************************************************************************************** */

 @media only screen and (max-width:2000px)  { /* 767 */

.navigation {
 
  /*background: -webkit-radial-gradient(rgb(22, 135, 237), rgb(20, 55, 90));
  background: radial-gradient(rgb(22, 135, 237), rgb(20, 55, 90)); */
  background:white;

  width: 250px;
  height: 100%;
  display: block;
  position: fixed;
  right: -250px;
  top: 0px;
  transition: left 0.3s linear;
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
}

.navigation li:hover ul.dropdown { display: none; }
.show-navigation { display: block !important; }


.navigation.visible {
  right: 0px;
  transition: right 0.1s linear;
}

.nav_bg {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 50px;
  margin: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  background: white;
  padding: 12px 0 0 10px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  color:black;
}

.nav_bar {
  display: inline-block;
  vertical-align: middle;
  height: 50px;
  cursor: pointer;
  margin: 0;
}


.navigation ul { padding-top: 50px; }

.navigation li { display: block; }

.navigation li a {
  display: block;
  color: black;
  font-weight: 500;
  font-size: 1em;
  padding:5px 15px;
  border-bottom:solid 1px #f6f6f6;
  text-align:left;
}

.navigation li:first-child:hover a { border-radius: 0; }

.navigation li ul.dropdown { position: relative; }

.navigation li ul.dropdown li a {
  background: #f5f5f5 !important;
  border-bottom: none;
  color: #505050 !important;
  font-size:0.75em;
}

.navigation li:hover a {
  background: #195f34;
  color: #fff !important;
}

.navigation li ul.dropdown li:hover a {
  background: #195f34 !important;
  color: #fff !important;
}

.navigation li ul.dropdown li a { padding: 5px 10px 5px 30px; }

.navigation li:hover .arrow-down { border-top: 0px solid #fff; } /* was 10 */

/* .arrow-down {
  border-top: 10px solid #505050;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  top: 20px;
  right: 10px;
} */

.opacity {
  background: rgba(255,255,255,0.8);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}	


/* */
.c-hamburger {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;

  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.c-hamburger:focus {
  outline: none;
}

.c-hamburger span {
  display: block;
  position: absolute;
  top: 12px;
  left: 9px;
  right: 9px;
  height: 4px;
  background: black;
}

.c-hamburger span::before,
.c-hamburger span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: black;
  content: "";
}

.c-hamburger span::before {
  top: -7px;
}

.c-hamburger span::after {
  bottom: -7px;
}

/* */

.c-hamburger--htx {
  background-color: transparent;
}

.c-hamburger--htx span {
  transition: background 0s 0.3s;
}

.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}

.c-hamburger--htx span::before {
  transition-property: top, transform;
}

.c-hamburger--htx span::after {
  transition-property: bottom, transform;
}

/* active state, i.e. menu open */
.c-hamburger--htx.is-active {
  background-color:  transparent;
}

.c-hamburger--htx.is-active span {
  background: none;
}

.c-hamburger--htx.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}

.c-hamburger--htx.is-active span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
  transition-delay: 0s, 0.3s;
}

/* */
/* */
.c-hamburger-2 {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 30px;
  height: 30px;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.c-hamburger-2:focus {
  outline: none;
}

.c-hamburger-2 span {
  display: block;
  position: absolute;
  top: 11px;
  left: 9px;
  right: 9px;
  height: 4px;
  background: #505050;
}

.c-hamburger-2 span::before,
.c-hamburger-2 span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #505050;
  content: "";
}

.c-hamburger-2 span::before {
  top: 0px;
  transform: rotate(90deg);
}

.c-hamburger-2 span::after {
  bottom: 0px;
}

/* */

.c-hamburger-2--htx {
  background-color: transparent;
}

.c-hamburger-2--htx span {
  transition: background 0s 0.3s;
}

.c-hamburger-2--htx span::before,
.c-hamburger-2--htx span::after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}

.c-hamburger-2--htx span::before {
  transition-property: top, transform;
}

.c-hamburger-2--htx span::after {
  transition-property: bottom, transform;
}

/* active state, i.e. menu open */
.c-hamburger-2--htx.is-active {
  background-color:  transparent;
}

.c-hamburger-2--htx.is-active span {
  background: none;
}

.c-hamburger-2--htx.is-active span::before {
  top: 0;
  transform: rotate(45deg);
  background:black;
}

.c-hamburger-2--htx.is-active span::after {
  bottom: 0;
  transform: rotate(-45deg);
  background:black;
}

.c-hamburger-2--htx.is-active span::before,
.c-hamburger-2--htx.is-active span::after {
  transition-delay: 0s, 0.3s;
}

@media only screen and (max-width: 901px) {
	.nav-container {padding-top:0 !important; padding-bottom:0 !important; margin-bottom:0 !important;}
	.nav-container .row {height:0;}
} 