/* Curriculum Section wrapper elements */
#course-sections {
	position: relative;
	z-index: 1;
}
.course {
	min-width: 400px;
}

.course-section {
	width: 100%;
	margin: 0;
	border-top: 1px rgba(255,255,255,0.15) solid;
	padding: 0;
	/* box-shadow: 2px 2px 6px rgba(0,0,0,0.1); */
	overflow: hidden;
	transition: 0.5s all;
	box-sizing: border-box;
}
.course-section.open {
	background: rgba(0,0,0,0.2);	
	max-height: fit-content;
}
.course-section:last-of-type {
	border-bottom: 1px dotted rgba(58, 89, 92);
	box-shadow: 0 13px 13px rgba(0, 0, 0, 0.05);
}
.course-section.closed {
	max-height: 64px;
	margin-bottom: 0;
	padding: 0;
}

.course-section > h2 {
	margin-top: 0 !important;
}
.course-section .headline-wrap {
    cursor: pointer;
    padding: 0 50px;
    background: rgba(0, 0, 0, 0.5);
    transition: 0.3s all;
    margin: 0 auto;
    height: 66px;
    align-items: center;
    display: flex;
}

.course-section .video {
    max-width: 94%;
    margin: 0 auto;
	position: relative;
}

.course-section.dim {
	opacity: 0.1;	
}

.course-section.dim:hover {
	opacity: 0.5;	
}

.course-section.open .headline-wrap {
	background: rgba(58, 89, 92, 0.3);	
}

.course-section .headline-wrap:hover {
	background: rgba(58, 89, 92, 0.3);
}
.course-section .headline-wrap h2 {
	text-align: left;
    margin: 0 0 0 20px;
    transition: 0.3s all;
    overflow: hidden;
    position: relative;
    max-height: 55px;
    font-family: museo-sans, sans-serif;
    font-weight: 300;
    color: white;
    flex-grow: 1;
    align-items: center;
    display: flex;
}
.course-section .headline-wrap > .innerwrap {
	max-width: 840px;
    width: 100%;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
	transition: 0.3s all;
}

.course-section .headline-wrap h2 span.title {
	max-height: 100%;
	opacity: 1;
	font-size: 23px;
}

.course-section .headline-wrap h2 span.subtitle {
	font-family: 'museo-sans';
	font-weight: 300;
	font-size: 17px;
	color: rgba(255,255,255,0.3);
	font-style: italic;
	vertical-align: 3px;
	border-left: 1px dotted rgba(160, 160, 160, 0.8);
	padding-left: 15px;
	opacity: 0;
	transition: 0.5s all;
	clear: left;
	margin-left: 17px;
}

.course-section .headline-wrap:hover h2 span.subtitle {
	opacity: 1;
}

.course-section.open .headline-wrap h2 span.title {
	color: white;
}

.course-section .headline-wrap h2 span.time {
	opacity: 0;
	font-size: 12px;
	padding: 4px 8px;
	color: white;
	background-color: rgb(58, 89, 92);
	border-radius: 4px;
	display: inline-block;
	margin-left: 12px;
	vertical-align: 5px;
	transition: 0.4s all;
	box-shadow: 2px 2px 8px rgba(0,0,0,0.05);
	font-weight: 900;
}

.course-section .headline-wrap:hover h2 span.time {
	opacity: 1;
	transition: 0.4s all;
}

.course-section .headline-wrap h2 span.time::before {
	font-family: "Font Awesome 5 Free";
	content: '\f017';
	font-size: 14px;
	margin-right: 5px;
	vertical-align: -1px;
}

.course-section.open .headline-wrap h2 span.time {
	color: rgb(58, 89, 92);
	background-color: white;
	opacity: 0;
}

.course-section .headline-wrap .number {
    border-radius: 50%;
    background-color: rgba(58, 89, 92);
    color: white;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    height: 36px;
    width: 36px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 1px 0 0 0;
    margin: 0;
    float: left;
    font-family: 'museo';
    transition: 0.5s all;
    font-weight: 900;
	flex-shrink: 0;
}

.course-section.open .headline-wrap .number {
	background-color: #ffc50f;
	color: rgba(58, 89, 92);
}

.course-section .headline-wrap h2::after {
	position: absolute;
    right: 0px;
    border-radius: 120px;
    transition: 0.4s all;
    border: 1px dotted silver;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    font-family: "Font Awesome 5 Free";
    overflow: hidden;
    line-height: 32px;
	font-size: 23px;
	height: 28px;
	color: rgba(255,255,255,0.7);
	font-stretch: semi-expanded;
    font-weight: 900;
    width: 28px;
    align-items: center;
    justify-content: center;
}

