.imageDropdown {
    width: auto;
    height: 100%;
    cursor: pointer;
    padding: 3px 10px;
    display: inline-block;
    vertical-align: top;
    position: relative;
}
.imageDropdown__text {
    vertical-align: top;
    display: inline-block;
    color: #5cb85c;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 54px;
    height: 100%;
    margin: 0 5px 0 7px;
}
.imageDropdown__image {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 3px solid #5cb85c;
    object-fit: cover;
    object-position: top;
}
.imageDropdown__content,
.imageDropdown__content--open {
    width: 100%;
    position: absolute;
    top: 56px;
    left: 0;
    height: auto;
    max-height: 0;
    overflow: hidden;
    transition: all .3s linear;
    text-align: left;
    background-color: #2c80b8;
    z-index: 50;
}
.imageDropdown__content--open {
    max-height: 120px;
}
a.imageDropdown__option {
	color:white!important;
	text-decoration:none!important;
}
.imageDropdown__option {
    height: 40px;
    width: 100%;
    line-height: 40px;
    font-size: 1.2rem;
    color: white;
    font-weight: 700;
    display: block;
    position: relative;
}
.imageDropdown__option:hover {
    background-color: #3A94CF;
    color: white;
}