/*

	-- -- -- -- -- -- --
	Training CSS
	-- -- -- -- -- -- --

*/

.lettered {
	list-style-type: upper-alpha;
	margin: 1em 0 0 0;
}

.lettered>li {
	padding: 0.5em 0.5em 0.5em 4em;
	position: relative;
	border: 1px solid transparent;
	border-radius: 0.25em;
	margin: 0;
}

.lettered>li::marker {
	color: transparent;
}

.lettered>li:before {
	background: rgba(0, 0, 0, 0.25);
	content: counter(list-item, upper-alpha);
	border-radius: 0.25em;
	padding: 0.5em 1em;
	text-align: center;
	position: absolute;
	left: 0.5em;
}

.lettered>li:hover {
	border-color: #ddd;
	cursor: pointer;
}

.lettered .counter {
	padding: 0.25em 1em;
	background: #f1f1f1;
	border-radius: 0.25em;
	margin: 0 1em 0 0;
}

.question-number {
	color: #656565;
	font-size: 85%;
	margin-top: 0;
}

.lettered>li.chosen {
	background-color: rgba(92, 192, 215, 0.1);
}

.lettered>li.chosen .counter {
	background-color: blue;
	color: #fff;
}

.incorrect .lettered>li.chosen {
	background-color: rgba(215, 110, 92, 0.1);
}

.incorrect .lettered>li.chosen .counter {
	background-color: red;
}

.correct .lettered>li.chosen {
	background-color: rgba(102, 215, 92, 0.1);
}

.correct .lettered>li.chosen .counter {
	background-color: green;
}

.draggable-placeholder {
	background-color: rgba(234, 237, 175, 0.1);
	padding: 0;
	margin: 0;
	border-radius: 0.25rem;
}

.card.complete {
	border-color: rgb(160, 228, 160);
}

.card-progress .card-title {
	font-weight: bold;
	text-align: center;
}

@keyframes growProgressBar {

	0%,
	33% {
		--pgPercentage: 0;
	}

	100% {
		--pgPercentage: var(--value);
	}
}

@property --pgPercentage {
	syntax: '<number>';
	inherits: false;
	initial-value: 0;
}

.progress-circle {
	--size: 7em;
	--fg: green;
	/*#369;*/
	--bg: #eee;
	--pgPercentage: var(--value);
	animation: growProgressBar 3s 1 forwards;
	width: var(--size);
	height: var(--size);
	margin: 0 auto;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background:
		radial-gradient(closest-side, white 70%, transparent 0 99.9%, white 0),
		conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
	font-size: calc(var(--size) / 5);
	color: var(--fg);
}

.progress-circle::before {
	counter-reset: percentage var(--value);
	content: counter(percentage) '%';
}

.low .progress-circle {
	--fg: red;
}

.medium .progress-circle {
	--fg: orange;
}

.unit .progress-circle {
	--size: 2.5em;
}

.unit .progress-circle::before {
	display: none;
}

.video-container video {
	max-width: 100%;
	max-height: 100%;
}

.cds-168 {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
}

.css-ch7t2i {
	display: flex;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 16px;
	padding-left: 0px;
}

.css-xl5mb3 .timestamp {
	width: 5em;
	min-width: 5em;
}

.css-xl5mb3 .timestamp .btn {
	color: rgb(102, 102, 102);
}

.css-ugczj4 {
	opacity: 1;
}

.css-ugczj4:hover {
	cursor: text;
	background-color: rgb(238, 238, 238);
}

.rc-VideoMiniPlayer.mini .rc-VideoMiniControls,
.rc-VideoMiniPlayer.mini .video-main-player-container {
	right: 10px;
	bottom: 10px;
	padding: 0;
	position: fixed;
	width: 300px;
}

.rc-VideoMiniPlayer.mini .rc-VideoMiniControls {
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	height: 170px;
	z-index: 2002;
	background-color: transparent;
	transition: background-color, opacity 1s cubic-bezier(.23, 1, .32, 1) 0ms;
}

.rc-VideoMiniPlayer.mini .rc-VideoMiniControls:hover {
	opacity: 1;
	-ms-filter: none;
	filter: none;
	background-color: rgba(0, 0, 0, .5);
}

.units ol {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
}

.units li {
	margin: 0;
	padding: 0;
}

.units a {
	text-decoration: none;
	color: #555;
}

.units .asset-name {
	display: block;
	padding: 0.5em 1em;
}

.units .unit-name {
	font-weight: bold;
	padding: 0.75em;
}

.units a:focus,
.units a:hover {
	background-color: #f1f1f1;
	color: #333;
}

.units .unit-asset {
	font-size: 90%;
}

.unit.active {
	border-left: 6px solid #000;
}

.unit-asset.active {
	background-color: #f1f1f1;
}

.unit .progress {
	height: 2px;
}

.unit-asset-wrap {
	-webkit-box-pack: start;
	justify-content: flex-start;
	display: flex;
}

.unit-asset-icon {
	width: 1.75em;
	font-size: 1.25em;
}

.unit-asset-effort {
	font-size: 90%;
}

.progress-container {
	padding: 0.75em 0 0.75em 0.75em;
}