.dropdown, .dropdown_title  {
    color: dimgray;
    font-family: Verdana, sans-serif;
}

.dropdown_title {
    padding: 5px 8px;
    font-size: 16px;
}

.dropbtn {
    color: inherit;
    font-family: inherit;
    background-color: #f9f9f9;
    padding: 5px 10px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: 4px 4px 4px 4px;
    border-top: solid 1px #CCC;
    border-bottom: solid 1px #CCC;
    border-left: solid 1px #CCC;
    border-right: solid 1px #CCC;
    min-width: 140px;
    cursor: pointer;
    overflow: hidden;
}

.dropbtn .left {
    float: left;
    pointer-events: none;
}

.dropbtn .right {
    float: right;
    pointer-events: none;
}

.dropbtn:hover {
    background-color: lightgray;
    color: #000;
}

.dropdown_content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    height: 190px;
    min-width: 120px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    margin: 0;
    padding: 5px 5px;
    opacity: 0.8;
    cursor: pointer;
}

.dropdown_content li {
    font-size: 14px;
    line-height: 18px;
    padding: 5px 5px;
    display: block;
    min-width: 120px;
}

.dropdown li:hover {background-color: #ddd;}

.show {
    display: block;
    /* pointer-events: auto; */
}

.dropdowns:after {
    content: "";
    display: table;
    clear: both;
}

@media only screen and (min-width: 1500px) {

    .dropdown_title {
        padding: 7px 10px;
        font-size: 20px;
    }

    .dropbtn{
        padding: 7px 12px;
        font-size: 18px;
        min-width: 180px;
    }

    .dropdown_content li {
        padding: 10px 10px;
        font-size: 18px;
        min-width: 150px;
    }

    .dropdown_content {
        height: 270px;
        min-width: 150px;
    }
}

@media only screen and (max-width: 620px) {

    .dropdown_title {
        padding: 4px 3px;
        font-size: 11px;
    }

    .dropbtn{
        padding: 2px 5px;
        font-size: 10px;
        min-width: 95px;
    }

    .dropdown_content {
        height: 120px;
        min-width: 95px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        margin: 0;
        padding: 5px 5px;
    }

    .dropdown_content li {
        font-size: 10px;
        line-height: 11px;
        padding: 3px 3px;
        min-width: 75px;
    }
}