#course-page {
	max-width: 1240px;
	margin: 20px auto;
	padding: 20px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}


/*  Course Header  */

#course-header {
	display: flex;
	align-items: flex-start;
	flex-direction: row;
	margin-top: 20px;
}

#course-header-left {
	width: 50%;
	align-self: center;
	padding-left: 50px;
}

#course-title {
	line-height: 1em;
	font-size: 75px;
	padding-bottom: 15px;
}

#course-length {
	position: relative;
	display: flex;
	width: 100%;
	gap: 20px;
	margin-top: 25px;
}

#course-length p {
	margin-top: 5px;
}

#course-length p > a {
	color: #333;
	text-decoration: underline;
}

#course-description {
	margin-left: 20px;
	margin-right: 20px;
	margin-top: 20px;
	padding: 30px;
	background-color: #F5F5F5;
	border-radius: 20px;
	
}

#course-description > h3 {
	color: #803C37;
	font-weight: 600;
	font-size: 50px;
}



/* Price Information Bar */

#preis-information-icon {
	width: 1em;
	height: 1em;
	position: absolute;
	margin-left: 60px;
}


#preis-information {
	position: absolute;
	opacity: 0;
	margin-bottom: 0px!important;
	font-size: .7em;
	background-color: #DE8E04;
	width: 200px;
	padding: 15px;
	border-radius: 15px;
	color: white;
	transition: all ease-in-out .2s;
	visibility: hidden;
}

#preis-information > p {
	margin-bottom: 0!important;
	
}

.preis-information-holder:hover #preis-information {
	
	margin-top: -9.5em;
	visibility: visible;
	opacity: 1;
}


#video-length {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-weight: 500;
}


#podcast-length {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-weight: 500;
	margin-left: 15px;
}
#course-header-right {
	width: 50%;
	padding-left: 20px;
}



#course-header-right-content-holder {
	position: relative;
}

#info-longterm {
	position: absolute;
	background-color: #DE8E04;
	padding: 15px;
	color: white;
	font-size: 14px;
	border-radius: 15px;
	font-weight: 600;
	width: 100%;
	text-align: center;
	z-index: 99;
}

#info-longterm > u {
	cursor: pointer;
}


#playbutton {
	width: 80px;
	height: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: all ease-in-out .2s;
}

.play-hidden {
	transform: scale(0);
}

.play-show {
	transform: scale(1);
}


#chapter-play-button {
	width: 80px;
	height: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: all ease-in-out .2s;
}




/* Course Content */

#course-content-chapters {
	padding-left: 25px;
	font-size: 50px;
	color: #803C37;
	font-weight: 600;
}

#course-content {
	display: flex;
	justify-content: space-between;
	margin-top: 100px;
}



#course-content-chapterList-Holder {
	width: 35%;
	background: #F5F5F5;
	border-radius: 15px;
	padding: 20px;
	align-self: flex-start;
}

#course-content-chapterList {
	width: 100%;
	max-height: 350px;
	overflow-y: scroll;
	padding: 0px 25px 0px 25px;
	
}


#course-content-chapterList::-webkit-scrollbar {
  width: 10px;
	
}

#course-content-chapterList::-webkit-scrollbar-track {
  background: #FFFFFF;
	border-radius: 100px;
}

#course-content-chapterList::-webkit-scrollbar-thumb {
  background: #BB4E29;
	border-radius: 100px;
}


#course-content-chapterList ul {
	list-style: none;
	padding: 0;
	font-size: 15px;
}

#course-content-chapterList li {
	margin: 15px 0px;
	font-weight: 500;
	background-color: white;
    padding: 15px;
    border-radius: 10px;
	cursor: pointer;
}




#course-content-chapterList li.active {
	color: white;
	background-color: #BB4E29;
}

.show {
	margin-left: 5px;
}


#course-content-media {
	width: 60%;
	padding: 50px;
	background-color: #F5F5F5;
	border-radius: 15px;
	order: 0;
}

.video-chapter-holder {
	position: relative;
	width: 100%;
}


#media-type-title {
	font-size: 40px;
    color: #803C37!important;
    font-weight: 600!important;
}

video {
	border-radius: 15px;
}

#title {

	font-size: 50px;
	color: #803C37;
	font-weight: 600;
	text-align: center;
}


#chapter-info  {
    font-size: 40px;
    color: #803C37;
    font-weight: 600;
}


.chapter-description {
	
	padding:  40px 20px 20px 20px;
	background-color: white;
	border-radius: 20px;
	
}

#podcast-container {
	padding:  20px;
	background-color: white;
	border-radius: 20px;
	margin-bottom: 30px;
}

audio {
	width: 700px;
	max-width: 100%;
}



/* Course Downloads */

#course-downloads {
	margin-top: 30px;
	padding: 25px;
}

#course-downloads > h3 {
	font-size: 50px;
    color: #803C37;
    font-weight: 600;
}

#course-downloads > ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

#course-downloads > ul > li {
	font-weight: 500;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
	pointer-events: none;
	margin-top: 10px;
}



/* Add to cart Buttons */


#add-to-cart-holder {
	margin-top: 25px;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	
	align-items: center;
}

#add-to-cart-holder-left {
	width: 100%;
	padding: 35px;
	background-color: #F5F5F5;
	color: #803C37;
	font-weight: 600;
	border-radius: 25px;
}

