.O-select.O-style {
	width: 55px;
	height: 35px;
	overflow: hidden;
	box-shadow: 2px 3px 5px #444444;
	position: relative;
}

.O-select.O-style.O-sel-active {
	overflow: visible;
/*	height: auto;*/
}

.O-arrow:after {
	content: '';
	background: 0 0;
	border: 5px solid transparent;
	border-bottom: 0;
	border-top-color: #434647;
	width: 0;
	height: 0;
	right: 10px;
	margin-top: 15px;
	position: absolute;
	transition: .2s ease-in;
	z-index: 1;
}

.O-sel-active .O-arrow:after {
	transform: rotate(180deg);
}

.O-arrow {
	width: 13px;
	height: 35px;
	position: absolute;
	top: 0px;
	right: 0px;
}

.O-select.O-style > div {
	height: 35px;
	line-height: 35px;
	text-indent: 15px;
	cursor: pointer;
}

.O-select.O-style .O-option {
    box-shadow: 2px 3px 5px #444444;
	background-color: #eaeaea;
    position: relative;
    z-index: 1;
	font-size:16px;
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight:bold;
	color:#808080;
}

.O-select.O-style div {
	display: block;
}

.O-hold-list {
    position: absolute;
    width: 100%;
}

.O-select.O-style .O-option:hover {
    background-color: #fff;
}