@charset "UTF-8";
/* CSS Document */
/*
orange: #ea612c
blue: #3faaac
*/
html, body {
	font-family: 'Poppins', sans-serif;/*overflow-y: scroll;*/
    
    position: fixed;
	
    overflow: hidden;
	
    height: 100%;
    width: 100%;
	margin:0;
	padding:0;
    top:0;
	left:0;
    
}
body{
    perspective: 1000px;
}
#main{
	/*
	opacity:0;
	box-shadow:0 0 0 1px red;
	height:100vh;
	*/
	/*opacity:0.25;*/
}
#info{
    width: calc(100vw - 10px);
    position: absolute;
    bottom: 50px;
}
	#info span{
		display:table;
		margin:auto;
		text-align: center;
		padding: 2px 20px;
		font-size: 10px;
		background: #666;
		border-radius: 10px;
        letter-spacing: 1px;
        text-transform: uppercase;
		color: #FFF;
		overflow:hidden;
	}
	#info.warning span{
		background:#24aba9;
	}
	#info.success span{
		background:#ea612c;
	}
#cont{
	transition:all 200ms ease;
    /*position:relative;*/
}
.letter,
#letterPhantom{
	width: 40px;
	height: 40px;
	padding:1px;
	position: absolute;
	cursor: move;
	touch-action: none; /* helps with mobile dragging */
	
    z-index:-1;

    

    /*transition: transform ease-in-out 1000ms;*/
}
	.letter.ui-draggable-dragging,
	.letter.dragging{
		/*z-index:100 !important;*/
		perspective:100px;
        box-shadow:0 4px 13px 4px rgba(0, 0, 0, 0.75), inset 0 -5px 5px rgba(0, 0, 0, 0.75) !important;
		/*transform: scale(1.2) !important;*/
	}
	.letter.ui-draggable-dragging div,
	.letter.dragging div{
		transform: scale(1.2) translateY(-10px) rotateX(20deg);
		transform-style:preserve-3d;
		/*transform:*/
		
	}
    .letter.dragging{
        /*transform: scale(1.2) !important;*/
    }
	

	

@keyframes fadeOut{
 to {
	 opacity: 0;
	}
}


@keyframes fadeInUp {
 to {
	 opacity: 1;
	 transform: translateY(0) scale(1);
	}
}

@keyframes fadeInUp3 {
 to {
	 opacity: 1;
	 transform: translateX(0);
	}
}
@keyframes zoomInCentered {
   0% {
	 opacity: 0;
	 transform: translateX(-50%) translateY(-50%) rotate(-2deg) translateZ(0) scale(1.1);
  }
  100% {
	 opacity: 1;
	 transform: translateX(-50%) translateY(-50%) rotate(-2deg) translateZ(0) scale(1);
  }
}
.letter div{
	position:relative;
	height: 100%;
	width: 100%;
	background: #5b5b5b;

	border-radius: 8px;

    
    box-shadow: inset 0 -1px 0 0px rgb(255 255 255 / 22%), 0 5px 0px 0px #343434, 0 6px 0px 0px rgb(255 255 255 / 0.2);
    transition: all ease-in-out 100ms;
	
	overflow:hidden;
	text-align: center;
}
	.letter > div > span:not(.letter-score){
		font-weight: 800;
		font-size: 25px;
		text-transform: uppercase;
		color: #fff;
		
		line-height: 35px;
		position:relative;
		z-index:1;
	}
    /*
    .letter div:before{
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: -1;
        border-radius: 5px;
        box-shadow: 0 5px 0 1px rgba(0,0,0,0.25),0 5px 0 1px #ff6a00,inset 0 -1px 0 0px rgba(255,255,255,0.5), inset 0 40px 0 0 #ff6a00, 0 0 0 1px #ff6a00
    }
    */

.letter.vowel div {
	background:#717171;
}
.letter .letter-score{
    position: absolute;
    top: 22px;
    width: 32px;
    text-align: center;
    left: calc(50% - 15px);
    margin:auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
	z-index:1;
    
}
.letter[data-score="1"] .letter-score,
.letter[data-score="2"] .letter-score,
.letter[data-score="3"] .letter-score,
.letter[data-score="4"] .letter-score,
.letter[data-score="5"] .letter-score{
    /*top:22px;*/
}
.letter[data-score="2"] .letter-score,
.letter[data-score="3"] .letter-score,
.letter[data-score="4"] .letter-score{
    /*gap: 2px;*/
}
.letter[data-score="8"] .letter-score{
    gap: 0px;
}
    .letter .letter-score > i{
        /*
        display: block;
        padding: 1.2pt;
        margin: 0.5pt 0.75pt;
        background: #FFF;
        border-radius: 10px;
        */
        height: 4pt;
        margin: 0pt 0pt;
        font-style: normal;
        float:left;
        color:#FFF;
        opacity: 0.5;
    }
    .letter .letter-score > i.five{
        font-size: 13px;
        
        line-height: 27px;
        opacity: 0.75;
    }
    .letter[data-score="8"] .letter-score > i.five{
        margin-right: 1px;
    }
.letter .letter-score:after{
    content:"";
    clear:both;
}


.letter.green div,
.letter.green.red div{
    /*background:#e34f15;*/
	box-shadow:inset 0 -1px 0 0px rgb(255 255 255 / 22%), 0 5px 0px 0px #aa2100, 0 6px 0px 0px rgb(204 57 0);
}

.letter.title div{
    background-color:#e34f15;
}

    .letter.green.vowel div{
        /*background:#e76317;*/
    }
.letter.red div{
    background-color:#3faaac;
	box-shadow:inset 0 -1px 0 0px rgb(255 255 255 / 22%), 0 5px 0px 0px #006565, 0 6px 0px 0px rgb(30 137 137);
}
    .letter.red.vowel div{
        background-color:#028f91;
    }
	
.letter div:after{
    content: "";
    background-image: url(images/flame.svg?c=ea612c);
    background-repeat: no-repeat;
    width: 84px;
    height: 84px;
    position: absolute;
    z-index: 0;
    left: -12px;
    top: 36px;
    transform: rotate(340deg);
	transition:all 200ms ease-in-out;
	
}
.letter div:before{
    display: none;
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*box-shadow: inset 0 2px 0px 0px #fff807, inset 0 12px 12px -7px #ffeb00;*/
    box-shadow: inset 0 2px 0px 0px #FFF, inset 0 12px 12px -7px #FFF;
    border-radius: 8px;
    opacity: 0;
}
.letter.snapTop > div:before{
    opacity: 1;
    transform: rotate(0deg);
    animation: snapAnim 0.3s ease-in-out forwards;
}
.letter.snapLeft > div:before{
    opacity: 1;
    transform: rotate(270deg);
    animation: snapAnim 0.3s ease-in-out forwards;
}
.letter.snapBottom > div:before{
    opacity: 1;
    transform: rotate(180deg);
    animation: snapAnim 0.3s ease-in-out forwards;
}
.letter.snapRight > div:before{
    opacity: 1;
    transform: rotate(90deg);
    animation: snapAnim 0.3s ease-in-out forwards;
}

