@font-face {
	font-family: 'MontserratLight';
	src: url('/static/fonts/Montserrat-Light.ttf');
}

@font-face {
	font-family: 'Montserrat';
	src: url('/static/fonts/Montserrat-Regular.ttf');
}

@font-face {
	font-family: 'MontserratMedium';
	src: url('/static/fonts/Montserrat-Medium.ttf');
}

@font-face {
	font-family: 'MontserratBold';
	src: url('/static/fonts/Montserrat-Bold.ttf');
}

@font-face {
	font-family: 'MontserratSemiBold';
	src: url('/static/fonts/Montserrat-SemiBold.ttf');
}

@font-face {
	font-family: 'MontserratExtraBold';
	src: url('/static/fonts/Montserrat-ExtraBold.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: Montserrat;
	-webkit-font-smoothing: antialiased;
	background: #F4F4F4;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	color: #353535;
	font-size: 16px;
}

.t_l{font-family: 'MontserratLight';}
.t_m{font-family: 'MontserratMedium';}
.t_sb{font-family: 'MontserratSemiBold';}
.t_b{font-family: 'MontserratBold';}
.t_eb{font-family: 'MontserratExtraBold';}

#scroll_wrapper,
#scroll_content{
	min-height: 100%;
}

#scroll_content{
	display: flex;
	flex-direction: column;
}

content{
	flex: 1;
	position: relative;
}

a{
	text-decoration: none;
	color: inherit;
}

input,textarea{
	background: none;
}

.ellipsis{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.btn{
	color: #FFFFFF;
	font-family: 'Montserrat';
	text-align: center;
	cursor: pointer;
	background: #2B4B9B;
	border-radius: 3px;
	user-select: none;
}

.btn:hover{
	background: #3d65c9;
}

.btn:active{
	background: #1b3066;
}

