@font-face {
    font-family: 'OP';
    src: url('OP.ttf');
}

body {
	background-color: rgba(0,0,0,1);
	text-align: center;
	font-family: OP;
}

.popup {
	display: none;
	background-image: url('../img/gui/background.png');
	width: 1000px;
	height: 600px;
	position: absolute;
	left: calc(50vw - 500px);
	top: calc(50vh - 300px);
	z-index: 3;
}

.popup button, .popup input, .popup label {
	background: transparent;
	color: yellow;
	line-height: 30px;
	font-size: 24px;
}
.popup button, .popup input {
	width: 400px;
	height: 50px;
	margin: 0 50px;
	padding: 10px 50px;
	border: yellow 2px solid;
}
.popup label {
	width: 400px;
	height: 30px;
	margin: 10px 50px;
	padding: 0;
}
.popup input {
	color: white;
}

.full {
	height:100%;
	width:100%;
}

.invert {
	-webkit-filter: grayscale(1) invert(1);
    filter: grayscale(1) invert(1);
}

.none:hover {
	pointer-events:auto;
}
.none:active {
	pointer-events:none;
}

.pad4 {
	padding: 4px;
}

.main-color {
	background-color: rgba(0,0,0,0.8);
	font-family: OP;
	text-align:center;
	color: rgba(192,128,64,0.8);
	border: 2px solid rgba(192,128,64,0.8);
	border-radius: 4px;
}
.main-color > .click:hover {
	background-color: rgba(64,32,0,0.8);
}

.main-color-basic {
	background-color: rgba(0,0,0,0.8);
	font-family: OP;
	color: rgba(192,128,64,0.8);
}

.main-color {
	background-color: rgba(0,0,0,0.8);
	font-family: OP;
	text-align:center;
	color: rgba(192,128,64,0.8);
	border: 2px solid rgba(192,128,64,0.8);
	border-radius: 4px;
}

.button {
	background-color: rgba(32,16,0,0.8);
	font-family: OP;
	text-align:center;
	color: rgba(255,160,64,0.8);
	border: 2px solid rgba(255,160,64,0.8);
	border-radius: 4px;
}
.button > .click:hover {
	background-color: rgba(64,32,0,0.8);
}

/* ========= NICE SCCROLLBAR ======== */

.ScrollStyle::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #444444;
}

.ScrollStyle::-webkit-scrollbar
{
	width: 12px;
	background-color: #444444;
}

.ScrollStyle::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #888888;
}

.ScrollShadow {
    overflow-x:hidden;
    overflow-y:scroll;
 }
.ScrollShadow::-webkit-scrollbar {
    width:12px;
}
.ScrollShadow::-webkit-scrollbar * {
    background:transparent; 
 }
.ScrollShadow::-webkit-scrollbar-thumb {
    background:rgba(255,255,255,0.2) !important;
}