@keyframes snapAnim {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        box-shadow: inset 0 2px 0px 0px #fff807, inset 0 100px 12px -7px #ffeb00;
        box-shadow: inset 0 2px 0px 0px #FFF, inset 0 200px 12px -7px #FFF;
    }
}



.letter.green div:after{
	top:-36px !important;
    /*
    left:0 !important;
    transform:scale(0.9) !important;
    */
}
.letter.green.red div:after{
	top:-4px !important;
}


.letter:nth-child(1) div:after,
.letter:nth-child(7) div:after{
	transform: rotate(300deg);
	left:-24px;
}
.letter:nth-child(2) div:after,
.letter:nth-child(8) div:after{
	transform: rotate(380deg);
	left:-8px;
	top:46px;
}
.letter:nth-child(3) div:after,
.letter:nth-child(9) div:after{
	transform: rotate(332deg);
	
	left:-20px;
	margin-top: -6px;
}
.letter:nth-child(4) div:after,
.letter:nth-child(10) div:after{
    transform: rotate(39deg);
    left: -1px;
    top: 46px;
    margin-top: 10px;
}
.letter:nth-child(5) div:after,
.letter:nth-child(11) div:after{
    transform: rotate(315deg);
    left: -17px;
    top: 46px;
    margin-top: -99px;
    margin-top: -4px;
}
.letter:nth-child(7) div:after{
	transform: rotate(300deg) scaleX(-1);
    left: -41px;
    margin-top: 14px;
}
.letter:nth-child(8) div:after{
	transform: rotate(380deg) scaleX(-1);
    left: -30px;
    margin-top: -2px;
}
.letter:nth-child(9) div:after{
	transform: rotate(332deg) scaleX(-1);
	margin-top:1px;
	left: -36px;
}
.letter:nth-child(10) div:after{
	transform: rotate(39deg) scaleX(-1);
    left: -26px;
    margin-top: -4px;
}
.letter:nth-child(11) div:after{
	transform: rotate(315deg) scaleX(-1);
	left: -39px;
    margin-top: 10px;
}
.letter:nth-child(12) div:after{
	transform: rotate(340deg) scaleX(-1);
	margin-top:2px;
	left: -35px;
}

@keyframes fireUp {
 to {
	 top:-37px;
	}
}


.letter.done div{
	background:#fff200;
	box-shadow: inset 0 -1px 0 0px rgb(255 255 255 / 22%), 0 5px 0px 0px #ca8500, 0 6px 0px 0px rgb(152 101 8);
}
body.alt .letter.done div{
	background: #f0d9b5;
    box-shadow: inset 0 -1px 0 0px rgb(255 255 255 / 22%), 0 5px 0px 0px #c2b280, 0 6px 0px 0px rgb(152 101 8);
}
.letter.done > div > span:not(.letter-score) {
    color: #1a1a1a;
}
body:not(.alt) .letter.done div:after {
    top: 0px !important;
	background-image: url(images/flame.svg?c=ffbe02);
}
body.alt .letter.done div:after {
    top: 46px !important;
}


.letter.done .letter-score > i{
	color: #5f1805;
}

#menu_cont{
	position:fixed;
	bottom:-50px;
	width:calc(100%);
	left:0;
	height:40px;
	z-index: 1000;
}
#menu_cont a,
#menu_cont div{
	display:inline-block;
	color:#45fbff;
	letter-spacing: 1px;
	font-size: 12px;
	text-decoration: none;
	cursor:pointer;
	line-height:30px;
}
#menu_cont #menu_butt,
#menu_cont #menu_user,
#menu_cont #qr,
.menuright{
	font-size: 20px;
	top:8px;
	line-height: 0px;
	position: absolute;
	right: 0;
	color: #45fbff;
	padding: 0 10px;/* background: red;*/
	/*transition: all ease-in-out 1000ms;*/
}
#menu_cont #menu_butt.active{
	right:auto;
	left:0;
	transition: all ease-in-out 1000ms;
}
#menu_cont #qr {
	top: 10px;
	left:0;
	right: auto;
	text-align: left;
}

#menu_cont .menu{
	width:100%;
	background:#333;
	padding:5px 0;
	text-align: center;
}
	#menu_cont .menu ul{
		padding:0;
		margin:0;
	}
		#menu_cont .menu ul li{
			margin:0;
			padding:0;
			list-style:none;
			display:inline-block;
			padding:0 5px;
		}

#menu_menu,
#menu_user_options{
	/*display:none;*/
	position:absolute;
	top:0;
	left:100%;
	background:#ed5f38 !important;
	
	z-index:2;
	transition:all ease-in-out 200ms;
}

body[m="random"] #menu_menu,
body[m="random"] #menu_user_options{
	background:#3faaac !important;
}

body[m="daily"] #menu_cont #menu_user_options a,
body[m="daily"] #menu_cont #menu_user_options i,
body[m="random"] #menu_cont #menu_user_options a,
body[m="random"] #menu_cont #menu_user_options i{
	color:#FFF !important;
}
#menu_menu.active,
#menu_user_options.active{
	display:block;
	left:0;
	
}

#menu_user span {
    font-size: 12px;
    display: inline-block;
    vertical-align: 4px;
}

body[m="daily"] #menu_cont *{
    color:#ff7c49 !important;
}
body[m="daily"] #menu_menu{
    background:#ff7c49 !important;
}
    body[m="daily"] #menu_menu *{
        color:#FFF !important;
    }    

/*
body[m="daily"] #menu_main a:nth-child(1),
body[m="daily"] #menu_main a:nth-child(1) *{
    color:#45fbff !important;
}
body[m="random"] #menu_main a:nth-child(1),
body[m="random"] #menu_main a:nth-child(1) *{
    color:#ff7c49 !important;
}
*/
.cont,
#cont,
#cont2{
	position: absolute;
	left: calc(50% - 150px);
	margin: auto;
	bottom: calc(1vh + 70px);
	width: 300px;
	height: 110px;
}
#cont2{
	top:200px;
}
#qrcode {
	position: fixed;
	bottom: -313px;
	left: calc(50% - 150px);
	/*padding-bottom: 60px;*/
	opacity: 0;
	
	bottom: auto;
	z-index:-10;
	transform: translateY(-1000px);
	/*z-index:-10;*/
	/*
	transform: translateY(20px);
	
	animation: fadeInUp2 0.6s ease forwards;
	animation-delay: 0.5s;
	*/
	transition: opacity ease-in-out 200ms;
	text-align:center;
	
}
	/*
	#qrcode:after{
		content:"";
		position: absolute;
		width: 1000%;
		height: 1000%;
		background:rgba(255,255,255,0.75);
		top: -500%;
		left: -500%;
		z-index: -1;
	}
	*/
	#qrcode a:nth-child(1){
		display: flex;
		margin: 0;
		padding: 0;
		overflow: hidden;
		width: 297px;
		height: 297px;
	}
	#qrcode a:nth-child(2){
		font-size:12px;
		color:#ea612c;
		text-align:center;
		letter-spacing:2px;
        text-decoration: none;
        font-weight: 600;
	}
	#qrcode img{
	}
    body[m="random"] #qrcode a:nth-child(2){
        color:#3faaac;    
    }