.course-section.locked .headline-wrap h2::after {
	opacity: 1;
}

.course-section .headline-wrap:hover h2::after {
	opacity: 1;
}

.course-section.open .headline-wrap h2::after {
	content: '\f0d8'; /* Arrow up / Padlock unlocking */
}

.course-section.closed .headline-wrap h2::after {
	content: '\f0d7'; /* Arrow down / Padlock open */
}

.course-section.closed.locked .headline-wrap h2::after {
	content: '\f023'; /* Closed padlock */
	font-size: 16px;
	padding: 7px 14px 1px 12px;
	height: 30px;
}

.course-section.open .headline-wrap h2 .toggle {
	background: white;
	color: rgba(58, 89, 92, 0.85) !important;
	transition: 0.4s all;
}

.course-section .headline-wrap h2 .toggle:hover {
	opacity: 1;
	transition: 0.4s all;
}

.course-section.open .headline-wrap h2 span.subtitle {
	color: rgba(255, 255, 255, 0.5);
	opacity: 1;
}

.course-section .lesson:last-of-type {
	margin-bottom: 0 !important;
	border: none;
}

.course-section.locked .headline-wrap, .course-section.locked .lesson {
	opacity: 0.2;
	filter: saturate(0.3);
	pointer-events: none;
}

#ryit-popup.forge_video .innerwrap {
	padding: 0;
	max-width: 100%;
	border: 9px solid white;
	border-bottom: 0;
}

#ryit-popup.forge_video .innerwrap iframe {
	max-width: 100%;
	border-radius: 10px;
}

#ryit-popup.forge_video a.close {
	top: -15px;
	right: -15px;
}

/* Curriculum Segment wrapper element */
.lesson {
	clear: both;
	margin-bottom: 50px;
	border-bottom: 1px solid rgba(255,255,255,0.15);
	padding: 50px 0px 60px 0px;
	margin: 0 auto !important;
	max-width: 1000px;
	position: relative;
}

.course-section.multiple-lessons .lesson {
	padding-top: 0;
    max-height: 28px;
    overflow: hidden;
	transition: 0.3s all;
}

.course-section.multiple-lessons .lesson.dim {
	opacity: 0.17;	
}

.course-section.multiple-lessons .lesson.dim:hover {
	opacity: 0.5;	
}

.course-section.multiple-lessons .lesson > .headline-wrap:hover {
	background: rgba(0,0,0,0.3) !important;	
	cursor: pointer;
}

.course-section.multiple-lessons .lesson.completed > .headline-wrap i {
	position: absolute;
    right: 1px;
    border-radius: 120px;
    transition: 0.4s all;
    border: 1px dotted silver;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    font-family: "Font Awesome 5 Free";
    overflow: hidden;
    line-height: 32px;
    font-size: 15px;
    height: 28px;
    color: #2ae52a;
    font-stretch: semi-expanded;
    font-weight: 900;
    width: 28px;
    align-items: center;
    justify-content: center;
}

.course-section.multiple-lessons .lesson.open {
	padding-top: 0;
    max-height: fit-content;
    overflow: hidden;
	padding-bottom: 50px !important;
}

.lesson .col-left {
	width: 100%;
	float: left;
	margin-bottom: 40px;
}

.lesson .col-left:empty {
	display: none;
} 

.lesson .col-right {
	padding-top: 0;
    flex-direction: column;
    display: flex;
    width: 100%;
    max-width: 740px;
    margin: 0 auto 0;
    justify-content: center;
}

.lesson .col-right .text {
	padding: 20px;
	border-radius: 20px;
}

.lesson .col-right .text, .lesson .col-right .text h2 {
	color: white;
	flex-grow: 1;
	flex-flow: column;
	display: flex;
}

.lesson .col-right .text img {
	margin: 10px 0 30px 0;	
}

.lesson hr {
	width: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 0;
	margin: 40px auto;
}

.lesson .col-right .text img.bleed {
	max-width: 98vw;
	padding: 0 20px;
	margin: 0 -90px 20px;
}

.lesson .col-right .text h2 {
	font-family: "museo", sans-serif;
    font-size: 24px;
    text-align: center;
    color: white;
    margin: 42px 0 20px 0;
    display: table;
    background: rgba(58, 89, 92, 0.5);
    width: auto;
    border-radius: 2px;
    padding: 10px;
	font-weight: 500;
}

