
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown > input[type="checkbox"] {
  position: absolute;
  left: -100vw;
}

.dropdown > label,
.dropdown > a[role="button"] {
  display: inline-block;
  padding: 6px 15px;
  line-height: 1.5em;
  text-decoration: none;
  border-bottom: 1px dotted #8c8c8c;
/* border: 0px solid #8c8c8c; */
  cursor: pointer;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color:white;
}
.nenuvertical{
/*  color:#15126c; */
}

.dropdown > label:hover,
.dropdown > a[role="button"]:hover,
.dropdown > a[role="button"]:focus {
  border-color: white;
  border-bottom: 1px solid #8c8c8c;
}

.dropdown > label:after,
.dropdown > a[role="button"]:after {
  content: "\f0d7";
  font-family: FontAwesome;
  display: inline-block;
  margin-left: 6px;
}

.dropdown > ul {
  position: absolute;
  z-index: 999;
  display: block;
  left: -600vw;
  top: calc(1.5em + 14px);
  border: 1px solid #8c8c8c;
  background: #fff;
  padding: 6px 0;
  margin: 0;
  list-style: none;
  min-width: 300px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 3px 8px rgba(0,0,0,.15);
  -moz-box-shadow: 0 3px 8px rgba(0,0,0,.15);
  box-shadow: 0 3px 8px rgba(0,0,0,.15);
  text-align:left;
}

.dropdown > ul a {
  display: block;
  padding: 6px 15px;
  text-decoration: none;
  color: #15126c;
}

.dropdown > ul a:hover,
.dropdown > ul a:focus {
  background: #ececec;
  text-decoration:underline;
}

.dropdown > input[type="checkbox"]:checked ~ ul,
.dropdown > ul:target {
  left: 0;
}

.dropdown > [type="checkbox"]:checked + label:after,
.dropdown > ul:target ~ a:after {
  content: "\f0d8";
}

.dropdown a.close {
  display: none;
}

.dropdown > ul:target ~ a.close {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  text-indent: -100vw;
  z-index: 1000;
}


/*
 Demo purposes only
*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

.dropdown + h2 {
  margin-top: 60px;
}











.accordion {
  max-width: 300px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-item:last-of-type {
  border-bottom: none;
}

.accordion-header {
  display: block;
  padding: 12px 16px;
  background-color: #f7f7f7;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.accordion-item:hover .accordion-header{
  color:white;
}

.accordion-header:hover {
/*  background-color:#15126c; */
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 16px;
  background-color: #fff;
}

.accordion-item:target .accordion-content {
  max-height: 300px;
  padding: 0px 36px;
}

.accordion-content p {
  margin: 12px 0;
  font-size: 14px;
  line-height: 1.5;
}



/*
 
.dropbtn {
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  background-color: transparent;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: transparent;
  text-decoration: underline;
}

.dropbtn:focus{
  border:1px dotted white;
}

.dropdown {
  background-color: transparent;
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  margin: 10px 0px 10px 0px;
}

.dropdown-content a {
  color:#15126c;
  padding: 10px 6px;
  text-decoration: none;
  display: block;
}

.dropdown a:link, a:hover {
  color:#15126c;
}

.show {display: block;}



// vertical menu

.sidenav {
  height: 100%;
  width: 200px;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  padding-top: 20px;
}

.sidenav a, .dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-weight:bold;
  color: #15126c;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}
.dropdown-btn:focus {
  border:1px dotted white;
}
.sidenav a:hover, .dropdown-btn:hover {
  color: #15126c;
  text-decoration:underline;
}

.main {
  margin-left: 200px; // Same as the width of the sidenav 
  font-size: 20px; // Increased text to enable scrolling
  padding: 0px 10px;
}

.active {
  background-color: green;
  color: white;
}

.dropdown-container {
  display: none;
  background-color: white;
  padding-left: 8px;
}

.fa-caret-down {
  float: right;
  padding-right: 8px;
}


.showV {display: grid;}

*/
