.common-dropdown .selectCaret {
	position: absolute;
}

.common-dropdown.open .selectCaret {
	content:
		url(/Dashboard/icons/adminPanel/accessibility/dropdown-caret-down.svg);
}

.common-dropdown.closed .selectCaret {
	content:
		url(/Dashboard/icons/adminPanel/accessibility/dropdown-caret-up.svg);
}

.common-dropdown {
	position: relative;
	background-color: white;
	border-radius: 4px !important;
	border: 1px solid #6F6F6F;
	color: #4D4D4D;
	padding-left: 10px;
	cursor: pointer;
}
.common-dropdown.disabled-dropdown {
	pointer-events: none;
	background-color: #F5F5F5;
}
.common-dropdown.open{
    border-top-left-radius: 4px !important;
    border-top-right-radius: 4px !important;
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.common-dropdown-menu {
	position: absolute;
	left: -1px;
    width: inherit;
	background-color: white;
	border: 1px solid #6F6F6F;
	border-bottom-left-radius: 4px !important;
	border-bottom-right-radius: 4px !important;
	z-index: 1;
}

.common-dropdown-menu > div:not(:first-child) {
	border-top: 1px solid #6F6F6F;
}

.common-dropdown-menu > div {
	align-content: center;
	padding: 0px 10px;
	white-space: nowrap;
}

.common-dropdown-menu > div:last-child {
	border-bottom-left-radius: 4px !important;
	border-bottom-right-radius: 4px !important;
}

.common-dropdown-menu > div:focus {
    background-color: #E7F1F3 !important;
}
.common-dropdown-menu > div:hover {
    background-color: #ECECEC !important;
}