/* --------------------------------------
	Account Selector Style
---------------------------------------*/
.cr-account-selector {
	position: relative;
}

.cr-account-selector-active {
	border-radius: 5px;
	margin: 3px 14px;
	padding: 5px 9px 5px 5px;
	text-overflow: ellipsis;
	display: flex;
	line-height: 25px;
	user-select: none;
	background-color: #FFFFFF;
    border: 1px solid #CED4DA;
    color: #6C757D;
}

.cr-account-selector-active .fill {
	flex-grow: 1;
}

.cr-account-selector-active .fa {
	margin-top: 5px;
}

.cr-account-selector-options {
	position: absolute;
	border: 1px solid #CED4DA;
	border-radius: 5px;
	top: 97%;
	left: 14px;
	width: calc(100% - 28px);
}


.cr-account-selector-accounts {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	max-height: 362px;
	/* max-height: calc(100vh - 170px); */
	overflow-y: auto
}


.cr-account-selector-options .cr-account-selector-item.cr-account-selector-add-account {
	display: block;
	text-align: center;
	color: #2171B5;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	padding: 10px;;
}

.cr-account-selector-add-account:hover {
	text-decoration: underline;
}

.cr-account-selector-options .cr-account-selector-item:first-of-type input[type="text"] {
	border: none;
	font-size: 14px;
	outline: none;
}

.cr-account-selector-options .cr-account-selector-item {
	padding: 6px;
	background-color: #fff;
	color: #222;
	user-select: none;
	display: flex
}

.cr-account-selector-options .cr-account-selector-search {
	padding: 6px 12px;
	display: flex;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	margin: auto;
}
.cr-account-selector-options .cr-account-selector-search .fill {
	flex-grow: 1;
}
.cr-account-selector-options .cr-account-selector-search i.fa{
	font-size: 16px;
	color: #444;
}

.cr-account-selector-options .cr-account-selector-accounts .cr-account-selector-item.active {
    background: #eee;
}

.cr-account-selector-options .cr-account-selector-accounts .cr-account-selector-item:hover {
    background-color: #e0e0e0;
	cursor: pointer;
}
.cr-account-selector img {
	height: 25px;
	width: 25px;
	margin-right: 7px;
}

.cr-account-selector-name {
	line-height: 1.8;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
}