#qrcode.active {
	/*
	transform: translateY(calc(50% - 50px)) !important;
	bottom: auto;
	*/
	transform: translateY(calc(50% - 50px)) !important;
	z-index:1000;
	opacity:1;
	box-shadow: 0 0 100px #FFF;
	transition: opacity ease-in-out 200ms;
}
.menuright{
	top:5px;
    right: 0;
}

#menu_butt,
.menuright{
	cursor:pointer;
}

#menu_user{
}


@keyframes fadeInUp2 {
 to {
	 opacity:1;
	 transform: translateY(0);
	}
}
#qrcode img {
    width: 300px;
    height: 300px;
    margin-top: -2px;
    margin-left: -2px;
}
	
#wordslist{
	position:fixed;
    overflow: hidden;
    width:100%;
	top:0;
	left:0;
	z-index:-1;
	opacity:0;
    color: #868686;
	transition: all ease-in-out 200ms;
	padding:8px;
}
#wordslist.active{
	opacity:1;
	z-index: 102;
    background: rgba(0,0,0,0.5);
    box-shadow: 0 10px 20px rgb(0 0 0 / 55%);
}
	#wordslist > div{
		display:inline-block;
		margin-right:4px;
		transition:all 200ms ease-in-out;
	}
	#wordslist > div.temp{
		opacity:0;
		transform:translateX(100vw);
		animation: fadeInUp3 300ms ease-out forwards;
        animation-timing-function: ease-in-out;
	}
	#wordslist > div.disabled{
		opacity:0.25;
	}
	/*
	#wordslist > div.temp{
		opacity:0;
		margin-left:10px;
		transition: all ease-in-out 2000ms;
	}
	*/
	
	#wordslist > div > u,
	#wordslist > div > i,
	#wordslist > div > b{
		display:inline-block;
		text-decoration:none;
		background:#38b138;
		background:#5b5b5b;
		padding:2px;
		margin:1px;
		border-radius:4px;
		text-transform:uppercase;
		font-style:normal;
		color:#FFF;
		width:15px;
		height:15px;
		font-weight:600;
		font-size:12px;
		line-height:15px;
		text-align:center;
	}
    #wordslist > div > i{
        text-shadow: 0px 2px 2px #5b5b5b;
    }
	#wordslist > div > u{
		background:#7dc57d;
		background:#34aaab;
		
	}
	#wordslist > div > * > i{
	    /*transform: translateY(-1px);*/
	}
	#wordslist > div > b{
        min-width: 15px;
        width: auto;
        background: #ea5e37;
        font-size: 21px;
        font-family: "Micro 5", sans-serif;
        font-weight: 400;
	}
	
#grid{
	/*
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
	width:100vw;
	height:100vh;
  background-image:
    linear-gradient(to right, #e1e1e1 1px, transparent 1px),
    linear-gradient(to bottom, #e1e1e1 1px, transparent 1px);
  background-size: 42px 42px;
  */
}
#score{
    background: #ea612c;
    position: absolute;
    bottom: 40px;
    right: -50px;
    width: 42px;
    height: 30px;
    border-top-left-radius: 10px;
    text-align: center;
    font-family: "Micro 5", sans-serif;
    font-optical-sizing: auto;
	z-index:100;
}
	#score.valid{
		background:#ea612c;
	}
	
	body[data-done='true'] #score{
		background:none !important;
	}
		body[data-done='true'] #score span{
			font-size: 55px;
			margin-left: 0px;
			width:40px;
			line-height:20px;
		}
	
	#score.invalid{
		background:#34aaaa;
	}
		#score.invalid span{
			opacity:0.5;
		}
	#score span{
        font-size: 36px;
        line-height: 34px;
        text-align: center;
        color: #FFF;
        font-weight: 400;
        width: 30px;
        display: block;
        margin-left: 8px;
	}
	#score small{
		color: #ea612c;
		color: #FFF;
		font-size: 30px;
		position: absolute;
		font-weight: 600;
		top: -35px;
		margin-left: -20px;
        letter-spacing: 1px;
		width: 100%;
		text-align:center;
		
		opacity:0;
		transform: translateY(-10px);
		
		animation-name: animateInStayOut;
		animation-duration: 1.5s; /* Total animation time */
		animation-timing-function: ease-in-out;
		animation-fill-mode: forwards; /* Keeps the end state */
		animation-iteration-count: 1;
	}
	body[data-done='true'] #score small{
		color:#FFF;
		animation-duration: 3s;
	}
	body[data-step='50'] #score small{
		top: -55px !important;
	}
	
@keyframes animateInStayOut {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  70% {
    opacity: 1;
    transform: translateY(-8px);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
#wordcount{
    font-size: 20px;
    font-weight: 800;
    line-height: 25px !important;
    top: 9px;
    padding: 0 5px;
    margin-right: 10px;
	background:#1a1a1a;
	box-shadow:inset 0px -1px 0 0 rgba(255,255,255,0.25);
    border-radius: 5px;
}
#wordcount i{
	font-size:14px !important;
}
#wordcount.active{
	color: #000 !important;
    background: #45fbff;
    box-shadow: -5px 0px 0 0 #45fbff, 5px 0px 0 0 #45fbff;

}
body[m="daily"] #wordcount.active{
    background: #ef4a1c;
    box-shadow:0px 1px 3px rgba(0,0,0,0.75), inset 0px 1px 0 0 rgba(255,255,255,0.25);
    /*box-shadow: -5px 0px 0 0 #ed7c50, 5px 0px 0 0 #ed7c50;*/
    color:#FFF !important;
}
    body[m="daily"] #wordcount.active *{
        color:#FFF !important;
    }

#wordslist > div.active > i{
    /*color:#ffa37f !important;*/
	/*box-shadow: inset 0 -3px 0 0 #e64c27;*/
    background:#f0d9b5;
    color:#1a1a1a;
    text-shadow: none;
    
}
#wordslist > div{

	/*opacity:0.25 !important;*/
}

body #cont .letter,
body .cont .letter{
    opacity: 0;
	transform: translateY(10px) scale(0.9);
    
    box-shadow: 0 7px 5px rgba(0, 0, 0, 0.75);
    border-radius: 10px;
}


body.screenshot #cont .letter{
    opacity: 1 !important;
	transition:all 0s linear !important;
	transform: translateY(0px) scale(0.99) !important;
	/**/
	/*
	animation: none !important;
	
	
	*/
}


