.hidden_select_container {
	width: 0;
	height: 0;
	overflow: hidden;
}

.simpleselect,
.simpleselect * {
	box-sizing: content-box;
}

.simpleselect {
	position: relative;
	width: 100%;
	height: 31px;
	color: #b8b8b8;
	font-size: 14px;
        margin-bottom: 18px;
}
.gfield_error .simpleselect {
    margin-bottom:0;
}
.simpleselect .options {
	width: 100%;
}

.simpleselect .placeholder,
.simpleselect .options .option,
.simpleselect .options .optgroup .optgroup-label {
    padding: 0 22px;
    cursor: pointer;
    height: auto;
    line-height: 31px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    
}
.simpleselect .options .option {
    background:#f1f1f1;
}

.simpleselect .options .optgroup .optgroup-label {
    cursor: default;
    font-weight: bold;
}
.simpleselect .options .optgroup .option {
    padding-left: 20px;
}
.simpleselect .placeholder {
    overflow: hidden;
    height: 31px;
    line-height: 31px;
    padding: 0 22px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    background: #f1f1f1;
    border: none;
    color: #4a4a4a;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
}
.gfield_error .simpleselect .placeholder {
    border:1px solid #790000;   
    box-sizing: border-box;
    margin-top:4px;
}

.simpleselect .options {
    background: #fff;
    border: none;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;

}
.simpleselect .placeholder {
	position: relative;
}
.simpleselect .placeholder:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 22px;
	width: 7px;
	background: url(../../images/select-arrow.png) 0 center no-repeat;
}

.simpleselect .options {
	display: none;
	position: absolute;
	top: 0!important;
	left: 0;
	z-index: 1000;
        box-sizing: border-box;
}
.simpleselect.active .options {
    display:block;
    min-height:93px;
}

.simpleselect .options .option.active {
    height: auto;
    line-height: 31px;
    padding: 0 22px;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    background: #f1f1f1;
    border: none;
    color: #4a4a4a;
            
}

.simpleselect.disabled .placeholder,
.simpleselect.disabled .placeholder:hover {
	background: #fafafa;
	color: #aaa;
	border-color: #eee;
	cursor: default;
}

.simpleselect.disabled .placeholder:after {
	opacity: .5;
}