/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.dropdown .dropdown-title {
    cursor: pointer;
    padding: 15px 0;
    margin-top: 0;
    border: solid 1px;
    border-left: 0;
    border-right: 0;
    font-weight: bold;
}

.dropdown.dropdown2 .dropdown-title {
    cursor: pointer;
    padding: 15px 0;
    margin-top: 0;
    border: solid 1px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    font-weight: bold;
}

.dropdown .dropdown-title svg path {
    fill: black;
    stroke: black;
}

.dropdown .sidebar_list {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: 0.25s linear;
    -o-transition: 0.25s linear;
    transition: 0.25s linear;
}

.dropdown .sidebar_list.expand {
    max-height: 100%;
    overflow: hidden;
    margin: 20px 0;
}

@media (max-width:480px) {
    .dropdown.dropdown2 .dropdown-title {
        border: solid 1px;
        border-left: 0;
        border-right: 0;
    }
}