.dropdownPanel,
.dropdownPanel .ui-panel-content {
	padding: 0;
}

.dropdown.active,
.agencyBox .dropdown.active {
    background-color: #fff;
}
.dropdown.active:hover {
    background-color: #fff;
}
.postingFieldBox .dropdown.active {
    background-color: inherit;
}
.dropdown .select {
	font-size: 14px;
	padding-left: 14px;
    cursor: pointer;
    display: block;
    padding: 5px 8px;
    box-sizing: border-box;
    line-height: 1.6em;
    min-width: 90px;
}

.dropdown .filtrable-select.cText {
	cursor: text;
}

.rtl .dropdown .filtrable-select {
    padding: 3px 8px 3px 24px;
}
.postingFieldBox .dropdown .filtrable-select, .postingFieldBox select {
	padding: 8px 12px 8px 8px;
}
.dropdown .filtrable-select-icon {
	font-size: 15px;
	position: absolute;
	top: 10px;
	right: 8px;
	line-height: 1em;
}
.rtl .dropdown .filtrable-select-icon {
	left: 8px;
	right: unset;
}
.dropdown .select .default {
    color: #adabab;
}
.dropdown .select > i {
    font-size: 13px;
    color: #888;
    cursor: pointer;
    transition: all .3s ease-in-out;
    line-height: 20px;
    color: #474747;
    float: right;
}
.dropdown.active .select > i {
	transform: rotate(180deg);
}
.dropdown .selectUl {
    padding: 0;
    list-style: none;
    position: absolute;
    background-color: #fff;
    width: 100%;
    max-height: 240px;
    box-sizing: content-box;
    margin-left: -1px;
    border: solid 1px #bcbcbc;
    overflow: hidden;
    display: none;
    overflow-y: auto;
    z-index: 11;
    margin-top: 7px;
    text-align: left;
	border-radius: 5px;
  	padding-top: 5px;
  	padding-bottom: 5px;    
}
.dropdown .selectUl li {
    transition: all .2s ease-in-out;
    cursor: pointer;
    line-height: 1.5em;
	margin-left: 5px;
  	margin-right: 5px;
}
.dropdown .selectUl li a {
	padding: 6px;
    color: #000;
    text-decoration: none;
    display: block;
}
.rtl .dropdown .selectUl li a {
	text-align: right;
}
.dropdown .selectUl li.level-1 a {
	padding-left: 14px;
}
.dropdown .selectUl li.level-2 a {
	font-weight: 600;
}
.dropdown .selectUl li:hover,
.dropdown .selectUl li.hover {
    background: rgba(0, 175, 202, 0.10);
    border-radius: 5px;
}
.dropdown .selectUl li.active {
    background: #0093ff;
    border-radius: 5px;
}
.dropdown .selectUl li.active a{
	color: #fff;	
}
.select .text {
	display: inline-block;
    max-width: 90%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: middle;
}
.dropdown .selectUl .checkboxLabel .checkmark {
	top: 6px;
    height: 20px;
    width: 20px;
    border: 0;
	position: absolute;
	background-color: transparent;
}
.ltr .dropdown .selectUl .checkboxLabel .checkmark {
    left: 10px;
}
.rtl .dropdown .selectUl .checkboxLabel .checkmark {
    right: 5px;
}
.dropdown .selectUl .checkboxLabel .checkmark:after {
    font-size: 14px;
    padding: 1px 0px;
    left: -2px;
}

.dropdown .selectUl .checkboxLabel {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 13px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 2.6em;
}

.ltr .dropdown .selectUl .checkboxLabel {
	padding-right: 0px;
	padding-left: 35px;
}

.ltr .dropdown .selectUl .level-2 .checkboxLabel {
	padding-right: 0px;
	padding-left: 45px;
}

.rtl .dropdown .selectUl .checkboxLabel {
	padding-right: 35px;
	padding-left: 0px;
}

.rtl .dropdown .selectUl .level-2 .checkboxLabel {
	padding-right: 45px;
	padding-left: 0px;
}

.dropdown .selectUl .checkboxLabel input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.dropdown .selectUl .checkboxLabel .checkmark:after {
	content: "✓";
    position: absolute;
    font-size: 14px;
    padding: 1px 0px;
    font-family: 'Arial';
    font-weight: bold;
    line-height: 1.15em;
    color: #0093ff;
    top: 2px;
    left: 2px;
    background-color: transparent;
    display: none;
}

.dropdown .selectUl .checkboxLabel input:checked ~ .checkmark:after {
	display: block;
}

.customFieldBox .customSelectDrop, .customFieldBox .customSelectDrop:hover {
	border: none;
}

.dropdown .selectUl li.unselectable {
	opacity: 0.5;
    pointer-events: none;
}