/* 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;
    background-image: url(img/css/1-9_select-open.svg);
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-position-x: 95.5%;
    background-position-y: center;
}

.no-svg div.cs-select{
    background-image: url(img/css/1-9_select-open_18x18_x2.png);
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-position-x: 95.5%;
    background-position-y: center;
}

.cs-select.cs-active{
    background-image: url(img/css/1-9_select-close.svg);
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-position-x: 95.5%;
    background-position-y: center;
}

.no-svg .cs-select.cs-active{
    background-image: url(img/css/1-9_select-close_18x18_x2.png);
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-position-x: 95.5%;
    background-position-y: center;
}


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: table-cell;
    vertical-align: middle;
    width: 199px;
	position: relative;
	cursor: pointer;
	padding: 0 8px;
    height: 42px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    line-height: 17px;
}

.cs-placeholder{
    /*width: 173px !important;
    padding: 0 34px 0 8px !important;*/
}

.cs-select.cs-active span{
    border-radius: 0;
   
}

/* Placeholder and selected option */
.cs-select > span {
	/*padding-right: 3em;*/
}

.cs-select > span::after,
.cs-select .cs-selected span::after {
	/*speak: none;
	position: absolute;
	/*-webkit-transform: translateY(-50%);
	transform: translateY(-50%);*/
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;*/
}

.cs-select > span::after {
	/*content:'>';
    right: 9px;
    top: 12px;
    font:18px "Consolas", monospace;
    color:#C84A48;
    -webkit-transform:rotate(90deg);
    -moz-transform:rotate(90deg);
    -ms-transform:rotate(90deg);
    transform:rotate(90deg);*/
}

.cs-select .cs-selected span::after {
	/*content: '\2713';
	margin-left: 1em;*/
}

.cs-select.cs-active > span::after {
	/*-webkit-transform:rotate(270deg);
    -moz-transform:rotate(270deg);
    -ms-transform:rotate(270deg);
    transform:rotate(270deg);*/
}

/* Options */
.cs-select .cs-options {
	position: absolute;
	overflow: hidden;
	width: 100%;
	background: #fff;
	visibility: hidden;
    z-index: 10;
    /*max-height: 300px;*/
    min-height: 50px;
    overflow-y: auto;
}

.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: 10px;*/
}

.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;
}


/* ############################### MAX 768 ################################## */
@media only screen and (max-width: 768px) {
    .cs-select .cs-options {
        z-index: 110;
    }

    .cs-select span{
        width: 210px;
    }
}