/* Default custom select styles */

.sel_sec{
	width: 100%;
	clear: both;
}



.cs-select {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	float: right;
	text-align: left;
	background: #fff;
	font-size: 14px;
	font-family:  PFDinDisplayPro-Bold;
	padding: 0 10px;
 	color: #26363f;
	height: 32px;
	width: 296px;
	border: 2px solid #315564;
	text-transform: uppercase;
	line-height: 8px;
	-moz-border-radius: 2px;
	 -webkit-border-radius: 2px;
	  -o-border-radius: 2px;
	border-radius: 2px;
	margin-bottom: 15px;
}

.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;
	cursor: pointer;
	padding-left: 1rem;
    padding-top: 0.6rem;
	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 {
	content: url('/uploads/images/arrow_sel.png');
	right: 0;
}

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

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

/* Options */
.cs-select .cs-options {
	position: absolute;
	overflow: hidden;
	margin-left: -10px;
	width: 100%;
	background: #315564;
	visibility: hidden;
	color: #FFF;
	z-index: 100;
	border-bottom: 1px solid #3b5f6d;
}

.cs-select .cs-options li{
	border-bottom: 1px solid #3b5f6d;
}
.cs-select .cs-options li:hover{
	background:#3d6372;
}


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

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

.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;
}


.cs-placeholder {
            height: 100%;
        }