body.screenshot #cont .letter div{
	transition:all 0s linear;
	box-shadow:0 0 10px rgba(0,0,0,1);
	/*box-shaodw:inset 0 -1px 0 0px rgb(255 255 255 / 22%), 0 5px 0px 0px #006565, 0 6px 0px 0px rgb(30 137 137);*/
	border-bottom: 6px solid #343434;
}
body.screenshot #cont .letter.red div{
	border-bottom: 6px solid #006565;

}
body.screenshot #cont .letter.green div{
	background:#ea612c;
	border-bottom: 6px solid #aa2100;
}
body.screenshot #cont .letter.done div{
	background:#f0d9b5;
	border-bottom: 6px solid #c2b280;
}


body.bganimate #cont .letter,
body.bganimate .cont .letter{
	animation: fadeInUp 0.4s ease-out forwards;    
}


#cont2{
	position:fixed;
	top:-1000px;
	height:158px;
}



#cont2 .letter.red div{
    border-bottom: 6px solid #006565;
}
#cont2 .letter.green div,
#cont2 .letter.green.red div{
    border-bottom: 6px solid #aa2100;
}
#cont2 .letter.done div{
	border-bottom: 6px solid #c2b280 !important;
}

#cont2:not(screenshot) .letter div{
    box-shadow:none;
    border:0 !important;
}


#cont2 .letter div .letter-score{
	/*display:block !important;*/
}

#cont2:not(.screenshot) .letter div:after{
	display:none !important;
    
}

#cont2:not(.screenshot) > div:nth-child(1) {
    transform: scale(0.6) translate(-63px, 76px);
}
#cont2:not(.screenshot) > div:nth-child(2){
    width: 110px;
    height: 110px;
    background-size:cover;
    background-size: 112px 112px;
    background-position: -1px -1px;
    transform: translate(146px, 23px);
}
#cont2 > p{
    margin: 0;
    display: inline-block;
    color: #ea612c;
    font-family: "Micro 5", sans-serif;
    font-optical-sizing: auto;
    transform: rotate(90deg);
    width: auto;
    position: absolute;
    top: 64px;
    right: -21px;
    font-size: 30px;
    image-rendering: pixelated;
    word-spacing: -6px;
}

body[m="random"] #cont2 > p{
    color:#3faaac;
}
body #bg{
	width:40px;
	height:40px;
	
	top:1000px;
	border-radius:10000px;
	position:absolute;
	z-index:-3;
	background:#a10303;
	background: rgb(227,79,21);
	background: linear-gradient(90deg, rgb(227 65 0) 0%, rgb(140 39 0) 100%);
    
	transition:transform 400ms ease-in-out;
    overflow: hidden;
}
/*
body #bg:after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-image: url("images/noise-bg1.png");
}
*/
body.alt #bg{
	linear-gradient(138deg, rgb(233 93 55) 0%, rgb(190 0 0) 100%);
	
}
body #bgNoise{
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: -2;
    opacity: 0.3;
    background-image: url("images/noise-bg1.png");
}

#wordDescCont{
	
	position:absolute;
	
	width:300px;
	/*overflow:hidden;*/
	top:50%;
	left:50%;
	
	transform:scale(0) translate(-50%,-50%);
    transform-origin: top left;
    opacity: 0;


	/*display:none;*/
    
    z-index: -100;
    
	/*
	background: rgba(255, 255, 255, 0.28); 
	backdrop-filter: blur(10px);         
	-webkit-backdrop-filter: blur(10px);
	border-radius: 12px;
	padding: 20px;
	*/
	
}
#wordDescCont.show{
    transition: transform 400ms ease-in-out,opacity 400ms ease-in-out,top 400ms ease-in-out,left 400ms ease-in-out;
    opacity: 1;
    z-index: 101;
    top:50% !important;
    left:50% !important;
    transform:scale(1) translate(-50%,-50%);
}

    /*
	#wordDescCont > div.overlay{
		content: "";
        display: none;
		position: absolute;
		width: 1000%;
		height: 1000%;
		background: rgba(0,0,0,0.75);
		top: -500%;
		left: -500%;
		z-index: -1;
	}
        #wordDescCont.show > div.overlay{
            display: block;
        }
    */
	#wordDescCont > div{
		background: #f0d9b5;
		color:#5f1805;
		padding:20px;
		padding-bottom:50px;
		border-radius:20px;
		box-shadow: 0 4px 20px rgba(0,0,0,1);
        
        overflow: hidden;
        position: relative;
	}
	#wordDescCont > div > h2{
		margin:0;
		font-family:"Caveat", cursive;
		font-size: 40px;
		line-height: 20px;
	}
	#wordDescCont > div > i{
		display: block;
		font-size: 20px;
		margin-bottom: 10px;
		margin-top: 5px;
		margin-left: -5px;
		opacity: 0.5;
	}
	#wordDescCont > div > b{
		/* SCORE */
        display: inline-block;
        font-family: "Micro 5", sans-serif;
        
        
        position: absolute;
        top: 24px;
        right: 36px;
        font-size: 70px;
        width: 48px;
        text-align: center;
        color: #e30d0d;
        transform: rotate(24deg) scale(1);
	}
        /*
		#wordDescCont > div > b:after{
			content: "SCORE";
			display: block;
			font-size: 22px;
			text-align: center;
			font-weight: normal;
			margin-top: -20px;
			letter-spacing: 1px;
		}
        */
        #wordDescCont > div > b:after{
            content: "";
            top: -40px;
            left: -53px;
            width: 150px;
            height: 150px;
            position: absolute;
            z-index: 1;
            background-image: url(images/stamp1.svg?c=e30d0d);
            background-size: cover;
        }
        #wordDescCont > div > b:before{
            content: "";
            top: -83px;
            left: -64px;
            width: 150px;
            height: 150px;
            position: absolute;
            z-index: 0;
            background-image: url(images/grunge1.svg?c=f0d9b5);
            background-size: cover;
            transform: rotate(46deg);
        }

    #wordDescCont > div > b.alt{
        font-family: "Fraunces", serif;
        font-size: 54px;
        right: 27px;
        width: 65px;
        top: 25px;
    }
        #wordDescCont > div > b.alt:after{
            top: -41px;
            left: -43px;
        }

	#wordDescCont > div > p{
		/* description */
		font-size:14px;
		margin:0;
        min-height: 150px;
		
		
		position:relative;
        //*text-shadow: 0 0 20px #f0d9b5,0 0 20px #f0d9b5,0 0 20px #f0d9b5,0 0 20px #f0d9b5,0 0 20px #f0d9b5,0 0 20px #f0d9b5,0 0 20px #f0d9b5,0 0 20px #f0d9b5,0 0 20px #f0d9b5,0 0 20px #f0d9b5,0 0 20px #f0d9b5,0 0 20px #f0d9b5,0 0 20px #f0d9b5,0 0 20px #f0d9b5,0 0 20px #f0d9b5,0 0 20px #f0d9b5;*/
        /*box-shadow: inset 0px -176px 20px -30px #f0d9b5;*/
	}

        #wordDescCont > div > p > div#block{
            width: 100px;
            height: 40px;
            float: right;
            
        }
        #wordDescCont > div > p.scrolling{
            max-height: 150px;
            overflow-y: scroll;
            overflow-x: hidden;
            padding-right: 15px;
        }
            #wordDescCont > div > p.scrolling > div#block{
                margin-right: -20px;
            }
    
		#wordDescCont > div > p:after{
			content:"";
			display:none;
			position:absolute;
			left:0;
			bottom:0;
			width:100%;
			height:50px;
            
			/*box-shadow: inset 0px -30px 21px -27px #f0d9b5;*/
			z-index:1;
		}
	
		#wordDescCont > div > p > span{
			display:block;
			margin-bottom:10px;
			padding-bottom:10px;
			box-shadow:0 2px 0 0 rgb(255 255 255 / 35%), 0 1px 0 0 rgb(99 20 14 / 40%);
		}
		#wordDescCont > div > p > span:last-child{
			padding-bottom:0;
			margin-bottom:0;
			box-shadow:none;
		}
	
	#wordDescCont > div > a{
		font-size:10px;
		color:#5f1805;
		display:inline-block;
		opacity:0.5;
		
	}
	#wordDescCont > div > a#iknow{
		opacity:1;
		float:right;
		margin-top:4px;
		font-size:12px;
		
		background:rgb(255 255 255 / 34%);
		border-radius:20px;
		padding:2px 10px;
		
		text-decoration:none;
	}
	
	#wordDescCont > div > small{
		
		clear:both;
		display: block;
		text-align: center;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		font-size: 12px;
		padding: 5px 0;
		background: #61160a;
		color: #f0d9b9;
		letter-spacing:1px;
		border-bottom-left-radius: 20px;
		border-bottom-right-radius: 20px;
	}
	
