/* Default custom select styles */
div.cs-select {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	text-align: left;
	background: #fff;
	z-index: 100;
	height: 60px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

div.cs-select:focus {
	outline: none; /* For better accessibility add a style for this in your skin */
}

.cs-select select {
	display: none;
}

.cs-select span {
	display: block;
	position: relative;
	cursor: pointer;
	padding: 20px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Placeholder and selected option */
.cs-select > span {
	padding-right: 3em;
}

.cs-select > span::after,
.cs-select .cs-selected span::after {
	speak: none;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.cs-select > span::after {
	
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
	right: 1em;
}

.cs-select .cs-selected span::after {
  	
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
	margin-left: 1em;
}

.cs-select.cs-active > span::after {
	-webkit-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg);
	color: #252525;
}

div.cs-active {
	z-index: 200;
}

/* Options */
.cs-select .cs-options {
	position: absolute;
	overflow: hidden;
	width: 100%;
	background: #fff;
	visibility: hidden;
}

.cs-select.cs-active .cs-options {
	visibility: visible;
}

.cs-select ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	max-height: 173px;
}

.cs-select ul span {
	padding: 1em;
}

.cs-select ul li.cs-focus span {
	background-color: #ddd;
}

/* Optgroup and optgroup label */
.cs-select li.cs-optgroup ul {
	padding-left: 1em;
}

.cs-select li.cs-optgroup > span {
	cursor: default;
}


/* NEW CS SELECT */
div.cs-select-1 {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	text-align: left;
	background: #fff;
	z-index: 100;
	height: 60px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;    
    margin: 2px -5px 0 0px;
}

div.cs-select-1:focus {
	outline: none; /* For better accessibility add a style for this in your skin */
}

.cs-select-1 select {
	display: none;
}

.cs-select-1 span {
	display: block;
	position: relative;
	cursor: pointer;
	padding: 20px 37px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Placeholder and selected option */
.cs-select-1 > span {
	/* padding-right: 3em; */
}

.cs-select-1 > span::after,
.cs-select-1 .cs-selected span::after {
	speak: none;
	position: absolute;
	top: 55%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.cs-select-1 > span::after {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	/* left: 72%; */
}

.cs-select-1 .cs-selected span::after {	
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	margin-left: -0.4em;
	margin-top: -4px;
}

.cs-select-1.cs-active > span::after {
	-webkit-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg);
	color: #ccc;
	/* left: 72%; */
}

div.cs-active {
	z-index: 200;
}

/* Options */
.cs-select-1 .cs-options {
	position: absolute;
	overflow: hidden;
	width: 100%;
	background: #fff;
	visibility: hidden;
}

.cs-select-1.cs-active .cs-options {
	visibility: visible;
}

.cs-select-1 ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.cs-select-1 ul span {
	padding: 1em;
}

.cs-select-1 ul li.cs-focus span {
	background-color: #ddd;
}

/* Optgroup and optgroup label */
.cs-select-1 li.cs-optgroup ul {
	padding-left: 1em;
}

.cs-select-1 li.cs-optgroup > span {
	cursor: default;
}