.lesson .text h4 {
	line-height: 1.2;
    color: white;
    font-style: italic;
    font-family: 'museo';
    font-weight: 300;
}

.lesson .text a {
	color: #fac100;
	text-decoration: none;
}

.lesson .text a:hover {
	text-decoration: underline;	
}

.lesson .col-right .text h2 a {
	color: #fac100;
}

.lesson .col-right .text h3, .lesson .col-right .text h4 {
	font-family: "museo", sans-serif;
    font-size: 22px;
    color: #fac100;
    font-weight: 700;
    margin: 1em 0 0.3em 0;
	line-height: 1.5em !important;
}

.lesson .col-right .text h4 {
	font-size: 18px;
	font-style: normal;
}

.lesson .col-right .text h3 + ul {
	margin-top: 10px;
}

.lesson .col-right .text h4 + ul {
	margin-top: 5px;	
}

.lesson .col-right .text ul {
	margin-bottom: 1.25em;	
}

.lesson .text p, .lesson .text li {
	font-size: 20px;	
	font-family: museo, sans-serif;
	color: #fdfef4;
}

.lesson .text .button a {
    margin: 10px auto;
    padding: 12px 30px;
    border-radius: 6px;
    background: #fac100;
    color: black;
    font-weight: 600;
	transition: 0.3s all;
	display: table;
}

.lesson .text .button a:hover {
	transform: scale(0.97);
}

.lesson .text blockquote {
    color: rgba(255, 255, 255, 0.7);
    font-family: georgia, sans-serif;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 20px;
    margin: 10px 0 30px;
    font-size: 18px;
    line-height: 1.6em;
}

.lesson.closed {
	max-height: 64px;
	overflow: hidden;
}

.lesson > .headline-wrap {
	margin-bottom: 40px;
	display: flex;
    align-items: center;
	background: none !important;
}

.lesson > .headline-wrap .number {
	background: transparent !important;
    border: 1px dashed rgba(255,255,255,0.5);
	color: white !important;
	font-weight: 400;
	text-transform: lowercase;
	font-size: 17px;
    line-height: 32px;
}

.lesson > .headline-wrap h3 {
	color: rgb(255 247 247 / 90%);
    font-family: museo, sans-serif;
    margin: 0;
    padding: 17px 0 17px 22px;
    font-weight: 500;
	font-size: 21px !important;
}

.lesson iframe {
	background: black;
	box-shadow: 2px 2px 15px rgba(250,193,0,0.1);
	margin: 0 auto;
	display: block;
	width: 98%;
	height: 513px;
}

.course-section .lesson .time {
	background: white;
	color: #3a595c;
	margin: 30px 0 0 0;
	float: left;
	padding: 5px 15px 2px 50px;
	border-radius: 0 8px 0 8px;
	position: absolute;
	font-weight: bold;
	border: 1px solid;
	bottom: 0;
	z-index: 100;
	left: 0;
	transition: 0.4s all;
	max-height: 0;
	opacity: 0;
	font-size: 15px;
}
.course-section.multi-segment .lesson .time {
	max-height: 50px;
	opacity: 1;
}

.course-section:not(.multiple-lessons) .lesson > .headline-wrap {
	display: none;	
}

.course-section .lesson .time::before {
	font-family: "Font Awesome 5 Free";
	content: '\f017';
	font-size: 14px;
	margin-right: 5px;
	vertical-align: -2px;
	background: #3a595c;
	padding: 5px 10px 9px 10px;
	position: absolute;
	top: 0;
	left: -1px;
	height: 15px;
	border-radius: 0 0 0 8px;
	bottom: 0;
	color: white;
	z-index: 10;
}

