/* GLOBAL */
html {
    height: 100%;
}
body {
    background: url(https://www.wonderland-fantasy.com/assets/img/main-bg.jpg) top center no-repeat;
	display: grid;
    grid-template-rows: auto 1fr auto;
    height: 100%;
}

/* HEADER */
.header-area {
    min-height: 24px;
    background: rgb(185,185,185);
    background: linear-gradient(0deg, rgba(185,185,185,1) 0%, rgba(221,221,221,1) 35%);
	padding: 2px 5px;
	display: grid;
    grid-template-columns: 1fr 1fr;
}
.header-area .header-right {
	text-align: right;
}

/* BODY */
.main-pane {
    display: grid;
    grid-template-columns: 1fr 4fr;
    grid-gap: 5px;
    margin: 5px;
	overflow-y: auto;
	overflow-x: hidden;
}

.left-pane.main-menu {
    margin: 5px;
    padding: 5px;
    border: 2px solid #3bb2d0;
    background-color: rgba(255,255,255,0.2);
    border-radius: 10px;
}
.right-pane.main-content {
    margin: 5px;
    padding: 5px;
    border: 2px solid #3bb2d0;
    background-color: rgba(255,255,255,0.2);
    border-radius: 10px;
    overflow-x: hidden;
    overflow-y: auto;
}
/* FOOTER*/
#fade-panel .im {
    display: inline-block;
	width: 80px;
	height: 80px;
	position: relative;
}
#fade-panel .im:after {
    content: " ";
	display: block;
	width: 64px;
	height: 64px;
	margin: 8px;
	border-radius: 50%;
	border: 6px solid #fff;
	border-color: #fff transparent #fff transparent;
	animation: fade-panel-im 1.2s linear infinite;
}
@keyframes fade-panel-im {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}