.SumoSelect p {
	margin: 0;
}
.SumoSelect {
	width: 100%; 
}
.SumoSelect:last-child {
	margin-bottom:-10px;
}
.SelectBox {
	padding: .8em 0em .6em 1em; /*line-height: 1.0em;*/
	
}
@media only screen and (max-width: 480px) {
.SelectBox {
	padding: 1em 0em .4em 1em;
	
}
}
.SelectBox:hover, .SelectBox:active, .SelectBox:focus {
	border: 1px solid rgba(43,169,191,1.00);
}

.sumoStopScroll {
	overflow: hidden;
}
/*this is applied on that hidden select. DO NOT USE display:none; or visiblity:hidden; and Do not override any of these properties. */
.SelectClass, .SumoUnder {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	border: none;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0; 
}
.SelectClass {
	z-index: 1; 
}
.SumoSelect > .optWrapper > .options li.opt label, .SumoSelect > .CaptionCont, .SumoSelect .select-all > label {
	user-select: none;
	-o-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none; line-height: 1.0em;
}
.SumoSelect {
	display: inline-block;
	position: relative;
	outline: none; 
}
.SumoSelect:focus > .CaptionCont, .SumoSelect:hover > .CaptionCont, .SumoSelect.open > .CaptionCont {
	border-color: rgba(56,181,174,1.00)
}
.SumoSelect > .CaptionCont {
	position: relative;
	border: 1px solid #bbb;
	min-height: 14px;
	background-color: #fff;
	margin: 0; 
}
.SumoSelect > .CaptionCont > span {
	display: block;
	padding-right: 30px; 
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	cursor: default; 
}
/*placeholder style*/
.SumoSelect > .CaptionCont > span.placeholder {
	color: rgba(123,123,123,1.00);
	font-style: normal;
}
.SumoSelect > .CaptionCont > label {
	position: absolute;
	top: 0;
	right: -10px;
	bottom: 0;
	width: 20px;
}
.SumoSelect > .CaptionCont > label > i {
	background-image: url(../../bilder/select-arrow.png);
	background-position: left center;
	background-repeat: no-repeat;
	width: 30px;
	height: 16px;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;	
}
.SumoSelect:hover > .CaptionCont > label > i {
	background-image: url(../../bilder/select-arrow-hover.png);
	background-position: left center;
	background-repeat: no-repeat;
}

/*.SumoSelect.open > .CaptionCont > label > i {
	background-image: url(../../bilder/select-arrow-hover.png);
	background-position: left center;
	background-repeat: no-repeat;
}*/

.SumoSelect > .optWrapper {
	display: none;
	z-index: 2;
	top: 30px;
	width: 100%;
	position: absolute;
	left: 0;
	background: #fff;
	border-top: 0px solid rgba(56,181,174,1.00);
	border-right: 1px solid rgba(56,181,174,1.00);
	border-bottom: 1px solid rgba(56,181,174,1.00);
	border-left: 1px solid rgba(56,181,174,1.00);
	overflow: hidden; 
}
.SumoSelect.open > .optWrapper {
	top: 35px;
	display: block; 
}
.SumoSelect.open > .optWrapper.up {
	top: auto;
	bottom: 100%;
	margin-bottom: 5px;
}
.SumoSelect > .optWrapper ul {
	list-style: none;
	display: block;
	padding: 0;
	margin: 0;
	overflow: auto;
}
.SumoSelect > .optWrapper > .options {
	position: relative;
	max-height: 224px;
}

.SumoSelect > .optWrapper.isFloating > .options {
	max-height: 100%;
}
.SumoSelect > .optWrapper > .options li.opt {
	padding: 0.28em 6px;
	position: relative;
	border-bottom: 1px solid #eee;
}
.SumoSelect > .optWrapper > .options > li.opt:last-child {
	border-bottom: none;
}
.SumoSelect > .optWrapper > .options li.opt:hover {
	background-color: #f1f1f1 !important; 
}
.SumoSelect > .optWrapper > .options li.opt.sel {
	background-color: #f1f1f1 !important;
	border-bottom: 1px solid #eee;
}
.SumoSelect > .optWrapper > .options li label {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	display: block;
	cursor: pointer;
}
.SumoSelect > .optWrapper > .options li span {
	display: none;
}

/*Floating styles*/
.SumoSelect > .optWrapper.isFloating {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 90%;
	bottom: 0;
	margin: auto;
	max-height: 90%;
}

/*styling for multiple select*/
.SumoSelect > .optWrapper.multiple > .options li.opt {
	padding-left: 44px;
	cursor: pointer;
}
.SumoSelect > .optWrapper.multiple > .options li.opt span,  .SumoSelect .select-all > span {
	position: absolute;
	display: block;
	width: 30px;
	top: 0; top: 5px;
	bottom: 0;
	margin-left: -35px;
}
.SumoSelect > .optWrapper.multiple > .options li.opt span i,  .SumoSelect .select-all > span i {
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 15px;
	height: 15px;
	border: 1px solid #bbb;
	background-color: #fff;
}
.SumoSelect > .optWrapper > .MultiControls {
	display: none;
	border-top: 1px solid rgba(56,181,174,1.00);
	background-color: rgba(56,181,174,0.1);
	margin:0;
}
.SumoSelect > .optWrapper.multiple.isFloating > .MultiControls {
	display: block;
	margin-top: 5px;
	position: absolute;
	bottom: 0;
	width: 100%;
}
.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls {
	display: block;
}
.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls > p {
	padding: 7px;
}
.SumoSelect > .optWrapper.multiple > .MultiControls > p {
	display: inline-block;
	cursor: pointer;
	padding: 12px;
	width: 50%;
	box-sizing: border-box;
	text-align: center;
}
.SumoSelect > .optWrapper.multiple > .MultiControls > p:hover {
	background-color: rgba(56,181,174,0.10)
}
.SumoSelect > .optWrapper.multiple > .MultiControls > p.btnOk {
	border-right: 1px solid rgba(56,181,174,1.00);
}
.SumoSelect > .optWrapper.multiple.isFloating {
	padding-bottom: 43px;
}
.SumoSelect > .optWrapper.multiple > .options li.opt.selected span i,  .SumoSelect .select-all.selected > span i,  .SumoSelect .select-all.partial > span i {
	background-color: #fff;
	box-shadow: none;
	border-color: #bbb;
	background-image: url(../../bilder/select-checkbox-btn.png);
	background-repeat: no-repeat;
	background-position: center center;
	
}