/*.course-section.spark .col-left .content-wrap .content {*/
.course-section .col-left .content-wrap .content {
	top: 50%;
	left: 50%;
	position: absolute;
	transform: translateY(-50%) translateX(-50%);
	max-width: 85%;
	overflow: hidden;
	width: 100%;
}
.course-section .symbol-wrap {
	padding: 20px;
	width: 100%;
	height: 90px;
	position: relative;
	margin-bottom: 25px;
}
.course-section .symbol-wrap .symbol {
	display: block;
	width: 80px;
	height: 80px;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	left: 10px;
	transform: translateX(-50%);
	filter: drop-shadow(5px 5px 5px #222);
	top: -30px;
}
.course-section.spark .symbol-wrap .symbol {
	background-image: url(../images/forge-section-symbol-spark.png);
}
.course-section.flame .symbol-wrap .symbol {
	background-image: url(../images/forge-section-symbol-flame.png);
}
.course-section .col-left h3 {
	margin: 0 0 0 0px;
	background: rgba(255, 255, 255, 0.7);
	font-size: 18px;
	padding: 12px 10px 7px 13px;
	font-family: fira-sans;
	text-transform: capitalize;
	line-height: 16px;
	text-align: center;
	border-radius: 4px 4px 0 0;
}
.course-section .col-left h2 {
	font-size: 21px;
	color: white;
	background: rgba(0, 0, 0, 0.4);
	padding: 10px;
	vertical-align: middle;
	margin: 0;
	text-align: center;
	border-radius: 0 0 6px 6px;
}
.course-section .col-left .fusion-button.simple {
	width: 100%;
}

/* Curriculum Right Column (image box etc) */
.course-section .col-right h2 {
	margin: 0 0 20px 0;
}
.course-section .col-right .wp-playlist {
	margin-bottom: 0;
}
.course-section .col-right .text p:first-of-type {
	font-weight: bold;
	font-size: 22px;
	line-height: 1.6em;
}
@media all and (min-width: 600px) {
	/*
	.course-section .col-right .text p:first-of-type {
		margin-left: 55px;
	}

	.course-section .col-right .text p:first-of-type::first-letter {
		display: inline-block;
		background: rgba(58, 89, 92, 0.85) !important;
		color: white;
		padding: 7px 15px 5px;
		border-radius: 6px;
		box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
		font-size: 1.75em;
		margin: 0 10px 15px -55px;
		width: 60px;
		line-height: 35px;
		box-sizing: content-box;
		float: left;
		border: 1px solid rgba(255,255,255,0.3);
		font-family: museo, sans-serif;
		font-weight: 800;
	} */
}
/************************************************/
/*** Complete section Checkbox and howto text ***/
/************************************************/

.lesson .checklist {
	padding: 0;
	list-style: none;
	margin-top: 20px;
	float: left;
	clear: both;
	box-shadow: 3px 4px 20px 4px rgba(0,0,0,0.2);
	border-radius: 6px;
}

.checklist li.complete {
	position: relative;
	background: rgba(0, 0, 0, 0.3);
	padding: 0;
	border-radius: 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
	border-right: 1px dashed rgba(255,255,255,0.2);
	border-bottom: none;
	margin-top: 0;
	float: left;
	width: 100%;
	overflow: hidden;
	color: white;
}

.checklist li.complete:first-of-type {
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	border-top-style: solid;
}

.checklist li.complete:last-of-type {
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.checklist li.complete div {
	min-height: 41px;
    padding: 8px 8px 8px 15px;
    margin: 2px 0 0 46px;
	font-style: italic;
	color: rgba(255,255,255,0.6);
	font-size: 17px;
}

.checklist li.complete p {
	font-size: 13px;
	font-weight: normal !important;
	margin: 3px 0 10px 25px;
}


.checklist li.complete::before {
    font-family: "font awesome 5 free";
    font-weight: 900;
    position: absolute;
    right: 1.5px;
    top: 1px;
    border-radius: 0 4px 4px 0;
    background: rgba(58, 89, 92, 0.6);
    padding: 2px 8px;
    height: 41px;
    display: flex;
    align-items: center;
    width: 28px;
    justify-content: center;
}

.checklist li.complete.watch::before {
	content: "\f06e";	
}

.checklist li.complete.question::before {
	content: "\f128";	
}

.checklist li.complete.reflect::before {
	content: "\f5dc";	
}

.checklist li.complete.plan::before {
	content: "\f303";	
}

.checklist li.complete.check::before {
	content: "\f058";	
}

.lesson .complete_howto strong {
	/*background: rgba(58, 89, 92, 0.85);*/
	color: white;
	padding: 5px 5px 2px 5px;
	display: inline-block;
	border-radius: 3px;
	float: right;
	margin: 0px -2px 0 10px;
	min-width: 45px;
	text-align: center;
	font-size: 13px;
}
.lesson .complete_howto.study strong {
	background-color: #ffc50f;
}
.lesson .complete_howto.shift strong {
	background-color: #ff7f00;
}
.lesson .complete_howto.store strong {
	background-color: #c82709;
}
.lesson .complete_howto.share strong {
	background-color: #3a595c;
}
.lesson .complete_howto p:last-child {
	margin-bottom: 0;
}
.lesson label {
	display: table;
	position: absolute;
	padding-left: 0;
	margin: 0 5px 15px 0;
	cursor: pointer;
	font-size: 16px;
	padding: 10px 0 9px 25px;
	color: rgba(50, 90, 100, 0.5);
	font-style: italic;
	background: rgba(58, 89, 92, 0.6);
	transition: 0.5s all;
	transform: translateY(-50%);
	transform-origin: 0 50%;
	top: 50%;
	height: 100%;
}

.lesson label input[type=checkbox] {
	visibility: hidden;
}

/* Creating a custom checkbox based on demand */
.lesson label .style {
    position: absolute;
    top: 50%;
    left: 7px;
    height: 30px;
    width: 30px;);
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.25);
    transition: 0.5s all;
    overflow: hidden;
    transform: translateY(-50%);
    display: block;
	background: rgba(0,0,0,0.2);
	box-shadow: 1px 1px 7px rgba(0,0,0,0.2) inset;
}