#overlay{
    display: none;
    position: fixed;
    top:0;
    left:0;
    z-index: 101;
    background:rgba(0,0,0,0.75);
    width: 100vw;
    height: 100vh;
}
    #overlay.flash:after{
        content:"";
        width:100%;
        height:100%;
        position: absolute;
        top:0;
        left:0;
        background:#FFF;
    }
    #overlay.flash.fadeOut:after{
        animation: fadeOut 0.6s ease forwards;
    }

.popup_cont{
    transition: opacity,margin 200ms;
    display: none;
    opacity: 1;
    position: fixed;
    width: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%);
    max-width: 300px;
    background: #FFF;
    z-index: 101;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
    margin-top: -10px;
}
	.popup_cont .header{
		background: #ed5f38;
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		padding: 8px 10px;
		box-shadow: inset 0 -1px 0 0 rgb(0 0 0 / 50%);
		transition:all 200ms ease;
	}
	#popup_login.reg.popup_cont .header{
		background: #3faaac;
	}
		.popup_cont .header span {
			font-size: 14px;
			font-weight: bolder;
			color: #FFF;
			line-height: 16px;
			/*padding-top: 5px;*/
			padding-left: 5px;
			letter-spacing: 1px;
			display: inline-block;
		}
		.popup_cont .content {
			padding: 20px;
		}
		.popup_cont small{
			text-align:left;
			display:inline-block;
			margin-top:10px;
		}
		.popup_cont small#error{
			display:none;
			float:right;
			color:red;
		}
		
		#popup_login.popup_cont a{
			color:#3faaac;
		}
		
		#popup_login.reg.popup_cont a{
			color:#ed5f38;
		}
		
		#popup_login #success{
			display:none;
			color:#ed5f38;
			text-align:center;
		}
		
		.textbox{
			-webkit-appearance: none;
			background: #FFF;
			width: calc(100% - 20px);
			font-family: 'Poppins', sans-serif;
			line-height: 1.2;
			text-size-adjust: none;
			padding: 7px 10px;
			border: 0;
			box-shadow: 0 0 0 1px #f15d41;
			border-radius: 10px;
			font-size: 24px;
			text-align: center;
			text-align-last: center;
			color: #111;
			margin-bottom: 10px;
			transition:all 200ms ease;
		}
		.butt{
            display: inline-block;
            cursor: pointer;
            padding: 10px 10px 10px;
            font-weight: 600;
            font-size: 12px;
            line-height: 1;
            letter-spacing: 1px;
            background: #FFF;
            border-radius: 8px;
            margin-right: 2px;
            text-align: center;
            width: calc(100% - 43px);
            box-shadow: inset 0 -4px 0 0 rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.25);
            padding-bottom: 12px !important;
            vertical-align: top;
            color: rgba(0,0,0,0.85);
            transition: all 100ms cubic-bezier(0.65, 0.05, 0.36, 1);
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
		}
        .butt.disabled{
            cursor: default;
            opacity:0.5;
        }
		.butt.square{
			width: 50px;
			height: 50px;
			margin: 5px;
			padding: 10px;
		}
			.butt.square i{
				font-size:30px;
				margin-bottom:5px;
				color:#f15d41;
			}

        .butt.green{
            color:#FFF;
            background: #e34f15;
            box-shadow: inset 0 -1px 0 0px rgb(255 255 255 / 22%), 0 5px 0px 0px #aa2100, 0 6px 0px 0px rgb(204 57 0);
        }
        .butt.long{
            width: calc(100% - 20px);
        }
        .butt.mini{
            display: inline;
            padding: 5px 20px;
            text-decoration: none;
            vertical-align: unset;
        }
		
		
		#popup_login:not(.reg) .textbox[name='email']{
			display:none;
		}
		#popup_login.reg .textbox[name='email']{
			font-size:16px;
		}
		#popup_login.reg .textbox, #popup_login.reg .textbox:focus{
			box-shadow: 0 0 0 1px #3faaac;
		}
		
		.passcode{
			width: 45px;
			display: inline-block;
			padding: 5px;
			font-size: 40px;
			font-weight: 400;
			margin: 0px 3px;
			margin-bottom:10px;
		}
		
	#userButt{
		background: #5b5b5b;
		box-shadow: inset -1px -1px 0 0px rgb(255 255 255 / 22%), 3px 3px 0px 0px #343434, 4px 4px 0px 0px rgba(255, 255, 255, 0.4);
		position: absolute;
		transform: rotate(45deg) scale(0.85);
		right: -100px;
		top:0;
		width: 30px;
		height: 30px;
		margin-top: 10px;
		margin-right: 10px;
		text-align: center;
		border-radius: 5px;
		cursor:pointer;
		z-index:100;
	}
		body:not([uid='']) #userButt{
			background: #ea612c;
			box-shadow: inset -1px -1px 0 0px rgb(255 255 255 / 22%), 3px 3px 0px 0px #aa2100, 4px 4px 0px 0px rgb(204 57 0);
		}
		body[data-done='true'] #userButt{
			background: #f0d9b5;
			box-shadow: inset -1px -1px 0 0px rgb(255 255 255 / 22%), 3px 3px 0px 0px #c2b280, 4px 4px 0px 0px rgb(152 101 8);
		}
		
		#userButt span{
			display: block;
			color: #FFF;
			transform: rotate(-45deg);
			font-weight: 800;
			margin-left: 0;
			font-size: 21px;
			margin-top: -1px;
		}
		body[data-done='true'] #userButt span{
			color:#1a1a1a;
		}
		
