.dropbtn {
    border: solid 2px #d2d2d2;
    border-radius: 5px;
    cursor: pointer;
    width: 150px;
    max-width: 150px;
    min-width: 150px;
    text-align: left;
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 10px;
}

.dropdown {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    display: table;
}

.dropdown .dropbtn > img {
    float: left;
}

.form-control-image-select .dropbtn {
    border-radius: 0%;
    width: 100%;
    max-width: none;
    min-width: none;
    background-color: white;
}
.form-control-image-select {
    width: 100%;
}

.form-control-image-select .dropdown-content {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: left;
}

.dropdown img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border: 1px solid gray;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    /*display: block;*/
}

.dropdown:hover .dropbtn {
    /* background-color: #3e8e41; */
}
