#videoPlayer {
	width: 800px;
}

.update-section {
	background: #fff;
	padding: 120px 15%;
}

.update-header {
	text-align: center;
}

.update-container {
	display: flex;
	gap: 20px;
	margin: 40px 0;
	align-items: anchor-center;
}

.update-image {
	width: 500px;
}

.update-body-heading {
	margin-bottom: 20px;
}

.try-btn {
	color: #fff;
	padding: 10px 20px;
	box-sizing: border-box;
	display: block;
	width: fit-content;
	border-radius: 20px;
	line-height: 20px;
	margin: 0 auto;
}

.try-btn:hover {
	color: #fff;
}

.title-section {
	margin-top: 44px;
	position: relative;
}
.title-box {
	display: flex;
	padding: 10px;
	gap: 10px;
	position: relative;
	z-index: 1;
	flex-direction: column;
}
.title-section:after {
	content: "";
	position: absolute;
	background: linear-gradient(0deg, #dc575700 80px, #68819c1f 81px), linear-gradient(90deg, transparent 80px, #68819c1f 81px) #efefef;
	display: flex;
	padding: 120px 20%;
	background-size: 81px 81px;
	background-position: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.title-box>div {
	flex: 1;
}
.image-box {
	border-radius: 5px;
	overflow: hidden;
	background: #bcbcbc;
	aspect-ratio: 16 / 9;
}
.title-text-box {
	display: flex;
	flex-direction: column;
	align-self: center;
}

.title {
	text-align: center;
	font-size: 44px;
	border-bottom: 3px solid var(--mainColor);
	width: fit-content;
	margin: 0 auto 12px;
	color: #404040;
	font-family: Impact, "Arial Black", Arial, sans-serif;
	transform: scaleX(0.9);
}

.title-explanation {
	text-align: center;
}
.text-box {
	display: flex;
	flex-direction: column;
	align-self: center;
}

.system-section {
	max-width: 100%;
	position: relative;
}
.system-section:after {
	content: "";
	position: absolute;
	background: linear-gradient(0deg, #dc575700 80px, #68819c1f 81px), linear-gradient(90deg, transparent 80px, #68819c1f 81px) #efefef;
	display: flex;
	padding: 120px 20%;
	background-size: 81px 81px;
	background-position: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.system-box {
	text-align: center;
	display: flex;
	width: 100%;
	justify-content: center;
	gap: 5px;
	padding: 0;
	flex-direction: column;
	height: auto;
}

.system-box-left {
	width: 100%;
	position: relative;
	overflow: hidden;
	height: calc(100vh - 50px - 5px - 5px);
}

.video-box {
	width: 100%;
	height: 100%;
	background: #404040;
}
.system-box-right {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 0 5px;
	overflow-y: scroll;
}

.videoPlayer-dimensions {
	width: 100%;
	height: 100%;
	min-height: 600px;
}

.variables span {
	color: #eee;
	font-size: 24px;
}

.controls {
	display: none;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
}

.sp-control {
	display: flex;
	padding: 0 5px;
}

.control {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	flex: 1;
	justify-content: center;
	gap: 2px;
}
.control-button {
	flex: none;
	height: 50px;
	font-size: 36px;
	border-radius: 5px;
	width: calc((100% - 2px * 3) / 4);
	outline: none;
	background: radial-gradient(circle, #7affff 0%, #14dcdcff 100%);
	color: #fff;
	position: relative;
	transition: background-color .1s ease;
	border: 1px solid var(--borderColor);
}
.control-button:after {
	width: 100%;
	height: 100%;
	display: flex;
	top: 0;
	left: 0;
	position: absolute;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
	transform: scaleX(0.5);
	color: #fff;
}
.sp-control .control-button {
	flex: 1;
}
.sp-center-btn {
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	margin: 0 5px;
	border-radius: 5px;
	border: 1px solid var(--borderColor);
}
.current-time-box {
	order: -1;
}
.controls-inactive .control-button {
	background: #404040 !important;
}

.controls-inactive .control-button:after {
	color: #fff !important;
}
#leftButton1:after,
#leftButton3:after {
	content: "<";
}

#leftButton2:after {
	content: "<<";
}

#rightButton1:after,
#rightButton3:after {
	content: ">";
}

#rightButton2:after {
	content: ">>";
}

.control-btn-pushed {
	box-shadow: 0px 0px 1px 3px var(--mainColor);
}

.control button:hover {
	opacity: 0.9;
	cursor: pointer;
}

.control input {
	width: 64px;
	height: 64px;
	border-radius: 5px;
	font-size: 24px;
	border: 1px solid;
	text-align: center;
}

.control-row {
	display: flex;
	gap: 10px;
	align-self: center;
	flex-direction: column;
	width: 100%;
	align-items: center;
}

.control-heading {
	width: 100%;
	background: #32324e;
	color: #fff;
	padding: 5px 0;
	box-sizing: border-box;
	border-radius: 5px;
}


.external-url {
	width: 100%;
	border-radius: 2px;
	padding-left: 6px;
	font-size: 16px;
	height: 36px;
	border: none;
	flex: none;
}

.external-url:focus-visible {
	outline: none;
}

.yt-load-btn {
	width: 100%;
	height: 24px;
	line-height: 24px;
	background: #14dcdcff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	border-radius: 4px;
	border-style: outset;
	border: 1px solid #14dcdcff;
	color: #fff;
	margin-top: 4px;
	flex: 1;
}

.yt-load-btn:hover {
	opacity: 0.75;
	cursor: pointer;
}

.empty-space-box {
	flex: 1;
}

.variables-box {
	display: flex;
	gap: 10px;
	justify-content: space-evenly;
	align-items: center;
	width: 100%;
	margin: 0 auto;
	flex-direction: column;
	box-sizing: border-box;
}

.fbfp-box .variable-val {
	width: 42px;
	height: 42px;
	font-size: 21px;
	text-align: center;
	background: var(--mainColor);
	color: #ffffff;
	font-family: system-ui;
	padding: 0;
	border: none;
	box-shadow: none;
	line-height: 42px;
	user-select: none;
	pointer-events: none;
}
.fbfp-box .variable-val:focus {
	border: none;
	color: #fff;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.fbfp-box .variables {
	max-width: 100px;
}

.fbfp-box .range-inner {
	height: 40px;
	display: flex;
	margin: 0px;
	position: relative;
	width: 100%;
}

.fbfp-box .variables-mask {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
}
.fbfp-box .variables-mask>i {
	position: absolute;
	top: 0;
	height: 100%;
	width: 0.5px;
	left: calc(7.5px + (100% - 15px) * var(--i) / 9);
	background: rgba(64, 64, 64, 0.4);
}
.fbfp-box .variable-range {
	margin: 0;
}
.fbfp-box .variable-range:focus, .fbfp-box .variable-range:active, .fbfp-box .variable-range:focus-visible {
	border: none;
	outline: none;
}
.fbfp-box .variable-range-box {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
}

.fbfp-box .intervalBox {
	display: flex;
	gap: 10px;
	width: 100%;
	border: 1px solid var(--borderColor);
	border-radius: 5px;
	padding: 20px 10px 10px;
	margin: -10px 10px 0px;
	box-sizing: border-box;
	background: var(--inputAreaBG);
}

.fbfp-box input[type="range"] {
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	background: transparent;
	cursor: pointer;
	width: 100%;
	z-index: 1;
}

/* Track: Chrome, Safari, Opera, Edge Chromium */
.fbfp-box .variable-range::-webkit-slider-runnable-track {
	background: var(--mainColor);
	width: 100%;
	border-radius: 0px;
	box-shadow: none;
	height: 10px;
	border: none;
}

.fbfp-box input[type=range]:focus::-webkit-slider-runnable-track {
	background: var(--mainColor);
}

/* Thumb: Chrome, Safari, Opera, Edge Chromium */
.fbfp-box .variable-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	height: 30px;
	width: 15px;
	margin-top: 0;
	background-color: #fff;
	border: none;
	top: -10px;
	position: relative;
	border-radius: 0;
	border: 1px solid #404040;
}

