@font-face {
	font-family: "Bebas";
	src: url("BebasKai.otf") format("opentype");
}

@font-face {
	font-family: "Script";
	src: url("Lane.ttf") format("truetype");
}

@font-face {
  font-family: "Title";
  src: url("Anton.ttf") format("truetype");
}

@font-face {
	font-family: "Montserrat";
	src: url("Montserrat-Regular.otf") format("opentype");
}

@keyframes slideOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}

@keyframes slideIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}

@keyframes possearch {
from{
	top: 50%;
	left: 50%;
	margin-left: -302px;
	margin-top: -30px;
}
to{
	top: 0%;
	left: 0%;
	margin-left: 0px;
	margin-top: 0px;
}
}

:root{
  --title-yellow:#deb97f;
}

html{
	overflow:hidden;
}

body {
  position:relative;
	width:100%;
	height:100%;
	overflow-x: hidden;
	overflow-y: hidden;
	background: black;
	color: white;
	font-family: "Script";
	padding: 0px;
	margin: 0px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

p{
  display:inline;
}

*:focus {
	outline: none;
}

.background{
  position: absolute;
  display: block;
  top: 0px;
  width: 100%;
  height: 100%;
  min-width:1200px;
  background-image: url("../img/WH-BW.png");
  opacity: 0.2;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1
}

.login-screen {
	position: absolute;
	display: block;
	background: none;
	width: 260px;
	height: 200px;
	z-index: 2;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	font-family: "Title";
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
}

.loged-in {
	position: absolute;
	display: block;
	background: none;
	width: 260px;
	height: 200px;
	z-index: 2;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	font-family: "Title";
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
	-webkit-animation-name: slideOut;
	-webkit-animation-duration: 2s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: forwards;
}

.login-input {
	width: 260px;
	height: 30px;
	background: rgba(0,0,0,0.5);
	border-radius: 10px;
	border-width: 2px;
	border-color: rgba(255,255,255,0.6);
	border-style: solid;
	padding-left: 10px;
	padding-right: 10px;
  margin-top:10px;
	color: white;
  font-size:14px;
}

.login-submit {
	width: 260px;
	height: 30px;
	background: rgba(100,79,45,0.8);
	border-radius: 10px;
	border-width: 2px;
	border-color: rgba(0,0,0,0.6);
	border-style: none;
	padding-left: 10px;
	padding-right: 10px;
  margin-top:10px;
  font-size:14px;
	color: white;
}

.login-submit:hover {
	cursor: pointer;
	background: rgba(0,0,0,0.8);
}

.Error-Loggin-Message{
	display:none;
	position:absolute;
	width:255px;
	background:none;
	font-size:12px;
	text-align:center;
	color:#DEB97F;
}

.Error-Loggin-Message-Visible{
	display:block;
	position:absolute;
	width:255px;
	background:none;
	font-size:12px;
	text-align:center;
	color:#DEB97F;
}

.divContainer{
	display:block;
	position:relative;
	padding-left:0px;
	margin-top:5px;
}

.name-panel {
	display: block;
	position: absolute;
	right: 10px;
	top: 10px;
	font-family:'Montserrat';
	background: none;
	opacity: 0;
	text-align: right;
}

.name-panel-visible {
	display: block;
	position: absolute;
	right: 10px;
	top: 10px;
	background: none;
	opacity: 0;
	font-family:'Montserrat';
	text-align: right;
	-webkit-animation-name: slideIn;
	-webkit-animation-duration: 2s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: forwards;
	-webkit-animation-delay: 1s;
	z-index: 3;
}

.search-input {
	width: 400px;
	height: 50px;
	background: rgba(255,255,255,0.2);
	border-radius: 10px;
	border-width: 2px;
	border-color: rgba(255,255,255,0.6);
	border-style: solid;
	padding-left: 10px;
	padding-right: 10px;
	color: white;
	font-size: 16px;
}

.buscador {
	display: none;
	position: absolute;
	width: 400px;
	height: 80px;
	background: none;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
	left: 50%;
	top: 50%;
	opacity: 0;
	z-index:3;
	font-family:"Montserrat";
	color:var(--title-yellow);
}

.buscador-visible {
	display: block;
	position: absolute;
	width: 400px;
	height: 80px;
	background: none;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
	left: 50%;
	top: 50%;
	margin-left: -200px;
	margin-top: -50px;
	opacity: 0;
	font-family:"Montserrat";
	color:var(--title-yellow);
	-webkit-animation-name: slideIn;
	-webkit-animation-duration: 2s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: forwards;
	-webkit-animation-delay: 1s;
	z-index:3;
}

.buscador-set-position {
	display: block;
	position: absolute;
	width: 400px;
	height: 80px;
	background: none;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
	left: 50%;
	top: 50%;
	font-family:"Montserrat";
	color:var(--title-yellow);
	margin-left: -200px;
	margin-top: -50px;
	opacity: 1;
	-webkit-animation-name: possearch;
	-webkit-animation-duration: 1.5s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: forwards;
	z-index:3;
}

.inventory{
	display:none;
	position:absolute;
	float:left;
	opacity:0;
	margin-top:90px;
	height:calc(100% - 90px);
	width:100%;
	z-index:3;
	background:none;
}

.inventory-visible{
	display:block;
	position:absolute;
	float:left;
	margin-top:90px;
	height:calc(100% - 90px);
	width:100%;
	z-index:3;
	background:none;
	opacity:0;
	-webkit-animation-name: slideIn;
	-webkit-animation-duration: 2s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: forwards;
	-webkit-animation-delay: 1s;
}

.item-viewer{
	display:inline-block;
	width:100%;
	z-index:2;
}

.mCS-myscroll.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #81683C; }
.mCS-myscroll.mCSB_scrollTools .mCSB_draggerRail{ background-color: rgba(255,255,255,0.2); }
.mcS-myscroll.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mcS-myscroll.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{background-color:var(--title-yellow);}
