.dropdownCaret{
	transition: 200ms color ease-in-out;
}

.dropdownCaret:hover{
	color: red;
}

.ButtonMenu{
	background-color: white;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.ButtonMenuItem{
	padding: 10px;
	cursor: pointer;
	transition: background-color 200ms ease-in-out;
}

.ButtonMenuItem:hover{
	background-color: #b4e6ff;
}