@font-face {
	font-family: 'regular';
	src: url('/static/font/UbuntuMono-Regular.ttf');
}

@font-face {
	font-family: 'bold';
	src: url('/static/font/UbuntuMono-Bold.ttf');
}

@font-face {
	font-family: 'italic';
	src: url('/static/font/UbuntuMono-Italic.ttf');
}

@font-face {
	font-family: 'bold_italic';
	src: url('/static/font/UbuntuMono-BoldItalic.ttf');
}


template{
	display: none;
}


input[type="submit"] { -webkit-appearance: none; -moz-appearance: none; appearance: none; border-radius: 0;}


html{
	height: 100%;
}

html,body{
	scroll-behavior: auto;
}

*{
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body{
	position: relative;
	font-family: 'regular';
	-webkit-font-smoothing: antialiased;
	background: #1b162c;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	color: #FFFFFF;
	font-size: 16px;
}

a{
	text-decoration: none;
	color: inherit;
}

input,textarea{
	background: none;
}

.ellipsis{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.btn{
	color: #FFFFFF;
	text-align: center;
	cursor: pointer;
	background: #2B4B9B;
	border-radius: 3px;
	user-select: none;
}

.btn:hover{
	background: #3d65c9;
}

.btn:active{
	background: #1b3066;
}