.loop-item {
	gap: 10px;
	margin: 0;
	color: #eee;
	display: flex;
	font-size: 22px;
}

.loop-inactive .loop-val {
	opacity: 0.25;
	pointer-events: none;
	user-select: none;
}

.loop-range-inner {
	position: relative;
	flex: 1;
}

.loop-box {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	position: relative;
}

.fbfp-box .current-time {
	width: 100% !important;
	font-size: 36px !important;
	padding: 5px 15px 10px !important;
	font-family: system-ui;
	text-align: center;
	line-height: 36px;
	border: 1px solid var(--borderColor);
}

.loop-header {
	color: #eee;
	font-weight: normal;
	font-size: 24px;
}

.fbfp-box .loop-val {
	background: var(--inputAreaBG);
}
.fbfp-box .loop-val:focus {
	border-style: solid;
	border-color: var(--mainColor);
}
.fbfp-box .loop-btn,
.play-btn {
	width: 100%;
	font-size: 24px;
	padding: 6px 0;
	box-sizing: border-box;
	border-radius: 5px;
	border: 1px solid #000;
	outline: none;
	color: #dfc9f6;
	position: relative;
	transition: background-color 0.1s ease;
}

.fbfp-box .loop-on,
.play-btn {
	background: radial-gradient(circle, #9f69b5 0%, #9535ba 75%, #9f23d1 100%);
}

.fbfp-box .loop-off {
	background: radial-gradient(circle, #55445e 0%, #3e2748 100%);
	border: 2px solid #772c8e;
	box-shadow: 0px 0px 2px 0px #772c8e;
	color: #9c8da3;
}

.fbfp-box .loop-unset {
	border: 1px solid #000;
	background: radial-gradient(circle, #55445e 0%, #3e2748 100%);
	pointer-events: none;
	box-shadow: none;
}

.fbfp-box .loop-on:hover,
.fbfp-box .loop-off:hover,
.fbfp-box .play-btn:hover {
	opacity: 0.9;
	cursor: pointer;
}

.fbfp-box .loop-val:focus-visible {
	outline: none;
}

.fbfp-box .loop-end-error .loop-val {
	background: #ff000026;
	border: 1px solid red;
}

.fbfp-box .variable-fps-box {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
}

.fpsBoxInner {
	display: flex;
	gap: 10px;
	width: 100%;
	border: 1px solid var(--borderColor);
	border-radius: 5px;
	padding: 20px 10px 10px;
	margin: -10px 10px 0px;
	box-sizing: border-box;
	background: var(--inputAreaBG);
}

.fbfp-box .variable-fps {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	border-radius: 4px;
	border-style: outset;
	min-height: 40px;
	border: none;
	font-family: system-ui;
	font-size: 22px;
	padding-bottom: 2px;
	background: #404040;
	color: #fff;
}

.fbfp-box .variable-fps:hover {
	opacity: 0.75;
	cursor: pointer;
}

.fbfp-box .fps-selected {
	color: #fff;
	background: #14dcdc;
}
.control-label {
	z-index: 1;
	line-height: 16px;
	font-size: 16px;
	padding: 0 18px;
	font-weight: 700;
	border: 1px solid #404040;
	height: 28px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	position: relative;
	top: 2px;
	background: #fff;
	color: var(--darkColor);
}
.loop-active .loop-options {
	border: 2px solid var(--mainColor);
}

.loop-active #loopOff {
	background: var(--mainColor);
}

.loop-active #loopOn {
	background: #fff;
}
.loop-inactive .loop-options-box {
	background: #404040;
}
.loop-active .loop-options-box {
	background: var(--mainColor);
}

.loop-btn-box {
	display: flex;
	gap: 5px;
}

.loop-icon {
	width: 64px;
	outline: none;
	transition: background-color .25s ease;
	flex: none !important;
	background: var(--mainColor);
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	color: #fff;
	border-radius: 4px;
	border-style: outset;
	border: none;
	font-family: system-ui;
	font-size: 18px;
}
.loop-inactive .loop-icon {
	background: #d9d9d9;
	user-select: none;
	pointer-events: none;
}

.loop-icon:hover {
	opacity: 0.9;
	cursor: pointer;
}

.loop-item input {
	margin-left: auto;
	font-size: 24px;
	font-family: system-ui;
	text-align: center;
	width: 100%;
	padding: 0 15px;
	user-select: none;
	pointer-events: none;
}

.loop-item span {
	flex: 1;
}

.loop-item input::-webkit-calendar-picker-indicator {
	display: none;
}

.fbfp-box input[type="time"] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.fbfp-box input[type="time"]::-webkit-calendar-picker-indicator {
	display: none;
}

.video-js {
	min-height: 500px !important;
	padding-top: unset !important;
}

#hexPattern {
	filter: contrast(0.25) opacity(0.1) hue-rotate(90deg);
}

