<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#clickToStart, #playAgain {
	padding: 5px 20px;
	font-size: 2em;
	text-transform: uppercase;
	font-weight: bolder;
	text-shadow: 1px 1px #000;
	color: #fff;
	background: #e7b401;
	font-family: arial;
	border-radius: 10px;
	box-shadow: inset -5px -5px 0 0 rgba(0, 0, 0, 0.3), inset 5px 5px 0 0 hsla(0, 0%, 100%, 0.3);
	cursor: pointer;
	outline: 0;
	border: 0;
}
#clickToStart:active, #playAgain:active {
	box-shadow: inset -5px -5px 0 0 hsla(0, 0%, 100%, 0.3), inset 5px 5px 0 0 rgba(0, 0, 0, 0.3);
}

#uploadBg {
	box-shadow:inset 2px 2px 3px 0px #fff6af;
	background:linear-gradient(to bottom, #ffdd54 5%, #c77100 100%);
	background-color:#ffdd54;
	border-radius:10px;
	border:1px solid #ffdf22;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:22px;
	font-weight:bold;
	padding:12px 37px;
	text-decoration:none;
	text-shadow:1px 1px 0px #5c5c5c;
}
#uploadBg:active {
    margin-bottom: -2px;
    margin-top: 2px;
}
.playBtn {
	box-shadow:inset 2px 2px 3px 0px #fff6af;
	background:linear-gradient(to bottom, #ffdd54 5%, #c77100 100%);
	background-color:#ffdd54;
	border-radius: 2em 0 0 / 0.5em 3em;
	border:1px solid #ffdf22;
	display: inline;
	cursor:pointer;
	color:#ffffff !important;
	font-family:Arial;
	font-size:22px;
	font-weight:bold;
	padding:12px 37px;
	text-decoration:none;
	text-shadow:1px 1px 0px #5c5c5c;
}
.arrowBtn {
    box-shadow: inset -2px 2px 3px 0px #fff6af;
    background: linear-gradient(to bottom, #ffdd54 5%, #c77100 100%);
    background-color: #ffdd54;
    border-radius: 0 9px 9px 0;
    border:1px solid #ffdf22;
    display: inline;
    cursor: pointer;
    color: #ffffff !important;
    font-family: Arial;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 1px 1px 0px #5c5c5c;
}

#loader{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	display: flex;
	justify-content: center;
	align-items: center;
}
#spinner{
	width: 80px;
	height: 80px;
	border-top: 10px solid #fff;
	border-radius: 50%;
	animation: spin 0.5s infinite;
	z-index: 999;
}
@keyframes spin{
	from{transform: rotate(0);}
	to{transform: rotate(360deg);}
}
.disabled {
	opacity: 0.5;
	pointer-events: none;
}
.fullscreen {
position:fixed;
top:0;
left:0;
bottom:0;
right:0;
max-width: 100%;
width:100vw !important;
height:100vh !important;
width:100% !important;
height:100% !important;
overflow:hidden;
z-index:2;
}
#fullscreennupp{
    position: absolute;	top: 10px; right: 10px; color: #fff; cursor: pointer; opacity: 0.5; pointer-events: all; z-index:1;
}
#fullscreennupp:hover{
    opacity: 1;
}</pre></body></html>