.dropdown .btn {
  background-color: #5a5959;
  color: white;
  padding: 14px 0;
  border-radius: 0;
}

.dropdown .btn:hover {
  background-color: #ffffff;
  color: black;
}

.dropdown, .open {
  color: white;
}

.dropdown .btn:active {
  outline: none;
}

.dropdown {
background-color: #5a5959 !important;
}

.dropdown-menu {
  background-color: #5a5959;
}

.dropdown-menu li a {
  color: white;
}


@media only screen and (max-width: 1024px) {

.dropdown .btn {
  margin: 0 0 0 15px;
}

.dropdown .btn:active, .dropdown .btn:focus {
  background-color: #5a5959;
  color: white;
  outline: none;
}

}


/* Style The Dropdown Button */
.dropbtn {
    background-color: #5a5959;
    color: white;
    padding: 14px;
    font-size: 14px;
    border: none;
    cursor: pointer;
  }

  .dropbtn:active {
    color: black;
  }
  
  /* 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: #5a5959;
    min-width: 160px;
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {
    background-color: #ffffff;
    color: black;
  }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  /* .dropdown:hover .dropbtn {
    background-color: #f9f9f9;
  } */

  /* .dropdown button:hover {
    color: #000000;
  } */

  .dropdown button:focus {
    outline: none;
  }