/* Checkbox loading indicator */
.lesson label .style::before, .lesson label .style::after {
	opacity: 0;
	transition: 0.5s all;
	content: '';
	width: 9px;
	height: 9px;
	border: 4px solid rgba(78, 109, 112, 0.85);
	border-bottom-color: rgba(108, 149, 142, 1);
	display: block;
	left: 5px;
	position: absolute;
}

.lesson label .style::before {
	animation: rotation 1s linear infinite;	
	border-radius: 50%;
	bottom: 0;
}

.lesson label .style::after {
	top: 4px;	
}

.lesson label.updating .style::before {
	opacity: 1;
	transition: 0.5s all;
	bottom: 7px;
}

@keyframes rotation {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* Ensure Complete Challenges text fades in/out */
.lesson label input ~ .message {
	transition: 0.5s all;
}

/* Specify the background color to be shown when hovering over checkbox */
.lesson label:hover input ~ .style {
	background-color: rgba(50, 90, 100, 0.3);
}

.lesson label input.checked::after ~ .style {
	opacity: 1;
    transition: 0.5s all;
    bottom: 7px;
}

/* Specify the background color to be shown when checkbox is active */
.lesson label input:active ~ .style {
	background-color: white;
}

/* Specify the background color to be shown when checkbox is checked */
.lesson label input:checked ~ .style {
	background-color: rgba(50, 90, 100, 1);
}


/* Display checkmark when checked */
.lesson label input:checked ~ .style::after {
	display: block;
	opacity: 1;
}

/* Make checkbox text stronger when checked */
.lesson label input:checked ~ .message {
	color: rgba(50, 90, 100, 1);
	transition: 0.5s all;
}

.lesson label .style::after {
	left: 9px;
    bottom: 8px;
    width: 6px;
    height: 12px;
    opacity: 0;
    border: 2px solid white;
    border-width: 0 4px 4px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: 0.5s all;
    z-index: 100;
}

.lesson input.checked .style::after {
	opacity: 1;
	transition: 0.5s all;
	border-color: white;
	bottom: 7px;
}

#stage-time-estimate {
	position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(58, 89, 92);
    padding: 5px 20px 5px;
    z-index: 0;
    color: white;
    border: 1px dotted rgba(255, 255, 255, 0.2);
    bottom: -65px;
    font-size: 15px;
    transition: 0.5s all;
    border-radius: 4px;
    font-weight: 300;
    display: flex;
    align-items: center;
    box-shadow: 1px 1px 3px rgba(58, 89, 92, 0.4);
    justify-content: center;
	z-index: 10;
}

#stage-time-estimate #progress-bar {
	width: 0;
	height: 100%;
	background: rgba(255,255,255,0.2);
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	content: "";
	display: block;
	transition: 0.5s all;
}

#stage-time-estimate::before {
	width: 1px;
    height: 27px;
    border-left: 1px dashed rgba(255, 255, 255, 0.2);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    display: block;
    bottom: 37px;
}

#stage-time-estimate .innerwrap {
	max-width: 1000px;	
}
/*
#stage-time-estimate::before {
	width: 1px;
	height: 20px;
	border: 1px solid white;			
} */

#stage-time-estimate:hover {
	opacity: 1;
	transition: 0.5s all;
	cursor: default;
}

#stage-time-estimate span {
	margin-right: 6px;
	font-weight: normal;
}