#countdown{
	display:none;
	position:absolute;
	top:0;
	left:0;
	margin:5px;
    z-index: 101;
    cursor: pointer;
    
}
    #countdown > p,
    #countdown > b,
    #countdown > small,
	#countdown > u,
	#countdown:not(.active) #stats_completes > b,
	#countdown:not(.active) #stats_highscore > b{
        display:none;
    }
	#countdown.tic > span{
		opacity:0.85;
	}
	#countdown > span,
    #countdown > b{
		font-family: "Micro 5", sans-serif;
		color: #ea612c;
		font-size: 24px;
	}
	body[data-done='true'] #countdown > span,
	body.sketch #countdown > span{
		color:#FFF;
	}
	body[chase-complete='true'] #countdown > span{
		color:#ffeb00;
	}
		/*
        body[chase-complete='true'] #countdown:not(active) > span:after{
            font: normal normal normal 14px / 1 FontAwesome;
            content: "\f091";
        }
		*/
		body[chase-complete='true'] #countdown:not(active) > u{
			display: inline-block;
			color: #ffeb00;
			margin-left: 5px;
			text-decoration: none;
		}
			body[chase-complete='true'] #countdown:not(active) > u > span{

				font-family: "Micro 5", sans-serif;
				font-size: 24px;
				margin-left: 2px;
				display: inline-block;
			}
		body[chase-complete='true'] #stats_highscore img {
			width: 8pt;
			margin-right: 2px;
			transform: translateY(1px);
		}

#countdown.active{
    top:10%;
    left:50%;
    text-align: center;
    /*transform:translate(-50%,calc(-50% - (50px)));*/
    perspective:100px;
}
#countdown.active > *:not(#daily_info){
    transform: rotateX(8deg) !important;
}
#countdown.active > span{
    font-size: 100px;
    width: 350px;
    height: 50px;
    display: block;
    line-height: 50px;
    transform: translateX(5px);
    text-align: center;
    text-shadow: 0 0 10px red;
}
#countdown.active *:not(span){
    text-shadow: 0 5px 10px #000, 0 5px 10px #000;
}

#countdown.active > b{
    display: block;
    font-size: 27px;
    font-weight: 100;
    text-align: left;
    margin-left:6px;
}
#countdown.active > p{
    color: #FFF;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.4pt;
    margin: 0;
    margin-top: 2px;
    text-align: left;
    margin-left: -6px;
}
#countdown.active > p > b{
    color:#ea612c;
}
#countdown.active > small{
    color: #FFF;
    display: block;
    letter-spacing: 1px;
    opacity: 0.75;
    text-align: right;
    margin-right: 20px;
    margin-top: -7px;
    margin-top: 1;
}

#countdown #daily_info{
	display:none;
}
	#countdown.active #daily_info{
		/*border-top: 1px solid rgba(255,255,255,0.5);*/
		display: block;
		color: #FFF;

		padding: 10px;
		font-weight: 100;
		font-size: 10px;
		max-width:300px;
		margin:auto;
		margin-top: 30px;
		box-shadow:0 0 0 1px #ea612c;
		border-radius:10px;
	}
		#countdown.active #daily_info b{
			font-weight:100;
			font-size:14px;
		}

#stats_completes > b,
#stats_highscore > b{
	font-size: 15px;
    font-weight: 100;
    text-transform: uppercase;
}

body[g="false"] .guest_cont{
    display:none;
}

#blaze_progress{
    position: absolute;
    width: 30px;
    height: 30px;
    bottom: 50px;
    left: 10px;
}
	#blaze_progress i{
		position: absolute;
		width: 100%;
		height: 100%;
		bottom: 0;
		left: 0;
	}
	#blaze_progress i:after{
		content: "";
		position:absolute;
		width: 100%;
		height: 30px;
		bottom: 0;
		left: 0;
		background-image: url(images/flame.svg?c=ea612c);
		background-size: 30px 30px;
		background-repeat: no-repeat;
		background-position: bottom;
	}
	#blaze_progress i:nth-child(1){
		height: 10%;
		transform: skewY(30deg) translateY(3px);
		overflow: hidden;
		bottom: 0;
	    transition:all 200ms cubic-bezier(0.7, 0.08, 0.7, 1.51);
	}
		#blaze_progress i:nth-child(1):after{
			transform: skewY(-30deg);
			bottom: 3px;

		}
	#blaze_progress i:nth-child(2){
		z-index:-1;
		
	}
	#blaze_progress i:nth-child(2):after{
		background-image: url(images/flame.svg?c=999999);
	}


.flame-sprite{
    background: url('images/sprite_sheet.png');
    height: 274px;
    width: 228px;
    animation: flameAnimation 600ms steps(6) infinite;
    transform: scale(0.25);
    position: absolute;
    bottom: -110px;
    right: -94px;
    z-index: 99;
	display:none;
}

body[data-step='50'] .flame-sprite{
    animation: flameAnimation 450ms steps(6) infinite;
}
body[data-step='100'] .flame-sprite{
    animation: flameAnimation 300ms steps(6) infinite;
    bottom: -30px !important;
    transform: scale(0.5);
}

/*************************************************************************************/

