#unity-container {
	position: relative;
	width: 866px;
    height: 788px;
    background: url(../images/demon_extra/tv.png) no-repeat center;
    margin: 0 auto;
}
#unity-container.unity-desktop {
	text-align: center;
	transform: translateY(-35px);
}
#unity-container.unity-mobile {
	position: fixed;
	width: 100%;
	height: 100% 
}
#unity-canvas {
	background: #231F20 ;
    width: 764px;
    height: 519px;
    margin-top: 41px;
}
.unity-mobile #unity-canvas {
	width: 100%;
	height: 100% 
}
#unity-loading-bar {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none 
}
#unity-logo {
	scale: 3;
	height: 128px;
	width: 128px;
	background: url('../images/icons/pixelicon.png') no-repeat center;
	image-rendering: pixelated;
	transform: translateX(5px);
}
#unity-progress-bar-empty {
	width: 141px;
	height: 18px;
	margin-top: 10px;
	margin-left: 6.5px;
	background: url('../images/demon_extra/progress-bar-empty-dark.png') no-repeat center 
}
#unity-progress-bar-full {
	width: 0%;
	height: 18px;
	margin-top: 10px;
	background: url('../images/demon_extra/progress-bar-full-dark.png') no-repeat center 
}
#unity-footer {
	position: absolute;
    float: left;
    display: inline-block;
    transform: translateX(-38px);
    margin-top: 41px;
}
.unity-mobile #unity-footer {
	display: none 
}
#unity-webgl-logo {
	float:left;
	width: 204px;
	height: 38px;
	background: url('../images/icons/pixelicon.png') no-repeat center 
}
#unity-build-title {
	float: right;
	margin-right: 10px;
	line-height: 38px;
	font-family: arial;
	font-size: 18px 
}
#unity-fullscreen-button {
	cursor:pointer;
	float: right;
	width: 38px;
	height: 38px;
	background: url('../images/demon_extra/fullscreen-button.png') no-repeat center 
}
#unity-warning {
	display: none !important
}

#turn-on-button{
	width: 50px;
  height: 50px;
  position: absolute;
  bottom: 7px;
  background-color: white;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-75%);
  font-size: 37px;
  color: black;
  cursor: pointer;
}

#light-bulb{
	width: 22px;
    height: 24px;
    position: absolute;
    bottom: 195px;
    left: 30px;
    background-color: red;
    border-radius: 7px;
}

#light-bulb.on{
	background-color: #00bdeb;
	transition: background-color 0.3s;
}

@media (max-width: 991px){
	#unity-container{
		display: none;
	}	
}

.not-liked{
    position: absolute;
    bottom: 30px;
    right: 25px;
    font-size: 50px;
    color: var(--dark-tea-green);
	transition-duration: 0.5s;
	transition-property: color;
}
.not-liked:hover{
	color: var(--tea-green);	
	cursor: pointer;
	transition-duration: 0.5s;
	transition-property: color;
}





.heart {
  width: 100px;
  height: 100px;
  background: url("https://cssanimation.rocks/images/posts/steps/heart.png") no-repeat;
  background-position: 0 0;
  cursor: pointer;
  transition: background-position 1s steps(28);
  transition-duration: 0s;
}
.heart.is-active {
  transition-duration: 1s;
  background-position: -2800px 0;
}

.placement {
	position: absolute;
	bottom: 5px;
	right: 5px;
	font-size: 50px;
}