@font-face {
	font-family: 'MontserratLight';
	src: url('/static/font/Montserrat-Light.ttf');
}

@font-face {
	font-family: 'Montserrat';
	src: url('/static/font/Montserrat-Regular.ttf');
}

@font-face {
	font-family: 'MontserratMedium';
	src: url('/static/font/Montserrat-Medium.ttf');
}

@font-face {
	font-family: 'MontserratBold';
	src: url('/static/font/Montserrat-Bold.ttf');
}

@font-face {
	font-family: 'MontserratSemiBold';
	src: url('/static/font/Montserrat-SemiBold.ttf');
}

@font-face {
	font-family: 'MontserratExtraBold';
	src: url('/static/font/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;
}

a{
	text-decoration: none;
	color: inherit;
}

input,textarea{
	background: none;
}

.ellipsis{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.toggler{
	width: 56px;
	height: 30px;
	padding: 2px;
	border-radius: 28px;
	transition: background 0.3s;
	cursor: pointer;
}

.toggler[value="0"]{
	background: #a50404;
}

.toggler[value="1"]{
	background: #0459a5;
}

.toggler::after{
	width: 26px;
	height: 26px;
	border-radius: 13px;
	background: #ffffff;
	display: block;
	transition: transform 0.3s;
	content: '';
}

.toggler[value="1"]::after{
	transform: translateX(26px);
}