#popup_saves{
    max-width: none;
    width: 100vw;
    max-height: 90%;
    background: none;
    text-align: center;
    top: 0;
    transform: translate(-50%, 80px);
    overflow-y: scroll;
}
    #popup_saves > div{
        /*
        overflow-x: scroll;
        height:300px;
        white-space: nowrap;
        */
        padding:0 10px;
        padding-bottom: 30px;
    }
    #popup_saves > div > .saveItem{
        width:150px;
        display:inline-block;
        margin:10px;
        text-align: center;
        padding:5px;
        background:#FFF;
        font-size: 12px;
        position: relative;
    }
        #popup_saves > div > .saveItem img{
            background:rgba(0,0,0,0.5);
            width:100%;
            height:auto;
            position: relative;
            z-index: 1;
        }
            /*
            #popup_saves > div > .saveItem > .saveCont > .saveScore{
                background: #ea612c;
                color: #FFF;
                font-size: 20px;
                line-height: 26px;
                position: absolute;
                top: -5px;
                right: -5px;
                border-radius: 100px;
                font-family: 'Micro 5';
                width: 25px;
                height: 25px;
                text-align: center;
                box-shadow: 0 0 0 3px #FFF;
            }
            */
            #popup_saves > div > .saveItem > .saveCont > .saveScore{
                color: #1a1a1a;
                font-size: 20px;
                line-height: 26px;
                position: absolute;
                top: -5px;
                right: -5px;
                border-radius: 100px;
                font-family: 'Micro 5';
                width: 25px;
                height: 25px;
                text-align: center;
                z-index: 1;
                transform: scale(1.5) rotate(20deg);
            }
            #popup_saves > div > .saveItem > .saveCont > .saveScore:after{
                 color: #fde507;
                font: normal normal normal 14px / 1 FontAwesome;
                content: "\f091";
                font-size: 35px;
                position: absolute;
                top: 1px;
                left: -4px;
                z-index: -1;
                /* transform: rotate(45deg); */
            }
            
            #popup_saves > #save_complete_save > .saveItem > .saveCont > .saveScore{
                color:#FFF;
                top: 5px;
                right: 5px;
            }
            #popup_saves > #save_complete_save > .saveItem > .saveCont > .saveScore:after{
                content: "";
                background-image: url(images/flame.svg?c=ea612c);
                width: 35px;
                height: 35px;
                background-repeat: no-repeat;
                top: -10px;
                left: 0px;
            }




            #popup_saves > div > .saveItem > .saveCont > a{
                display: block;
                text-decoration: none;
                background: #ea612c;
                color: #FFF;
                text-transform: uppercase;
                border-radius: 5px;
                padding: 2px 5px;
                font-size: 14px;
                letter-spacing: 1px;
            }

            #popup_saves > div > .saveItem > .saveCont > .saveDate {
                font-family: 'Caveat';
                font-size: 22px;
                font-weight: bolder;
                margin-top: -4px;
                opacity: 0.75;
                /*color:#ea612c;*/
            }

    #popup_saves > div > .saveItem[data-mode='random'] > .saveCont > a{
        background: #3faaac;
    }
    #popup_saves > div > .saveItem[data-mode='random'] > .saveCont > .saveDate{
        /*color:#3faaac;*/
    }


#popup_tuts .content{
    padding:0;
    padding-bottom:20px;
}
#popup_tuts img{
    width:100%;
    display: block;
}
#popup_tuts p{
    margin:0;
    padding:20px;
}
#popup_tuts .butt{
    margin-bottom: 10px;
}
    .slide_cont div:not(.active){
        display:none;
    }

textarea{
    /*display: none;*/
    width: 300px;
    height:150px !important;
    margin-top: 40px;
    margin-left: 20px;
    font-size:12px;
}

@keyframes flameAnimation {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1368px -0px; /* total width of sprite sheet */
  }
}
/*
@media only screen and (min-width: 1225px){
    #countdown.active{
        transform:translate(-50%,calc(-50% - (50px))) scale(3.5);
    }
}
@media only screen and (max-width: 1225px){
    #countdown.active{
        transform:translate(-50%,calc(-50% - (50px))) scale(3);
    }
}
@media only screen and (max-width: 1080px){
    #countdown.active{
        transform:translate(-50%,calc(-50% - (50px))) scale(2);
    }
}
@media only screen and (max-width: 768px){
    #countdown.active{
        transform:translate(-50%,calc(-50% - (50px))) scale(1.5);
    }
}
@media only screen and (max-width: 425px){
    #countdown.active{
        transform:translate(-50%,calc(-50% - (50px))) scale(1);
    }
}
*/
@media only screen and (min-width: 1225px){
    #countdown.active{
        transform:translate(-50%,20%) scale(2);
    }
}
@media only screen and (max-width: 1225px){
    #countdown.active{
        transform:translate(-50%,20%) scale(2);
    }
}
@media only screen and (max-width: 1080px){
    #countdown.active{
        transform:translate(-50%,10%) scale(2);
    }
}
@media only screen and (max-width: 768px){
    #countdown.active{
        transform:translate(-50%,10%) scale(1.5);
    }
}
@media only screen and (max-width: 600px){
    #countdown.active{
		top: 10%;
		transform: translate(-50%,0) scale(1);
    }
}

#letterPhantom{
    /*box-shadow:0 0 0 4px rgba(255,255,255,0.25);*/
    opacity: 0;
    border:2px dashed rgba(255,255,255,0.25);
    transform:scale(0.85);
    margin-left:-2px;
    border-radius: 8px;
}
    #letterPhantom span{
        color: #FFF;
        text-transform: uppercase;
        font-weight: 800;
        font-size: 27px;
        text-align: center;
        display: block;
        opacity: 0.15;
    }

#bgGrid{
	width:100vw;
	height:0vh;
	bottom:0;
	position:absolute;
	background:#2976ba;
	background-image:url("https://blazechase.com/images/grid.jpg") !important;
	z-index:98;
    transform-origin: top;
	overflow: hidden;
    box-shadow: 0 0 0 1px #f4f6f8, 0 0 20px 16px, inset 0px 34px 90px -50px #63fff7;
	/*background-position:center center;*/
}
#bgGrid #cont3 .letter div{
	/*background-image: url(images/square-sketch1.png) !important;*/
    box-shadow: none;
    background-color: transparent !important;
    background-size: 46px;
    background-position: center;
}

#bgGrid #cont3 .letter div span:nth-child(1){
	font-family: "Reenie Beanie", cursive;
    text-transform: lowercase;
    position: absolute;
    top: 10px;
    right: 9px;
    text-align: right;
    font-size: 25px;
    font-weight: 400;
    color: #FFF;
}

#bgGrid #cont3 .letter{
    opacity: 1;
	transform: translateY(0px) scale(1);
    box-shadow:none;
}
#bgGrid #cont3 .letter{
	animation:none;    
}

