* {
    box-sizing: border-box;
}

html {
	font-size: 26px;
    width: 100%;
    height: 100%;
}

body {
	width: 100%;
	height: 100%;
	min-height: 300px;
	min-width: 300px;
	overflow: hidden;
    margin: 0;
    padding: 0;
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    font-family: 'Open Sans', arial, sans-serif;
    color: #333;
	background-color: #000;
	-webkit-text-size-adjust: 100%;
}


img {
    vertical-align: middle;
    border: none;
}

a {
    text-decoration: none;
    color: inherit;
    font-family: inherit;
}

input, input[type=text], input[type=date], input[type=number], select, textarea, button {
    border-radius: 4px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 2px;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(0,0,0,0.3);
    -webkit-font-smoothing: antialiased;
    font-family: inherit;
    color: inherit;
    font-size: inherit;
}

button {
    background-color: rgba(0,0,0,0.5);
    color: #fff;
}

::-webkit-scrollbar
{
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track
{
    background: none;
    margin-top: 1%;
    margin-bottom: 1%;
}

::-webkit-scrollbar-thumb
{
    background: none;
}

::-webkit-scrollbar-track-piece  {
    background-color: rgba(80,80,80,0.1);
    -webkit-border-radius: 6px;
}

::-webkit-scrollbar-thumb:vertical {
    height: 10px;
    background-color: rgba(80,80,80,0.2);
    -webkit-border-radius: 6px;
}

.animate {
	position: absolute;
	left: 40%;
	top: 101%;
	width: 20%;
	height: 20%;
	overflow: hidden;
	margin: 0;
	padding: 0;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	text-align: center;
	display: none;
}

.background {
	background-size: 100% 100%;
	z-index: -1000;
}

.link {
	cursor: pointer;
    transform: scale(1);
    transition: transform 50ms;
}

.link:active {
    transform: scale(0.95);
}

.link:hover {
	opacity: 1.0 !important;
}

.editDiv {
    position: fixed;
    left: 35%;
    top: 45%;
    width: 64%;
    height: 52%;
    border-radius: 3px;
    font-size: 200%;
}
