


/* Dropdown Button */
.dropbtn {
    background-color: #3498DB;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  /* Dropdown button on hover & focus */
  .dropbtn:hover, .dropbtn:focus {
    background-color: #2980B9;
  }
  
  /* The container <div> - needed to position the nb-dropdown content */
  .nb-dropdown {
    position: relative;
    /* display: inline-block; */
    display: flex;
    flex-flow: wrap;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .nb-dropdown-content {
    display: none;
    position: absolute;
    margin-top: 2.2em;
    background-color: #2d2d2d;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 999;
  }
  
  /* Links inside the nb-dropdown */
  .nb-dropdown-content a {
    color: #FFF;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of nb-dropdown links on hover */
  .nb-dropdown-content a:hover {background-color: #ddd}
  
  /* Show the nb-dropdown menu (use JS to add this class to the .nb-dropdown-content container when the user clicks on the nb-dropdown button) */
  .show {display:block;}