#bgGrid #cont3 .letter div span:nth-child(2){
	display:none;
}
	#bgGrid #cont3 .letter[data-score="1"]:before{
		content:"1";
	}
	#bgGrid #cont3 .letter[data-score="2"]:before{
		content:"2";
	}
	#bgGrid #cont3 .letter[data-score="3"]:before{
		content:"3";
	}
	#bgGrid #cont3 .letter[data-score="4"]:before{
		content:"4";
	}
	#bgGrid #cont3 .letter[data-score="5"]:before{
		content:"5";
	}
	#bgGrid #cont3 .letter[data-score="8"]:before{
		content:"8";
	}
	#bgGrid #cont3 .letter[data-score="10"]:before{
		content:"10";
	}
	#bgGrid #cont3 .letter[data-index="0"]:before,
	#bgGrid #cont3 .letter[data-index="9"]:before{
		background-image: url(images/square-sketch1.png) !important;
	}
	#bgGrid #cont3 .letter[data-index="1"]:before,
	#bgGrid #cont3 .letter[data-index="10"]:before{
		background-image: url(images/square-sketch2.png) !important;
	}
	#bgGrid #cont3 .letter[data-index="2"]:before,
	#bgGrid #cont3 .letter[data-index="11"]:before{
		background-image: url(images/square-sketch3.png) !important;
	}
	#bgGrid #cont3 .letter[data-index="3"]:before,
	#bgGrid #cont3 .letter[data-index="12"]:before{
		background-image: url(images/square-sketch4.png) !important;
	}
	#bgGrid #cont3 .letter[data-index="4"]:before{
		background-image: url(images/square-sketch5.png) !important;
	}
	#bgGrid #cont3 .letter[data-index="5"]:before{
		background-image: url(images/square-sketch6.png) !important;
	}
	#bgGrid #cont3 .letter[data-index="6"]:before{
		background-image: url(images/square-sketch7.png) !important;
	}
	#bgGrid #cont3 .letter[data-index="7"]:before{
		background-image: url(images/square-sketch8.png) !important;
	}
	#bgGrid #cont3 .letter[data-index="8"]:before{
		background-image: url(images/square-sketch9.png) !important;
	}
	
	#bgGrid #cont3 .letter:before{
		font-weight: 100;
		/* font-family: "Caveat", cursive; */
		font-family: "Reenie Beanie", cursive;
		/* color: #1a1a1a !important; */
		display: block;
		width: 100%;
		height: 100%;
		font-size: 40px;
		color: #9cfffc;
		opacity: 0.85;
		background-size: 46px;
		background-position: center;
		position: absolute;
		text-align: center;
		transform: translateX(-2px);
		line-height: 35px;
		text-align: left;
		text-indent: 8px;
	}
	#bgGrid #cont3 .letter > u{
		content: "+";
		font-family: "Reenie Beanie", cursive;
		position: absolute;
		width: 20px;
		height: 15px;
		
		color: #ffd336;
		font-size: 41px;
		font-weight: 100;
		background: #256cac;
		display: block;
		line-height: 13px;
		text-align: center;
		border-radius: 20px;
		opacity:0;
		text-decoration:none;
	}
		#bgGrid #cont3 .letter > u.ver{
			opacity:1;
			top: 30px;
			left: 10px;
		}
		#bgGrid #cont3 .letter > u.hor{
			opacity:1;
			top: 15px;
			left: 30px;
		}
		#bgGrid #cont3 .letter > u.equal{
			color:#ffd336;
            /*display: none;*/
		}
		
	
	
	
	#bgGrid #cont3 .letter div span:last-child,
	#bgGrid #cont3 .letter div:after{
		display:none !important;
	}
	
body.sketch:before,
body.sketch:after{
	display:none;
}

body[scale='1.0'] #cont{
	transform:scale(1);
}
body[scale='0.9'] #cont{
	transform:scale(0.9);
}
body[scale='0.8'] #cont{
	transform:scale(0.8);
}
body[scale='0.7'] #cont{
	transform:scale(0.7);
}
body[scale='0.6'] #cont{
	transform:scale(0.6);
}
body[scale='0.5'] #cont{
	transform:scale(0.5);
}
body[scale='1.1'] #cont{
	transform:scale(1.1);
}
body[scale='1.2'] #cont{
	transform:scale(1.2);
}
body[scale='1.3'] #cont{
	transform:scale(1.3);
}
body[scale='1.4'] #cont{
	transform:scale(1.4);
}
body[scale='1.5'] #cont{
	transform:scale(1.5);
}
#secondsPlayed{
    display: none;
    position: absolute;
    top:30px;
    left:10px;
    z-index: 100;
}
    #secondsPlayed span{
        color:#FFF;
    }

#zoomSpot{
    position: fixed;
    z-index: -1;
    width:50px;
    height:calc(100vh - 130px);
    top:50px;
    right: 0px;
}
#completePhotoButt{
    display:none;
    bottom: 50px;
    position: absolute;
    left: 11px;
    color: rgba(255, 255, 255, 0.55);
}

body[chase-complete='true'] #completePhotoButt{
    display: block;
}

#completePhoto{
    display:none;    
    position: absolute;
    top: 50%;
    left: 50%;
    
    /*transform: translateX(-50%) translateY(-50%) rotate(-2deg) translateZ(0) scale(1.1);*/
    
    backface-visibility: hidden;
    will-change: transform;
    transform-origin: center center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    width: 300px;
    background: #FFF;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.8);
    z-index:101;
    overflow: hidden;
}
    #completePhoto.visible{
        display:inline-block;
        animation: zoomInCentered 0.5s ease-in-out forwards;
    }
    #completePhoto .photoItem{
    }
	#completePhoto .photoItem > .photoImg > img{
		width:100%;
        height:auto;
        opacity:0;
	}
    #completePhoto .photoItem > .photoImg{
        background: #000;
        overflow: hidden;
        border-radius: 10px;
        display: flex;
        margin-bottom: 2px;
        position: relative;
    }
        #completePhoto .photoItem > .photoImg:after{
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            /* background: red; */
            box-shadow: inset 0 0 10px;
        }
	#completePhoto .photoScore{
		width: 35%;
		float: left;

		font-size: 20px;
		font-weight: 900;
		color: #ee5e38;
		padding-left:5px;
	}
	#completePhoto .photoScore img{
		width:15px;
        transform: translateY(2px);
	}

.photoUser{
	margin-bottom:10px;
	line-height: 14px;
}
.photoUser .photoIcon{
	display:inline-block;
	width:20px;
	height:20px;
	background:#ea612c;
	border-radius:5px;
	box-shadow:inset -1px -1px 0 0px rgb(255 255 255 / 22%), 2px 2px 0px 0px #aa2100, 3px 3px 0px 0px rgb(204 57 0);
	transform:rotate(45deg);
	margin-right:8px;
	float:left;
}
	.photoUser:after{
		content:"";
		clear:both;
	}
	.photoUser > span{
		letter-spacing:1px;
		font-weight:400;
	}
	.photoUser .photoIcon span{
		display: block;
		font-size: 14px;
		text-align: center;
		line-height: 20px;
		color: #FFF;
		font-weight: 900;
		transform: rotate(-45deg) translate(2px, 2px);
		margin-right:5px;
	}
	.photoUser .photoDate{
		font-size:12px;
	}
	
	.photoTime{
		width:60%;
		font-size:14px;
		text-align:right;
		float:right;
		line-height: 30px;
		padding-right:5px;
	}
		.photoTime i{
			font-size:20px;
			font-weight:100;
			vertical-align:middle;
		}
		
.photoCont{
	clear:both;
	margin-top:10px;
}
	.photoCont p{
		font-size:14px;
		margin-bottom:0;
	}
	.photoCont p b{
		font-weight:600;
	}
		
.photoCont p span b {
    color: #ea612c;
    text-decoration: underline;
}
.photoCont p span u {
    color: #3faaac;
	font-weight: 600;
    text-decoration: none;
}

/***********************************************/

.skeleton {
	position: relative;
	overflow: hidden;
	background-color: #adadad;
	border-radius: 4px;
    color:transparent;
}

.skeleton.text {
	width: 100%;
	height: 1em;
	margin-bottom: 0.5em;
}

.skeleton::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	height: 100%;
	width: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
	animation: shimmer 1.2s infinite;
}
#cl{
    display: none;
}
@keyframes shimmer {
	100% {
		left: 100%;
	}
}