.dropdown {
    display:block; 
    /*float:right; 
    justify-content: left;*/
    margin-left: 15px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 1;
  border-radius: 5px;
  /*margin-top: 40px;*/
}

.dropdown-menu a {
  color: rgb(51, 51, 51);
}
.dropdown-menu a :visited {
  color: rgb(51, 51, 51);
}

@media screen and (max-width: 768px) {
  .dropdown {
    position: absolute;
    top: -80px;
    left: 80%;
    margin-left: 0px;
  }
}
/*
.dropdown:hover {
  border-radius: 10px;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}
*/