#videoPlayer {
	height: 100%;
}

.fbfp-box .system-mask {
	position: absolute;
	width: 100%;
	height: 100%;
	text-align: center;
	z-index: 5;
	background: rgb(36 47 57 / 90%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loader-box {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	width: 100%;
	margin: 0 auto;
	flex-direction: column;
	box-sizing: border-box;
}

.loader-box-inner {
	display: flex;
	gap: 10px;
	width: 100%;
	border: 1px solid var(--borderColor);
	border-radius: 5px;
	padding: 20px 10px 10px;
	margin: -10px 10px 0px;
	box-sizing: border-box;
	flex-direction: column;
	background: var(--inputAreaBG);
}

.loader-upload-box {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.loader-upload-box:hover {
	opacity: 0.75;
	cursor: pointer;
}

.loader-svg {
	margin-bottom: 10px;
}

.loader-ready-heading {
	font-size: 22px;
	color: #fff;
}

.point-section {
	padding: 80px 5px;
	position: relative;

}
.point-section:after {
	content: "";
	position: absolute;
	background: linear-gradient(0deg, #dc575700 80px, #68819c1f 81px), linear-gradient(90deg, transparent 80px, #68819c1f 81px) #ffffff;
	display: flex;
	padding: 120px 20%;
	background-size: 81px 81px;
	background-position: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.point-header {
	text-align: center;
}
.point-header h2, .fps-section h2 {
	text-align: center;
	font-size: 44px;
	border-bottom: 3px solid var(--mainColor);
	width: fit-content;
	margin: 0 auto 12px;
	color: #404040;
	font-family: Impact, "Arial Black", Arial, sans-serif;
	transform: scaleX(.9);
}
.point-header p {
	color: #404040;
}

.points-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 10px;
	margin: 40px auto 0;
	padding: 0;
	max-width: 1600px;
}

.point {
	background: #fff;
	display: flex;
	flex-direction: column;
	border-radius: 5px;
	overflow: hidden;
	border: 1px solid var(--borderColor);
}
.point h3 {
	text-align: center;
	font-weight: 700;
	min-height: 64px;
	line-height: 24px;
	margin-bottom: 0;
	align-content: center;
	font-size: 18px;
	background: #efefef;
}
.point picture {
	display: flex;
	align-self: center;
	width: 100%;
	justify-content: center;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	flex: none;
	padding: 10px;
}
.point picture img {
	width: auto;
	height: 100%;
	align-self: center;
	border-radius: 5px;
}
.point-content {
	padding: 0px;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.point-content p {
	margin: 0;
	padding: 20px;
}
.patreon-link-box-fbf {
	margin-top: auto;
}

.patreon-link-outer-box {
	display: none !important;
}

.patreon-link-inner-box-fbf {
	display: flex;
	text-decoration: none;
	color: #fff;
	padding: 5px;
	height: 40px;
	background: #f86754;
	border-radius: 5px;
	align-items: center;
	gap: 10px;
	justify-content: center;
}

.patreon-link-inner-box-left-fbf {
	flex: none;
}

.patreon-link-inner-box-right-fbf img {
	height: 24px;
	filter: invert(1);
	bottom: -3px;
	position: relative;
}

.patreon-link-text-fbf {
	font-size: 12px;
	margin: 0 !important;
}

.patreon-link-title-fbf {
	font-weight: bold;
}

#scrollup,
#scrollup *,
#scrollup:before {
	display: none !important;
}

.external-url-box {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
}

.loop-options-box {
	height: 32px;
	border-radius: 20px;
	display: flex;
	box-sizing: border-box;
	background: var(--mainColor);
	align-self: center;
}
.loop-options {
	padding: 0px 16px;
	display: flex;
	border-radius: 21px;
	height: 32px;
	align-items: center;
	cursor: pointer;
	user-select: none;
	border: 2px solid #404040;
	box-sizing: border-box;
	font-size: 12px;
	line-height: 32px;
	color: #fff;
}
.loader-options-box {
	height: 42px;
	border-radius: 20px;
	display: flex;
	box-sizing: border-box;
	background: #14dcdcff;
}

.loader-options {
	padding: 3px 15px;
	display: flex;
	border-radius: 21px;
	height: 42px;
	align-items: center;
	cursor: pointer;
	user-select: none;
	border: 2px solid #14dcdcff;
	box-sizing: border-box;
	flex: 1;
	justify-content: center;
	color: #fff;
}

.loader-options-selected {
	background: #fff;
	color: #404040;
}

.fbfp-box .input-container {
	border: 1px dashed #14dcdcff;
	background-color: #14dcdc08;
	color: #404040;
	padding: 0;
	text-align: center;
	border-radius: 10px;
	align-items: center;
	display: flex;
	justify-content: center;
	width: 100%;
	box-sizing: border-box;
	flex: none;
}

.fbfp-box .input-container:before {
	content: "Drop File Here";
	display: block;
	font-size: 16px;
}

.fbfp-box .input-container:hover {
	opacity: 0.5;
	cursor: pointer;
}

.source-select-box {
	height: 64px;
	display: flex;
	flex: none;
}

.empty-space-box {
	flex: 1;
	overflow: hidden;
}

.empty-space-inner {
	white-space: nowrap;
	transform: rotate(15deg);
	top: -150px;
	position: relative;
}

.empty-space-box span {
	background: rgba(200, 200, 200, 0.1);
	width: 10px;
	height: 300px;
	display: inline-block;
	margin-right: 10px;
}

.loop-box-inner {
	display: flex;
	gap: 10px;
	width: 100%;
	border: 1px solid var(--borderColor);
	border-radius: 5px;
	padding: 20px 10px 10px;
	margin: -10px 10px 0px;
	box-sizing: border-box;
	flex-direction: column;
	overflow: hidden;
	position: relative;
	background: var(--inputAreaBG);
}

.video-controller {
	width: 100%;
	position: absolute;
	bottom: 0;
	background: rgba(0, 0, 0, .5);
	user-select: none;
	display: none;
	z-index: 4;
}

.controller-upper {
	height: 5px;
	position: relative;
	cursor: pointer;
}
.controller-upper:hover,
.controller-upper:hover .seek-bar-holder,
.controller-upper:hover .seek-bar-layer,
.controller-upper:hover .seek-bar-progress {
	height: 8px;
}
.controller-upper:hover .progress-point {
	height: 12px;
}
.seek-bar-holder {
	width: 100%;
	height: 5px;
	background: rgba(200, 200, 200, .5);
	position: absolute;
}

.seek-bar-layer {
	width: 100%;
	height: 100%;
	z-index: 1;
	position: absolute;
}

.seek-bar-progress {
	position: absolute;
	height: 100%;
	width: 0;
	background: #ff0000a6;
}

.progress-point {
	position: absolute;
	top: -2.5px;
	width: 10px;
	height: 10px;
	background: #ff0000a6;
	border-radius: 50%;
	z-index: 2;
	cursor: pointer;
	background: red;
}

.controller-lower {
	height: 50px;
	position: relative;
	display: flex;
}

.start-stop {
	width: 50px;
	height: 50px;
	position: relative;
	display: block;
}

.start-stop:hover {
	cursor: pointer;
	opacity: 0.75;
}

.audio-vol-box {
	width: 80px;
	height: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	position: relative;
	display: flex;
	align-self: center;
	margin: 0 10px;
}

.audio-vol-holder {
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.audio-pointer {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #fff;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	margin-left: -10px;
	cursor: grab;
}

.audio-layer {
	display: block;
	width: 100%;
	height: 100%;
	z-index: 2;
	position: absolute;
	left: 0;
}

.audio-slider {
	height: 100%;
	background-color: #fff;
	position: absolute;
	left: 0;
	top: 0;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.time {
	display: flex;
	gap: 5px;
	align-items: center;
	padding: 0 10px;
	color: #fff;
	user-select: none;
}

.play-back-speed {
	margin: 0 10px 0 auto;
	position: relative;
	align-content: center;
	color: #fff;
	width: 50px;
	box-sizing: border-box;
	text-align: center;
}

.tool-button {
	width: 100%;
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
}
.tool-button:hover {
	cursor: pointer;
	opacity: 0.75;
}
.tool-box {
	position: absolute;
	right: -10px;
	bottom: 55px;
	height: auto;
	display: flex;
	flex-direction: row;
	background: rgba(0, 0, 0, .75);
	color: #fff;
	padding: 20px;
	gap: 10px;
}

.control-options {
	height: auto;
}

.sliders {
	display: flex;
	flex-direction: column;
	width: 300px;
}

.control-header {
	padding: 5px 10px;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	border-bottom: 1px solid;
}

.slider-options {
	display: flex;
	flex-direction: column;
	width: 100%;
	place-content: space-evenly;
	gap: 10px;
	padding: 10px 0;
}

.slider-pair {
	display: flex;
	padding: 0 10px;
	height: 24px;
	align-items: center;
	justify-content: space-evenly;
}

.slider-pair label {
	flex: 1;
	font-size: 14px;
	line-height: 16px;
	height: 16px;
	text-wrap: nowrap;
}

.slider-pair input {
	cursor: pointer;
	width: 100px;
}

.speed-box {
	width: 100px;
}

.speed-header {
	padding: 5px 10px;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	border-bottom: 1px solid;
	display: block;
}

.speed-box-inner {
	padding: 10px 0;
}

.speed-val {
	display: flex;
	width: 100%;
	height: 50px;
	align-items: center;
	justify-content: center;
}
.speed-val:hover {
	cursor: pointer;
	background: rgba(200, 200, 200, 0.05);
}
.speed-selected {
	background: rgba(200, 200, 200, .1);
}

#startStop.playing:before {
	clip-path: polygon(22px 10px, 22px 40px, 12px 40px, 12px 10px);
}

#startStop.playing:after {
	clip-path: polygon(38px 10px, 38px 40px, 28px 40px, 28px 10px);
}

#startStop.playing:before,
#startStop.playing:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
}

.start-stop.paused:after {
	clip-path: polygon(15px 10px, 40px 25px, 15px 40px);
	background: #fff;
	width: 50px;
	height: 50px;
	display: block;
	box-sizing: border-box;
	position: absolute;
	content: "";
}
.usage-section {
	background: #cecdd9 !important;
	padding: 120px 15%;
	box-sizing: border-box;
}
.usage-header {
	text-align: center;
}
.usage-section h2 {
	font-size: 32px;
	margin-bottom: 30px;
}
.steps-container-outer {
	margin: 40px 0;
	background: #fff;
	border-radius: 10px;
	padding: 60px 20px;
}
.steps-container {
	display: flex;
	justify-content: space-between;
}
.step {
	padding: 20px;
	border-radius: 10px;
	flex: 1;
	margin: 0 10px;
	margin-bottom: -20px;
	text-align: center;
	gap: 20px;
	display: flex;
	flex-direction: column;
	position: relative;
}
.step-number {
	font-size: 24px;
	line-height: 48px;
	width: 48px;
	height: 48px;
	border-radius: 24px;
	color: #fff;
	background: #714991;
	margin: 0 auto;
}
.step h3 {
	margin: 0;
}
.step:not(:last-of-type):after {
	content: "";
	display: block;
	width: 48px;
	height: 48px;
	border-left: 2px solid #714991;
	border-top: 2px solid #714991;
	transform: rotate(135deg);
	right: -10px;
	position: absolute;
	top: 48px;
}
.steps-divider {
	width: 90%;
	height: 1px;
	margin: 40px auto;
	background: #cecdd9;
}
.compatibility-header, .compatibility-explanation {
	text-align: center;
	margin-bottom: 30px;
}
.compatibility-box {
	display: flex;
	gap: 20px;
	justify-content: center;
	height: 42px;
	margin: 20px 0 0;
}
.compatibility-item {
	display: flex;
	border-radius: 5px;
	overflow: hidden;
	box-sizing: border-box;
	border: 1px solid #cecdd9;
	width: 140px;
}
.list-name {
	background: #714991;
	padding: 10px;
	display: flex;
	align-items: center;
	height: 100%;
	box-sizing: border-box;
	width: 100px;
	justify-content: center;
	color: #fff;
	font-weight: 700;
}
.list-compatibility {
	position: relative;
	width: 40px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.compatible:after {
	content: '';
	display: block;
	position: absolute;
	width: 10px;
	height: 5px;
	border-left: 2px solid #25af01;
	border-bottom: 2px solid #25af01;
	transform: rotate(-45deg);
}
.not-compatible {
	display: block;
	position: relative;
}
.not-compatible:before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.not-compatible:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.not-compatible:before, .not-compatible:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2px;
	height: 15px;
	background: red;
}
.mask-compatibility-box-outer {
	color: #cdcdcd;
	margin-top: 20px;
}
.mask-compatibility-box {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 6px;
	font-size: 12px;
}
.compatibility-mask {
	padding: 5px 10px;
	border: 1px solid #cdcdcd;
	border-radius: 5px;
}
.fps-section {
	padding: 80px 5px;
	box-sizing: border-box;
	position: relative;
}
.fps-section:after {
	content: "";
	position: absolute;
	background: linear-gradient(0deg, #dc575700 80px, #68819c1f 81px), linear-gradient(90deg, transparent 80px, #68819c1f 81px) #efefef;
	display: flex;
	padding: 120px 20%;
	background-size: 81px 81px;
	background-position: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.fps-section-title {
	text-align: center;
}
.fps-heading {
	text-align: center;
}
.fps-content-box {
	text-align: center;
}
.fps-examples {
	display: flex;
	gap: 20px;
	margin: 20px 0;
	flex-wrap: wrap;
}
.fps-example {
	width: 100%;
	flex: none;
	display: flex;
	flex-direction: column;
	border-radius: 5px;
	overflow: hidden;
	border: 1px solid var(--mainColor);
	background: #fff;
}
.fps-example-heading {
	background: var(--mainColor);
	color: #fff;
	padding: 14px 20px;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
}
.fps-example-icon {
	font-weight: 700;
	font-size: 28px;
	height: 48px;
	align-content: center;
	margin-top: 20px;
}
.fbfp-box .fps-example-body {
	padding: 20px;
	margin: 0;
}

.fps-note-item {
	display: flex;
	position: relative;
	padding: 20px;
	flex-direction: column;
}
.fps-note-item picture {
	width: 100%;
	flex: none;
}
.fps-note-image {
	width: 100%;
	filter: hue-rotate(270deg) contrast(0.75) brightness(1.25);
}
.fbfp-box .fps-note-body {
	margin: 0;
	display: flex;
	align-items: center;
	text-align: left;
}
.fps-note-item:not(:last-child):after {
	bottom: 0;
	content: "";
	position: absolute;
	width: calc(100% - 80px);
	border-bottom: 1px dashed var(--mainColor);
	height: 1px;
}
.fps-note-box {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0 auto;
	border: var(--mainColor) 1px solid;
	background: #fff;
}
.fps-content h3 {
	background: var(--mainColor);
	margin: 0;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
/* Tablet */
@media (min-width: 768px) {

}
/* Desktop */
@media (min-width: 1024px) {
	.title-box{
		flex-direction: row;
		padding: 10px;
	}
	.system-box {
		height: calc(100vh - 44px - 10px);
		flex-direction: row;
		padding: 0px 10px 10px;
	}
	.admin-bar .system-box {
		height: calc(100vh - 44px - 32px - 10px);
	}
	.system-box-left {
		width: calc(100% - 240px);
		border-radius: 5px;
		height: 100%;
	}
	.controls {
		display: flex;
	}
	.sp-control {
		display: none;
	}
	.system-box-right {
		width: 300px;
		gap: 20px;
		padding: 0;
		padding-right: 10px;
	}
	.current-time-box {
		order: unset;
	}
	.variables-box {
		gap: 20px;
	}
	.fps-note-item picture {
		width: 400px;
	}
	.fps-note-item {
		flex-direction: row;
	}
	.fps-section {
		padding: 80px 15%;
	}
	.fps-note-box {
		width: 80%;
	}
	.fps-note-item {
		padding: 40px;
	}
	.fps-note-body {
		padding: 20px;
		margin-left: 20px;
	}
	.fps-note-item:not(:last-child):after {
		bottom: -20px;
	}
	.fps-note-item:not(:last-child) {
		margin-bottom: 40px;
	}
	.fps-example {
		width: auto;
		flex: 1;
	}
	.points-container {
		gap: 20px;
	}
	.point-section {
		padding: 80px 15%;
	}
	.fbfp-box .title-explanation {
		width: 80%;
		margin: 0 auto;
		max-width: 600px;
	}
	.audio-vol-box {
		width: 150px;
	}
}