/* Style The Dropdown Button */
.dropdown-links-btn {
    background-color: rgba(255, 255, 255, 0);
    color: #000000;
    padding: 3px;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* The container <div> - needed to position the dropdown content */
.dropdown-links {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-links-content {
    display: none;
    position: absolute;
    right: -15px;
    top: 35px;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;

}

/* Links inside the dropdown */
.dropdown-links-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-links-content a:hover {
    background-color: #bababa
}

/* Show the dropdown menu on hover */
.dropdown-links:hover .dropdown-links-content {
    /*display: block;*/
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown-links:hover .dropdown-links-btn {
    /*background-color: #6e6e6e;*/
}

@media screen and (max-width: 44em) {
    /* Style The Dropdown Button */
    .dropdown-links-btn {
        width: auto;
    }
}

