.bg-modal-dialog-overlay {
	background-color: rgb(102, 102, 102);
	opacity: 0.5;
	height: 100%;
	width: 100%;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	position: fixed;
	z-index: 100;
}

.bg-modal-dialog-overlay.opaque {
	background: #7f7f7f;
	opacity: 1;
}

.bg-dialog-root {
	background-color: rgb(238, 238, 238);
	border-radius: 3px;
	color: rgb(95, 96, 98);
	font-size: 12px;
	outline-color: rgb(95, 96, 98);
	padding: 3px;
	z-index: 100;
	position: fixed;
	top: 50%;
	left: 50%;
	max-width: 680px;
	min-width: 330px;
	width: 680px;
	height: 400px;
	transform: translateX(-50%) translateY(-50%);
}

.bg-dialog-content {
	border-color: rgb(95, 96, 98);
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	color: rgb(95, 96, 98);
	font-family: Arial, Helvetica, sans-serif;
	font-size: large;
	width: auto;
	height: 381px;
	min-height: 0;
	max-height: none;
	outline-color: rgb(95, 96, 98);
	overflow-x: auto;
	overflow-y: auto;
	padding: 16px;
	position: relative;
	text-decoration: none solid rgb(95, 96, 98);
}

.bg-dialog-content b {
	font-size: larger;
}

.bg-dialog-content ol {
	text-align: left;
}

.bg-dialog-content button {
	margin-right: 8px;
	background-color: #ff5500;
	border: 1px solid #505153;
	color: white;
	border-radius: 7px;
}

@keyframes bg-progress-bar-indeterminate-anim {
	0% {
		left: -35%;
		right: 100%;
	}
	60% {
		left: 100%;
		right: -90%;
	}
	100% {
		left: 100%;
		right: -90%;
	}
}

@keyframes bg-progress-bar-indeterminate-anim-short {
	0% {
		left: -200%;
		right: 100%;
	}
	60% {
		left: 107%;
		right: -8%;
	}
	100% {
		left: 107%;
		right: -8%;
	}
}

.bg-progress-bar {
	border: 0 none;
	height: 24px;
	background-color: #FFD4BF;
	border-radius: 3px;
	position: relative;
	overflow: hidden;
	padding: 10px;
	text-align: center;
	margin: 0 auto;
	width: 500px;
}

.bg-progress-bar .bg-progress-bar-indeterminate-container .bg-progress-bar-value {
	border: 0 none;
	margin: 0;
	background-color: #FFD4BF;
}

.bg-progress-bar .bg-progress-bar-indeterminate-container .bg-progress-bar-value:before {
	content: "";
	position: absolute;
	background-color: #FF5500;
	top: 0;
	left: 0;
	bottom: 0;
	will-change: left,right;
	animation: bg-progress-bar-indeterminate-anim 2.1s cubic-bezier(.65,.815,.735,.395) infinite;
}

.bg-progress-bar .bg-progress-bar-indeterminate-container .bg-progress-bar-value:after {
	content: "";
	position: absolute;
	background-color: #FF5500;
	top: 0;
	left: 0;
	bottom: 0;
	will-change: left,right;
	animation: bg-progress-bar-indeterminate-anim-short 2.1s cubic-bezier(.165,.84,.44,1) infinite;
	animation-delay: 1.15s;
}

.bg-instructions-container {
	width: 100%;
	height: 95%;
	border: none;
}
