﻿/* Dropdown Button */
.rpasoftdrdownbtn {
    /*background: #1b63f5;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 10px 35px;
    text-transform: uppercase;
    color: white;
    width:150px;*/
}
    .rpasoftdrdownbtn:hover {
       /* background: #3775f4;
        color: #efe93a;*/
    }

    .rpasoftdrdownbtn:active {
       /* background-color: #3775f4;*/
    }

    .rpasoftdrdownbtn:focus {
        /*background-color: #3775f4;
        color: #1b63f5;
        box-shadow: 0 0 70px rgba(0, 0, 0, 0.15);
        border-color: white;*/
    }

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    min-width: 300px;
    width:300px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

    /* Links inside the dropdown */
    .dropdown-content a {
        color:white;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        /* Change color of dropdown links on hover */
        .dropdown-content a:hover {
            background-color: #d74295;
            color: white;
        }

/* 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;
}
