
.select {
	position: relative;
}

.select select{
	height: auto;
    padding: 10px 10px 8px 10px;
}

.select:after {
	content: '';
	position: absolute;
	top: 0;
	width: 0;
	height: 0;
	right: 10px;
	bottom: 0;
	margin: auto;
	border-style: solid;
	border-width: 5px 5px 0 5px;
	border-color: #444 transparent transparent transparent;
	pointer-events: none;
	z-index:2;
}

.select:before {
	width: 30px;
	position: absolute;
	top: 2px;
	right: 2px;
	bottom: 2px;
	background: #fff;
	content: '';
	pointer-events: none;
	z-index:1;
}

/* Disable ugly outline on firefox  */
.select select:-moz-focusring, input[list] datalist:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #000;
}

/* Disable default arrow on IE 11+ */
.select select::-ms-expand, input[list] datalist::-ms-expand {
	display: none;
}


/* IE 9 only */
@media all and (min-width: 0\0) and (min-resolution: 0.001dpcm) {
	.select select {
		padding-right: 0;
	}

	.select:after, .select:before {
		display: none;
	}
}

.ns-select--error {
    border: 2px solid #d4351c;
}
.ns-select--error:focus {
    border-color: #0b0c0c;
}