/*
	(c) Harald Blazy
*/

/*======================================================================*/

select.auswahl {
    background-color: #2196F3!important;
    background-color: #ddd!important;
    font-weight: normal!important;
    color: white!important;
    color: black!important;
	border: 1.2px solid #aaa;
	border-radius: 5px;

	padding: 5px 10px;
	cursor: pointer;
	transition: .5s ease;
}
select.auswahl:hover {
    color: yellow!important;
    color: white!important;
    background-color: #04B431!important;
	transition: .5s ease;
	border: 0;
	border: 1.2px solid #aaa;
	border-radius: 5px;
}

/*======================================================================*/

select.auswahl option {
    background-color: #ddd!important;
    background-color: #eee!important;
    font-weight: normal!important;
    color: black!important;
	border: 1px solid red;
}
select.auswahl option:disabled {
    color: #999!important;
}

select.auswahl optgroup {
    background-color: #bbb!important;
    background-color: #ccc!important;
    font-weight: normal!important;
    color: black!important;
}




select.auswahl option:hover {
    background-color: red!important;
    color: red!important;
}

select.auswahl option:checked {
    background-color: red!important;
}

select.auswahl option:checked, select.auswahl option:hover  {
    background-color: red!important;
    color: red!important;
}

/*======================================================================*/
