.hidden_select_container {
	width: 0;
	height: 0;
	overflow: hidden;
}

.simpleselect, .simpleselect * {
	box-sizing: content-box;
}

.simpleselect {
	position: relative;
	width: 100%;
	height: 42px;
}

.simpleselect .options {
	width: 101.5%;
}

.simpleselect .placeholder, .simpleselect .options .option, .simpleselect .options .optgroup .optgroup-label {
	line-height: 26px;
    padding: 0 11px;
    cursor: pointer;
    color: #B4BCD0;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
}

.simpleselect .options .optgroup .optgroup-label {
	cursor: default;
	font-weight: bold;
}

.simpleselect .options .optgroup .option {
	padding-left: 20px;
}

.simpleselect .placeholder {
	position: relative;
}

.simpleselect .placeholder:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 11px;
	width: 12px;
	background: url(../images/select-down.png) center no-repeat;
}

.simpleselect .options {
	background: #191C2E;
	display: none;
	position: absolute;
	top: 62px;
	left: -1px;
	z-index: 1000;
	border-radius: 8px;
	box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	padding: 8px;
    box-sizing: border-box;
}

.simpleselect .options .option.active {
	background: #4A48DF;
    border-radius: 4px;
    color: #F7F8F8;
}

.simpleselect.disabled .placeholder, .simpleselect.disabled .placeholder:hover {
	cursor: default;
}

.simpleselect.disabled .placeholder:after {
	opacity: .5;
}