/***********************************
 * Layout
 ***********************************/
.wSelect-el {
	width: 0px;
	height: 0px;
	padding: 0px;
	margin: 0px;
	border: none;
	overflow: hidden;
}
/*.wSelect {
	position: relative;
	display: inline-block;
    *display: inline;
    zoom: 1;
    vertical-align: middle;
	cursor: pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}*/
.wSelect-arrow {
	position: absolute;
	width: 30px;
	right: 0px;
	top: 0px;
	height: 100%;
	background-repeat: no-repeat;
	background-position: 0px center;
}
/*.wSelect-hover .wSelect-arrow, .wSelect-active .wSelect-arrow {
    background-position: -30px 4px;
}*/
.wSelect.wSelect-multiple {
	overflow: hidden;
}
.wSelect-selected {
    margin: 0px 35px 0px 15px;
    /* padding: 8px 0; */
    overflow: hidden;
    white-space: nowrap;
    background-repeat: no-repeat;
    background-position: 0 center;
    line-height: 35px;
    height: 35px;
}
.wSelect-options-holder {
	position: absolute;
	display: none;
	left: 10px;
	z-index: 200;
	overflow: hidden;
}
.wSelect-multiple .wSelect-options-holder {
	position: relative !important;
	display: block !important;
	top: auto !important;
	z-index: auto !important;
	border: none !important;
}
.wSelect-options {
    overflow-y: auto;
    overflow-x: hidden;
}
.wSelect-option {
	background-repeat: no-repeat;
	background-position: 5px center;
	cursor: pointer;
}
.wSelect-option-last {
	margin-bottom: 0px;
}
.wSelect-option-value {
	margin: 0 5px;
	padding: 5px 0;
	background-repeat: no-repeat;
	background-position: 0 center;
	white-space: nowrap;
	overflow: hidden;
}
.wSelect-option-disabled .wSelect-option-value {
	filter: alpha(opacity=20);
	opacity: 0.2;
}
.wSelect-option-icon {
	padding-left: 20px;
}

/***********************************
 * Theme - classic
 ***********************************/
.wSelect-theme-classic.wSelect {
    border: solid #CCC 1px;
    color: #555;
	border-radius:20px;
    background-color: #fff;
    font-size: 12px;
    min-width: 100%;
	font-family: 'open_sansregular';
    position: absolute;
    max-width: 100%;
    top: -23px;
	margin-bottom: 10px;

}
.wSelect-options {
    max-height:200px !important;
}
/*.wSelect-arrow {
    background-image: url(../../images/flag/filled-arrow.png);
    background-repeat: no-repeat;
    background-position: 0px 4px;
    height: 33px;
    width: 30px;
    float: left;
   top: 4px; 
}*/
.wSelect-arrow {
    background-image: url(../../images/flag/filled-arrow.png);
    background-repeat: no-repeat;
    background-position: 10px 15px;
    height: 34px;
    width: 30px;
    float: left;
    /* top: 4px; */
}
/*.wSelect-theme-classic.wSelect-hover,
.wSelect-theme-classic.wSelect-active {
    border-color: rgb(82, 168, 236);
    border-color: rgba(82, 168, 236, 0.8);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}*/
.wSelect-theme-classic .wSelect-options-holder {
    border: solid #CACACA 1px;
    max-width: 134px;
    width: 111px;
    z-index: 200;
}

/* Scrollbar Styling */
.wSelect-options::-webkit-scrollbar {
    width: 7px;
}
 
.wSelect-options::-webkit-scrollbar-track {
    background-color:#fff;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.wSelect-options::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #c6c6c6; 
}
.wSelect-theme-classic .wSelect-options {
    border: solid #FAFAFA 1px;
    background-color: #fff;
    max-height: 112px !important;
    height: auto !important;
}
.wSelect-theme-classic .wSelect-option {
	background-color: #FFF;
	color: #333;
}
.wSelect-theme-classic .wSelect-option-disabled {
	background-color: #FFF !important;
	color: #333 !important;	
}
.wSelect-theme-classic .wSelect-option-selected,
.wSelect-theme-classic .wSelect-option:hover {
	background-color: #99AAFF;
	color: #FAFAFA;
}

/***********************************
 * Labels
 ***********************************/
.wLabel-top,
.wLabel-left,
.wLabel-left-top {
    vertical-align: middle;
    font-size: 10px;
    line-height: 16px;
    color: #999;
    display: block;
    margin: 5px 0 3px 3px;
}
.wLabel-left-top {
    vertical-align: top;
}
@media screen and (min-width: 600px) {
    .wLabel-left,
    .wLabel-left-top {
        display: inline-block;
        *display: inline;
        zoom: 1;
        width: 70px;
        text-align: right;
        margin: 0 0 7px 0;
    }
}