.sidenav {
    height: 100%;
    width: 100%;
    /*position: fixed;*/
    z-index: 1;
    top: 0;
    left: 0;
    /*background-color: #111;*/
    overflow-x: hidden;
    padding-top: 20px;
}

/* Style the sidenav links and the dropdown button */
.sidenav a, .dropdown-btn {
    padding: 10px 8px 10px 16px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    display: block;
    background: none;
    width:100%;
    text-align: left;
    cursor: pointer;
    outline: none;
    font-family: "Nunito Sans", sans-serif;
    margin-top: 8px;
    margin-bottom: 10px;
}
.dropdown-btn{
    border: #e2e2e2 solid 1px;
}

/* On mouse-over */
/*.sidenav a:hover {*/
/*    color: #3fa860;*/
/*}*/

/* Main content */
.main {
    margin-left: 200px; /* Same as the width of the sidenav */
    font-size: 20px; /* Increased text to enable scrolling */
    padding: 0px 10px;
}

/* Add an active class to the active dropdown button */
.dropdown-btn.active {
    background-color: #3fa860;
    color: white;
}
.dropdown-btn.active:hover {
    background-color: #3fa860;
    color: white;
}
a.dropdown-btn:hover {
    /*background-color: #3fa860;*/
    color: #818181;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
    display: none;
    /*background-color: #262626;*/
    padding-left: 25px;
}
.dropdown-container>a:hover{
    color: #3fa860;
    text-decoration: underline;
}

/* Optional: Style the caret down icon */
.fa{
    float: right;
    padding-right: 8px;
    pointer-events: none
}
.dropdown-container>a:focus{
    color: #3fa860;
}
/*accordion*/
.accordion {
    background-color: #444;
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    /*border: none;*/
    text-align: left;
    outline: none;
    font-size: 24px;
    font-family: "Nunito Sans", sans-serif;
    transition: 0.4s;
    border: 1px solid #fff;
}

@media (hover: hover) {
    .acc-active, .accordion:hover {
        background-color: #3fa860;;
        color: white;
    }
    .acc-active, .accordion:hover:after{
        color: white;
    }
}

@media (hover: none) {
    .acc-active{
        background-color: #3fa860;;
        color: white;
    }
    .acc-active{
        color: white;
    }
}


.accordion:after {
    content: '\002B';
    color: #fff;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.acc-active:after {
    content: "\2212";
    color: white;
}

.panel {
    padding: 0 18px;
    margin-bottom: 0;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.contact-widget a {
    margin: 0
}
.contact-widget li{
    margin-top: 11px !important;
}