/* Default custom select styles */
div.cs-select {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	text-align: left;
	background: #fff;
	width: 100%;
	max-width: 500px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin-bottom: 5px;
}

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: 8px 15px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #ffffff;
}

/* Placeholder and selected option */
.cs-select > span {
	padding-right: 3em;
	-webkit-transition: background 0.2s, border-color 0.2s;
	transition: background 0.2s ease 0s, border-color 0.2s ease 0s;
	background: #80bf26 none repeat scroll 0 0;
	color: #ffffff;
}

.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 {
	content: '\25BE';
	font-size: 24px;
    right: 0.6em;
}

.cs-select .cs-selected span::after {
	content: '\2713';
	margin-left: 1em;
}

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

/* Options */

.cs-select .cs-options li span:hover,
.cs-select li.cs-focus span {
	background: #6FA720;
}
.cs-select .cs-options {
	position: absolute;
	overflow: hidden;
	width: 100%;
	opacity: 0;
	-webkit-transition: opacity 0.2s, visibility 0s 0.2s;
	transition: opacity 0.2s, visibility 0s 0.2s;
	visibility: hidden;
	z-index: 100;
}

.cs-select.cs-active .cs-options {
	opacity: 1;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
	background: #80BF26 none repeat scroll 0 0;
	visibility: visible;
}

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

.cs-select ul span {
	padding: 8px 15px;
}

.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;
}
.cs-select-submit {
	width: 100%;
}

.cs-select-submit a {
    background: #FFFFFF repeat scroll 0 0;
    border-radius: 1px;
    color: #56811A;
    display: block;
    float: right;
    text-align: center;
    padding: 5px 15px;
	border: 1px solid #80BF26;
	box-shadow:1px 1px 1px rgba(20%,20%,40%,0.1);
}
@media (max-width:640px){.cs-select-submit a{float: left;}}
.cs-select-submit a:hover {
    background: #56811A repeat scroll 0 0;
    border-radius: 1px;
    color: #FFFFFF;
    display: block;
    float: right;
    text-align: center;
    padding: 5px 15px;
	border: 1px solid #80BF26;
	box-shadow:1px 1px 1px rgba(20%,20%,40%,0.1);
	text-decoration: none;
}
@media (max-width:640px){.cs-select-submit a:hover{float: left;}}