#member_search_dimmer {
	z-index: 1000000;
	position: fixed;
	top:0; left:0; 
	height: 100%;
	width: 100%;
	background-color: rgba(0,0,0,.6);
	display: grid;
	justify-content: center;
	align-content: center;
}

#member_search {
	width: 500px;
	background-color: rgba(255,255,255,.4);
	height: 50px;
	padding: 5px;
	border-radius: 10px;
	position: relative;
	box-shadow: 0 0 0 8px rgba(255,255,255,.10);
}
#member_search.loading::after { border-color:#797979 transparent transparent }

#member_search input {
	border: 0;
	height: 100%;
	width: 100%;
	border-radius: 5px;
	padding: 0 10px;
	outline: none;
	font-size: 16px;
}

#member_search i { 
	top: 0;
	right: 0;
	position: absolute;
	width: 40px;
	height: 100%;
	cursor: pointer;
	opacity: 1;
	color: #797979;
}
#member_search i:before { font-weight:bold; }
#member_search i:hover:before { color:var(--prime); }

#member_nores {
	text-align: center;
	font-size: 20px;
	transition: all .7s ease-in-out;
	color: transparent;
	cursor: default;
	margin-top: 20px;
	font-weight: bold;
}
#member_nores.red {
	color: #d60017;
}

/*#member_nores:empty { display:none; }*/