

/* Dropdown Button */
.dropbtn {
    background-color: #FFFFFF;
    font-family:'Open Sans', sans-serif; font-weight: 100; line-height: auto; color:#000000;
    padding: 16px;
    border: none;
}

@media screen and (min-width: 601px) {
  .dropbtn {
    font-size: 18px;
  }
}

@media screen and (max-width: 600px) {
  .dropbtn {
    font-size: 12px;
  }
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropbtn:hover  {
    background-color: #AFAFBF;
	  font-color: #FFFFFF;
    border: none;

}

@media screen and (min-width: 601px) {
  .dropbtn:hover {
    font-size: 18px;
  }
}

@media screen and (max-width: 600px) {
  .dropbtn:hover {
    font-size: 12px;
  }
}



/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
    border: none;

}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #FFFFFF;
    font-family:'Open Sans', sans-serif; font-weight: 100; line-height: auto; color:#A0938C;
    border: none;
    width: 100%;
    overflow:auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    opacity: 0.8;
}

@media screen and (min-width: 601px) {
  .dropdown-content {
    font-size: 14px;
  }
}

@media screen and (max-width: 600px) {
  .dropdown-content {
    font-size: 12px;
  }
}

/* Links inside the dropdown #A0938C */
.dropdown-content a {
    color: black;
    padding: 8px 8px;
    font-family:'Open Sans', sans-serif; font-weight: 100; line-height: auto; color:#000000;
    text-decoration: none;
    border: none;
    display: block;
}

@media screen and (min-width: 601px) {
  .dropdown-content a {
    font-size: 14px;
  }
}

@media screen and (max-width: 600px) {
  .dropdown-content a {
    font-size: 12px;
  }
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
	  font-color: #FFFFFF;

}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #FFFFFF;
    font-family:'Open Sans', sans-serif; font-weight: 100; line-height: auto; color:#FFFFFF;
    border: none;

}


@media screen and (min-width: 601px) {
  .dropdown:hover .dropbtn {
    font-size: 18px;
  }
}

@media screen and (max-width: 600px) {
  .dropdown:hover .dropbtn {
    font-size: 12px;
  }
}
