
/* sk_combobox */
.sk_combobox {
	cursor: pointer;
	border: #6991A9 solid 1px;
	padding: 2px;
	overflow: hidden;
	font-size: 12px;
	background-color:#FFFFFF;
	-moz-user-select:none;
	-webkit-user-select:none;
}
.sk_combobox_value {
	min-height: 14px;
	overflow: hidden;
	-moz-user-select:none;
	-webkit-user-select:none;
	color: #000000;
	font-family: Verdana !important;
}
div.sk_combobox > div {
	padding-right: 11px;
}
.sk_combobox_button {
	width: 11px;
	margin-right: -11px;
	min-height: 14px;
	float: right;
	background: url('down_arrow.png') no-repeat center center;
	-moz-user-select:none;
	-webkit-user-select:none;
}
.sk_combobox_list {
	border-left: #C0C0C0 solid 1px;
	border-right: #C0C0C0 solid 1px;
	border-bottom: #C0C0C0 solid 1px;
	overflow: auto;
	display: none;
	background-color: #FFFFFF;
	position: absolute;
	padding: 0px;
	left: 0px;
	top: 0px;
	font-family: Verdana !important;
	font-size: 12px !important;
	-moz-user-select:none;
	-webkit-user-select:none;
	z-index: 1000000;
}
.sk_combobox_item, .sk_combobox_active_item {
	min-height: 15px;
	cursor: pointer;
	padding: 4px;
	overflow: visible;
	-moz-user-select:none;
	-webkit-user-select:none;
	font-family: Verdana !important;
}
.sk_combobox_item {
	background-color: #FFFFFF;
	color: #000000;
	position: relative;
}
.sk_combobox_active_item {
	background-color: #78a0b8;
	color: #FFFFFF;
}

.sk_combobox_selected_item {
	background-color: #6991A9;
	color: #FFFFFF;
}



/* COMBOBOX */

.combobox {
    /*
    -webkit-border-radius: 3px;
    border-radius: 3px;
    */
    padding: 2px 18px 2px 3px;
    background-color: #fff;
    /*overflow: hidden;*/
    /*height: 28px;*/
    position: relative;
    cursor: pointer;
    -moz-user-select:none;
    -webkit-user-select:none;
    font-size: 100%;
    border: #c5c5c5 solid 1px;
    min-height: 30px;
    box-sizing: border-box;


    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;


    -webkit-box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.2);

}

.combobox.error {
    /*	background-color: #FF6347;*/
    border: 1px solid #FF0000 !important;
}


.combobox > a {
    position: absolute;
    display: block;
    width: 16px;
/*    height: 20px; */
	bottom: 0;
    top: 0px;
    right: 0px;
    background: url('combobox_arrows.png') no-repeat center center;
}
.combobox:hover > a,
.combobox > a:hover {
    /*background-position: 0 -30px;*/
    background-color: #F2F6F8;
}


.combobox.opened > a {
    /*background-position: -30px 0px;*/
    background-color: #F2F6F8;
}

.combobox.opened > a:hover {
    /*background-position: -30px -30px;*/
    background-color: #F2F6F8;
}


.combobox:after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	position: absolute;
	top: 50%;
	right: 5px;
	margin-top: -3px;
	background: url('arrow_down.svg') no-repeat center center;
	background-size: contain;
}

.combobox.opened:after {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}
















.combobox .value {
    /*min-height: 16px;*/
    overflow: hidden;
    -moz-user-select:none;
    -webkit-user-select:none;
    color: #000000;
    font-size: 100%;
    font-family: sans-serif;
    /*font-size: 20px;*/
    white-space: nowrap;
    word-wrap: normal;
    position: absolute;
    top: 2px;
    left: 3px;
    bottom: 2px;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
	
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	gap: 3px;
}

.combobox .list {
    /*
    -webkit-border-radius: 3px;
    border-radius: 3px;
    */
    background-color: #fff;

    overflow: auto;
    display: none;
    position: absolute;
    padding: 0px;
    left: -1px;
    top: 28px;
	/* top: calc(100% + 8px); */
    font-size: 12px !important;
    -moz-user-select:none;
    -webkit-user-select:none;
    z-index: 1000000;
	width: calc(100% + 2px);
	min-width: 100%;
	white-space: nowrap;
	/*min-width: 100px;*/
    border: 1px solid #ccc;
	
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;



	z-index: 10;
	right: -1px;
	max-height: 300px;
}

.combobox.opened .list {
    display: block;
}

.combobox.opened .list .item,
.combobox.opened .list li
{
    min-height: 15px;
    cursor: pointer;
    padding: 4px;
    overflow: visible;
    -moz-user-select:none;
    -webkit-user-select:none;
    font-family: Verdana !important;
    background-color: #FFFFFF;
    color: #000000;
    background: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.combobox.opened .list .item:hover,
.combobox.opened .list li:hover
{
    background-color: #78a0b8;
    color: #FFFFFF;
}

.combobox.opened .list .item.selected,
.combobox.opened .list li.selected
{
    background-color: #6991A9;
    color: #FFFFFF;
}


.combobox.opened .list .combobox_group {

}

.combobox.opened .list .optgroup {
	min-height: 15px;
	cursor: pointer;
	padding: 4px;
	overflow: visible;
	-moz-user-select:none;
	-webkit-user-select:none;
	font-family: Verdana !important;
	background-color: #FFFFFF;
	color: #444;
	background: none;
	font-weight: bold;
}

.combobox.opened .list .combobox_group .item {
	padding-left: 25px;
}

.combobox.opened .list .combobox_group > :last-child {

}



/* 2020 */

.combobox .list li:nth-child(even) {
	background: #f8f7ff;
}



.combobox .list li {
	padding: 6px 12px;
	cursor: pointer;
	font-size: 14px;
	color: #2a2a2a;
	min-height: 20px;
}







.combobox.opened .list ul {
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
}





.combobox .list li:hover {
	background-color: #e0ddf5;
}


.combobox .list li.selected {
	background-color: #e0ddf5;
}

.combobox:after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -3px;
	/*TODO SVG*/
	background: url('arrow_down.svg') no-repeat center center;
	background-size: contain;
}

.combobox.opened:after {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}