html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
html, body {
    height: 100%;
}
canvas {
    display: block;
}
body {
    margin: 0;
}
#unity-container {
    width: 100%;
    height: 100%;
	position: relative;
}
#unity-canvas {
    width: 100%;
    height: 100%;
	background-image: url("green_2.jpg");
}
#loading-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	min-height: 600px;
}
#unity-loading-bar {
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#unity-logo {
    text-align: center;
}
#unity-logo img {

}
#unity-progress-bar-empty {

    width: 80%;
    height: 35px;
    margin: 0 auto;
    text-align: center;
    border: 2px solid rgba(250,249,160,1);
	border-radius: 5px;
    padding: 2px;
}
#unity-progress-bar-full {
    width: 0%;
    height: 100%;
    background: rgba(250,249,160,1);
}
#unity-loading-bar {
    top: 50%;
    position: sticky;
}
.light #unity-progress-bar-empty {
        background: rgba(250,249,160,1);
}
.light #unity-progress-bar-full {
        background: rgba(250,249,160,1);
}
.spinner,
.spinner:after {
  border-radius: 50%;
  width: 5em;
  height: 5em;
}
.spinner {

  margin: 0 auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  transform: translateZ(0);
  animation: spinner-spin 1.1s infinite linear;
}
.layer {
	max-width:1165px;
	min-width:375px;
    padding: 10px;
	top: 0;
    right: 0;
    left: 0;
    margin: auto;
    height: 100%;
}
.top-menu {
	height: 50px;
	border-radius: 15px;
	background: rgba(0,0,0,0.15);
	margin-top: 5px;
}
.card-layer {
	clear: both;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
	margin-top: 20px;
	height:300px;
}
.deck {
	float: left;
	width: 9.09%;
	height: 280px;
}
.deck b {
    display: block;
    text-align: center;
    font-size: 150px;
    font-family: sans-serif;
    color: rgba(255, 255, 255, 0.08);
}

.deck-inner {
	margin: 0 auto;
	height: 100%;
	width: 85%;
    display: grid;
    place-items: center;
	border: 3px solid rgba(255, 255, 255, .15);
	border-radius: 10px;
	background: rgba(255,255,255,0.10);
}
.deck-space {
	float:left;
	width: 26px;
	height: 270px;

}
.bottom {
    position: absolute;
    bottom: 20px;
    width: 100%;
    max-width: 1165px;
    padding-right: 20px;
}
.bottom-menu {
    float: left;
    width: 20%;
    height: 50px;
}
.bottom-menu-inner {
    height: 100%;
    width: 90%;
    border-radius: 15px;
	background: rgba(0,0,0,0.15);
}

.loadingAnim{width: 50%; padding-top: 200px;}
.loadingLogo{width: 80%}
@media only screen and (orientation: landscape) {
    .loadingAnim{width: 20%; padding-top: 200px;}
	.loadingLogo{width: 40%}
}
@media screen and (max-width: 700px) {
    .deck-inner {
        width: 95%;
        display: grid;
        border: 2px solid rgba(255, 255, 255, .15);
        border-radius: 5px;
    }
    .top-menu {
        height: 40px;
        border-radius: 7px;
    }
		#unity-canvas {
		background-size: 80px;
	}
}

@keyframes spinner-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}





.spinner {
    border-top: 1.1em solid rgba(255, 211, 37, 0.2);
    border-right: 1.1em solid rgba(255, 211, 37, 0.2);
    border-bottom: 1.1em solid rgba(255, 211, 37, 0.2);
    border-left: 1.1em solid rgba(63, 162, 255, 1);
}

#unity-progress-bar-empty {
    border-color: rgba(255, 211, 37, 0.7);
    width: 30%;
}

#unity-progress-bar-full {
    background: rgba(63, 162, 255, 1);
}

.light #unity-progress-bar-empty {
    border-color: rgba(255, 211, 37, 0.7);
}

.light #unity-progress-bar-full {
    background: rgba(63, 162, 255, 1);
}



#unity-progress-bar-empty {
    border-radius: 12px;
}

#unity-progress-bar-full {
    border-radius: 10px;
    transition: width 0.3s ease;
}
