/**
  Pie Chart
*/
div.circle {
	vertical-align: text-top;
	position: relative;
	display: inline-block;
	background-color: white;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	z-index: 0;
}
div.circle > .inner_circle {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	z-index: 30;
	box-sizing: border-box;
}
div.circle > .left {
	display: inline-block;
	width: 50%;
	height: 100%;
	border-bottom-left-radius: 100% 50%;
	border-top-left-radius: 100% 50%;
	transform-origin: 100% 50%;
	z-index: 20;
	box-sizing: border-box;
}
div.circle > .right {
	display: inline-block;
	width: 50%;
	height: 100%;
	border-bottom-right-radius: 100% 50%;
	border-top-right-radius: 100% 50%;
	z-index: 20;
	transform-origin: 0 50%;
	box-sizing: border-box;
}
/**
  Progress bar
*/
.outer_progress {
	width: 75px;
	height: 20px;
	color: #43A047;
	background-color: white;
	border: solid 1px lightgray;
	border-radius: 4px;
	overflow: hidden;
}
.outer_progress._thin {
	height: 8px;
}
.inner_progress {
	vertical-align: top;
	height: 100%;
	background-color: currentColor;
	overflow: hidden;
}
/**
  Number Format
 */
.number-format::after {
	content: attr(data-appendix);
}
.number-format > span:not(:first-child):not(._fraction)::before {
	content: ' ';
}
.number-fraction-less .number-format > ._fraction {
	opacity: 0.6;
	font-size: 0.8em;
}
/**
  Date Time Picker
 */
.datepicker {
	background: #fff url(../img/bcg-dp.png) no-repeat right center;
	padding-right: 20px;
	width: 74px;
}
.datepicker-weekday-2 {
	color: #f00 !important;
}
.datepicker-holiday {
	color: #f00 !important;
	font-weight: bold;
}
.timepicker {
	width: 38px;
}

.confirm-button-group {
	display: flex;
	gap: 8px;
	margin-top: 16px;
	justify-content: center;
}