﻿/* Dropdown Button */
.dropbtn {
    background-color: #3498DB;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

    /* Dropdown button on hover & focus */
    .dropbtn:hover, .dropbtn:focus {
        background-color: #2980B9;
    }

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: absolute;
    display: inline-block;
    right: -356px;
    width:300px;
    top: 186px;
}

.nofloat {
    position: absolute;
    display: inline-block;
    top: 60px;
    right:0px;
}

.accordion-dropdown {
    display:none;
    float: left;
    margin-left: 65px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.accordion-dropdown.show {
    display: block;
}

.accordion-dropdown a {
   line-height:30px;
   color:#fff;
}
.accordion-dropdown a:hover {
   text-decoration:underline;
}

.r-150 {
    right: 150px;
}

/* Dropdown Content (Hidden by Default) */
.dd-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dd-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    line-height:25px;
}

/* Change color of dropdown links on hover */
.dd-content a:hover {
    background-color: #ddd;
    color:#000;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
    display: block;
}
