/* ========== Update Database ========== */

.ngos_progress .progress {
	position: relative;
}

.ngos_progress .progress .description {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ngos_progress .progress-bar {
	padding: 25px;
}

.ngo_block {
	background: #fff;
	padding: 10px;
	border-radius: 3px;
	box-shadow: 2px 2px 6px rgba(0,0,0,.1);
}

.ngo_block .ngo_header {
	display: flex;
}

.ngo_block .ngo_header b {
	display: block;
	padding: 0 0 0 50px;
	flex-grow: 1;
}

.ngo_databases {
	margin-top: 10px;
}

.ngo_databases [ngo-item] {
	display: flex;
	align-items: center;
	color: #909090;
}

.ngo_databases [ngo-item] span {
	flex-grow: 1;
}

.ngo_databases [ngo-item] span:before {
	display: inline-block;
	margin: 0 8px 0 8px;
	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
	content: "\f2f2";
}

.ngo_databases [ngo-item].completed {
	color: green;
}

.ngo_databases [ngo-item].completed span:before {
	content: "\f058";
}

.ngo_databases [ngo-item].error {
	color: red;
}

.ngo_databases [ngo-item].error span:before {
	content: "\f057";
}

.ngo_databases [ngo-item].running {
	color: #000;
}

.ngo_databases [ngo-item].running span:before {
	content: "\f110";
	animation:fa-spin 2s infinite linear;
}

.dashboard_icon_internal {
	position: relative;
	padding: 10px;
	text-align: center;
	transition: background-color 0.25s;
}

.dashboard_icon_internal {
	color: #101010;
	position: relative;
	border: 1px solid #C8C8C8;
	border-bottom: 3px solid #C8C8C8;
	border-radius: 5px;
	display: block;
	width: 100%;
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	align-items: center;
	gap: 20px;
	padding: 5px 10px 5px 10px;
	height: 120px;
	font-size: 16px;
	background: #fafafa;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, .1);
	transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.dashboard_icon_internal:hover {
	color: #404040;
	background: #eee;
	border-color: #B1B1B1;
}

.dashboard_icon_internal span {
	flex-grow: 1;
	display: block;
	font-size: 60px;
	color: #606060;
	text-align: left;
}

.number_card {
	display: flex;
	flex-direction: column;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #eee;
	box-shadow: 2px 2px 12px rgba(0,0,0,.02);
	text-align: center;
	height: 100%;
	background-color: #fff;
}

.number_card b {
	display: block;
	margin-top: 10px;
	font-size: 22px;
}