#add-to-cart-holder-left > p {
	margin: 0;
	text-align: center;
}


#add-to-cart-holder-right {
	width: 100%;
}

#add-to-cart-list {
	width: 100%;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 15px;
}


#add-to-cart-list > li  {
	border-radius: 20px;
}


#add-to-cart-list > li > a {
	padding: 25px;
	width: 100%;
	background-color: #A1B0AB;
	text-align: center;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#add-to-cart-list > li:nth-child(1) {
	display: none;
	
}


#add-to-cart-holder-left-title1 {
	display: none;
}


#add-to-cart-holder-left-title2 {
	display: inline;
}

#add-to-cart-list > li > a {
	color: white!important;
	text-align: center;
	align-items: center;
}







/* Responsive Layout */

@media(max-width: 768px) {
	
	#course-title {
		font-size: 16vw;
		padding-bottom: 20px;
	}
	
	#course-page {
		padding: 0;
		margin-top: 0px;
	}
	
	#course-header {
		flex-wrap: wrap;
		padding: 15px;
	}
	
	#course-header-left {
		width: 100%;
		padding-left: 20px;
		margin-top: 20px;
	}
	
	#course-header-right {
		width: 100%;
		padding: 0;
		order: 0;
	}
	
	
	#preis-information-icon {
		margin-left: 45px;
	}
	
	#preis-information {
		margin-left: 0em;
		margin-right: 5vw;
	margin-top: -120px;
	}
	
	.preis-information-holder:hover #preis-information {
	margin-top: -100px;

}
	
	
#course-length p > a {
	color: #333;
	text-decoration: underline;
	font-size: 4.2vw!important;
}
	
	
	#add-to-cart-holder {
		flex-direction: column;
		padding: 0px 15px;
		gap: 25px;
		margin-top: 40px;
		margin-bottom: 0px;
		margin-left: 0px;
		margin-right: 0px;
	}
	
	
	#add-to-cart-holder-left {
		width: 100%;
	}
	
	
	#add-to-cart-holder-right {
		width: 100%;
		
	}
	
	#add-to-cart-list {
		flex-direction: column;
		gap: 25px;
	}
	
	#add-to-cart-list > li {
		width: 100%;
	}
	
	
	#course-content {
		margin-top: 50px;
		flex-wrap: wrap;
		padding: 0px 15px;
	}
	
	#course-content-chapterList-Holder {
		width: 100%;
		font-size: 4vw;
		margin-top: 15px;
		order: 1;
		padding: 10px;
	}
	
	
	#course-content-media {
		margin-top: 25px;
		width: 100%;
		padding: 40px 20px;
		order: 0;
	}
	
	
	#add-to-cart-holder {
	justify-content: center;
}


#gutschein-link  {
	font-size: 14px;
	font-weight: 600;
	margin-top: 15px;
}

	#title {
		margin-bottom: 25px;
	}
	
	
	
}





/* Video Player Styling */



video::-webkit-media-controls-play-button {
    background-color: #DE8E04;
    border-radius: 150px;
    margin-right: 10px;
    margin-left: 10px;
}






video::-webkit-media-controls-current-time-display {
  color: white;
  font-weight: 700;
}

video::-webkit-media-controls-time-remaining-display {
  color: white;
  font-weight: 700;
}



video::-webkit-media-controls-timeline {
  background-color: #DE8E04;
  padding-bottom: 0;
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 15px;
  border-radius: 100px:
}


video::-webkit-media-controls-mute-button {
  background-color: #DE8E04;
    border-radius: 150px;
  
}


video::-webkit-media-controls-volume-slider {
  background-color: #DE8E04;
  padding-top: 0;
  margin-top: 20px;

  padding-bottom: 0;
  
}


video::-webkit-media-controls-fullscreen-button {
background-color: #DE8E04;
    border-radius: 150px;
    margin-right: -10px;
    margin-left: 10px;
}



/* Audio Player Styling */


audio::-webkit-media-controls-play-button {
    background-color: #DFE6E4;
    border-radius: 150px;
    margin-right: 10px;
    margin-left: 10px;
}


audio::-webkit-media-controls-current-time-display {
  color: #BB4E29;
  font-weight: 700;
}

audio::-webkit-media-controls-time-remaining-display {
  color: #BB4E29;
  font-weight: 700;
}

audio::-webkit-media-controls-mute-button {
  background-color: #DFE6E4;
    border-radius: 150px;
  
}


audio::-webkit-media-controls-volume-slider {
  background-color: #DFE6E4;
  padding-top: 0;
margin-top: 15px;
  padding-bottom: 0;
  
}


.hide-element {
	visibility: hidden!important;
}



/* Wiederholung Video */

#chapter-repeat {
	display: flex;
	justify-content: center;
	margin-top: 25px;
}

#repeater-video {
	position: fixed;
	width: 100vw;
	height: 100vh;
	left: 0;
	top: 0;
	background-color: #BB4E29;
	z-index: 9999;
	justify-content: center;
	align-items: center;
	display: none;
}

#repeater-video video {
	height: 90vh;
	width: auto;
}

#repeat-video-close {

	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 50px;
	background-color: #DE8E04;
	color: #fff;
	cursor: pointer;
}

#repeat-video-trigger {
	background-color: #DE8E04;
	color: #fff;
	cursor: pointer;
}

.show-wiederholung-container {
	display: flex!important;
}


.hiderepeat {
	display: none!important;
}