/* Style The Dropdown Button */
.dropbtn {

    border-radius: 10px;
    background-color: #ffffff00;
    color: #ffffff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    opacity: 80%;
    float: right;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.dropbtnACTIVE {

    border-radius: 10px;
    background-color: #ffffff00;
    color: #ffffff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    opacity: 80%;
    float: right;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    background-color: #ffffff;
    color: black;
    opacity: 60%;
    transform: scale(1.18);
    box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 255);
    transform: translateY(-3px);
    transition: 0.3s;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {

    float: right;
    margin-top: 70px;
    transition: 0.3s;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    overflow: hidden;
    border-radius: 10px;
    margin-top: 53px;
    visibility: hidden;
    position: absolute;
    background-color: #f9f9f9b3;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    opacity: 0;
    transition: 0.3s;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 0px 16px;
    text-decoration: none;
    display: block;
    transition: 0.15s;
     opacity: 0;
    
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {

    background-color: #f1f1f1;
    transition: 0.3s;

}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transition: 0.4s;
    transform: translateY(5px);
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.5);
}
.dropdown:hover .dropdown-content a{
     opacity: 1;
   padding: 12px 16px;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    border-radius: 10px;
    background-color: #ffffff;
    color: black;
    opacity: 60%;
    transform: scale(1.18);
    box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 255);
    transform: translateY(-3px);
    transition: 0.3s;
}