.color-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-arrow {
    width: 18px;
    height: 18px;
    position: relative;
    right: -2px;
}

.dropdown-content {
	margin: 0;
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 135px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    list-style: none;
    padding: 0;	
	z-index: 9999;
	height:215px;
	overflow-y: auto;
    overflow-x: hidden;
}

.dropdown-content li {
	padding: 8px 5px 8px 5px;
    cursor: pointer;
    align-items: center;
	display: table;
}

.dropdown-content li img {
    margin-right: 5px;
}

.dropdown-content li:hover {
    background-color: #ddd;
}

.dropdownButton {
	padding:5px;
	vertical-align:middle;
    font-size: 16px;
    cursor: pointer;
	height:28px;
    align-items: center;
    justify-content: space-between;
    position: relative;
	border: 1px solid #bbb;
    background: -webkit-linear-gradient(top, #ffffff 0, #eeeeee 100%);
    background: -moz-linear-gradient(top, #ffffff 0, #eeeeee 100%);
    background: -o-linear-gradient(top, #ffffff 0, #eeeeee 100%);
    background: linear-gradient(to bottom, #ffffff 0, #eeeeee 100%);
	background-repeat: repeat-x;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}
