.example-fixed-controls {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: black;
	z-index: 9;
	padding: 1.5rem 2rem 1.5rem 1.5rem;
	display: grid;
	grid-template-columns: auto 4rem 1fr;
	align-items: center;
	gap: 1.5rem;
}

.example-fixed-icon {
	width: 3rem;
	height: 3rem;
	cursor: pointer;
}

.icon_play__svg {
	vertical-align: top;
	width: 100%;
}

.icon_pause__svg {
	display: block;
	position: absolute;
	width: 3rem;
	height: 3rem;
	opacity: 0;
}

.example-fixed-icon.jouele-is-playing .icon_pause__svg {
	opacity: 1;
	fill: #fff;
}

.example-fixed-icon.jouele-is-playing .icon_pause__svg:hover {
	opacity: 0.5;
}

.example-fixed-icon__svg path {
	fill: #fff;
	transition: fill 0.16s;
}

.example-fixed-icon:hover .icon_play__svg path {
	fill: white;
	opacity: 0.5;
	transition: none;
}


.example-fixed-icon.jouele-is-playing .icon_play__svg path {
	opacity: 0;
}


.timeline {
	height: 100%;
	width: 100%;
	border-radius: 0.7rem;
	border: 1px solid #777;
	overflow: hidden;
	
}

.example-fixed-bar {
	position: relative;
	height: 100%;
	cursor: pointer;
}

.example-fixed-bar:before {
	content: '';
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: none;
	
}

.example-fixed-bar-elapsed {
	position: absolute;
	bottom: 0;
	height: 100% ;
	background: #222;
	transition: background 0.16s;  
}

.example-fixed-bar-elapsed.jouele-is-playing {
	background: #666;
}

.example-fixed-bar:hover .example-fixed-bar-elapsed {
	background: #777;
	transition: none;
}

.example-fixed-bar-position {
	position: absolute;
	bottom: -2px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	transition: background 0.16s;
	display: none;
}

.example-fixed-bar-position.jouele-is-playing {
	background: #f59331;
}

.example-fixed-bar:hover .example-fixed-bar-position {
	background: #d04000;
	transition: none;
}

.example-fixed-bar-position:before {
	content: '';
	width: 100%;
	height: 100%;
	padding: 2px;
	display: block;
	font-size: 0;
	position: absolute;
	left: -3px;
	top: -3px;
	border: 1px solid #000;
	border-radius: 50%;
	transition: border-color 0.16s linear, opacity 0.16s linear;
	-webkit-animation: preloader-animate .75s ease infinite;
	-moz-animation: preloader-animate .75s ease infinite;
	-o-animation: preloader-animate .75s ease infinite;
	animation: preloader-animate .75s ease infinite;
	display: none\0/;
	/* IE 8 */
	opacity: 0;
}

.example-fixed-bar-position.jouele-is-buffering:before {
	opacity: 1;
	display: block\0/;
	/* IE 8 */
}

.example-fixed-title.jouele-is-buffering {
	-webkit-animation: preloader-animate 1.5s ease infinite;
	-moz-animation: preloader-animate 1.5s ease infinite;
	-o-animation: preloader-animate 1.5s ease infinite;
	animation: preloader-animate 1.5s ease infinite;
}

.example-fixed-bar-position.jouele-is-playing:before {
	border-color: #f59331;
}

.example-fixed-bar:hover .example-fixed-bar-position:before {
	border-color: #d04000;
	transition: none;
}

@-webkit-keyframes preloader-animate {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0.2;
	}

	100% {
		opacity: 1;
	}
}

@-moz-keyframes preloader-animate {
	0% {
		opacity: 1;
	}
	
	50% {
		opacity: 0.2;
	}
	
	100% {
		opacity: 1;
	}
}

@-o-keyframes preloader-animate {
	0% {
		opacity: 1;
	}
	
	50% {
		opacity: 0.2;
	}
	
	100% {
		opacity: 1;
	}
}

@keyframes preloader-animate {
	0% {
		opacity: 1;
	}
	
	50% {
		opacity: 0.2;
	}
	
	100% {
		opacity: 1;
	}
}

.example-fixed-title {
	position: absolute;
	z-index: 100;
	color: white;
	display: flex;
	height: 50%;
	align-items: center;
	padding-left: 1rem;
	font-family: 'Nunito', sans-serif;
	pointer-events: none;
}

.example-fixed-title .active_exercise_info {
	display: inline-block;
}

.example-fixed-time {
	position: absolute;
	z-index: 100;
	right: 0;
	display: flex;
	flex-direction: row;
	gap: 0.5rem;
	height: 50%;
	align-items: center;
	padding-right: 3rem;
	color: white;
	pointer-events: none;
}

.example-fixed-time :first-child {
	opacity: 0.5;
}

@media (max-width: 720px) {
	.example-fixed-time {
		display: none;
	}
	
}