/* CSS Document */

@font-face {
	font-family: Now;
	src: url("fonts/now/now-light.eot") format("embedded-opentype"),
		url("fonts/now/now-light.woff") format("woff"),
		url("fonts/now/now-light.ttf") format("ttf");
	font-weight: normal;
}

@font-face {
	font-family: Now;
		src: url("fonts/now/now-medium.eot") format("embedded-opentype"),
		url("fonts/now/now-medium.woff") format("woff"),
		url("fonts/now/now-medium.ttf") format("ttf");
	font-weight: bold;
}

@font-face {
	font-family: Againts;
	src: url("fonts/againts/againts.eot") format("embedded-opentype"),
		url("fonts/againts/againts.woff") format("woff");
	font-weight: normal;
}

body, html{
	height: 100%;
}

a{
	text-decoration: none;
}

h1{
	font-size: 1.8em;
	font-weight: normal;
	line-height: 1.6em;
}

body, div, p, h1, h2, h3, section, header, img{
	box-sizing: border-box;
}

body, html{
	width: 100%;
	/*height: 100%;*/
	min-height: 100%;
	margin: 0;
	font-family: Now, sans-serif;
	font-size: 16px;
	font-display: swap;
}

.clearfix::after {
	content: "";
	clear: both;
	display: table;
}

.table{
	display: table;
	width: 100%;
}

.fixed-table{
	table-layout: fixed;
}

.row{
	display: table-row;
}

.cell{
	display: table-cell;
	vertical-align: middle;
}

.full-width{
	width: 100%;
}

.full-height{
	height: 100%;
}

.absolute{
	postion: absolute;
}

.relative{
	position: relative;
}

.middle{
	vertical-align: middle;
}

.top{
	vertical-align: top;
}

.display-none{
	display: none !important;
}

.block{
	display: block;
}

.inline-block{
	display: inline-block;
}

.inline{
	display: inline;
}

.text-left{
	text-align: left;
}

.text-right{
	text-align: right;
}

.text-center{
	text-align: center;
}

.bold{
	font-weight: bold;
}

.normal{
	font-weight: normal;
}

.underline{
	text-decoration: underline;
}

.nowrap{
	white-space: nowrap;
}

.ellipsis{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.full-height{
	height: 100%;
}

.centered{
	margin-left: auto;
	margin-right: auto;
	max-width: 1000px;
}

.border{
	border-width: 1px;
	border-style: solid;
}

.border-left{
	border-left-width: 1px;
	border-left-style: solid;
}

.border-right{
	border-right-width: 1px;
	border-right-style: solid;
}

.border-top{
	border-top-width: 1px;
	border-top-style: solid;
}

.border-bottom{
	border-bottom-width: 1px;
	border-bottom-style: solid;
}

.center-element{
	position: absolute;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.opacity-0{
	opacity: 0;
}

.opacity-10{
	opacity: .1;
}

.opacity-20{
	opacity: .2;
}

.opacity-30{
	opacity: .3;
}

.opacity-40{
	opacity: .4;
}

.opacity-50{
	opacity: .5;
}

.opacity-60{
	opacity: .6;
}

.opacity-70{
	opacity: .7;
}

.opacity-80{
	opacity: .8;
}

.opacity-90{
	opacity: .9;
}

.opacity-100{
	opacity: 1;
}

.button{
	display: inline-block;
	border-width: 2px;
	border-style: solid;
	padding: 12px 34px 10px;
	font-size: 1.2em;
	text-decoration: none;
	font-weight: bold;
	border-radius: 5px;
	min-width: 80px;
	text-align: center;
	transition: .5s ease;
}

.loader{
	background-image: url(img/loader_anim.svg);
	background-size: 40px 40px;
	background-position: center;
	background-repeat: no-repeat;
}

.page-loader{
	background: rgba(10, 10, 10, 1);
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

/*-- vue js transitions--*/

/*--fade in/out--*/
.fade-enter-active, .fade-leave-active {
  transition: opacity .4s;
}
.fade-enter, .fade-leave-to{
  opacity: 0;
}

/*--fade in/out--*/

/*--expand in/out--*/

.expand-enter-active, .expand-leave-active {
	transition: all .2s ease;
	height: 40px;
}

.expand-enter, .expand-leave {
	height: 0;
	opacity: 0;
}
/*--expand in/out--*/

@media only screen and (max-width: 860px) {
	h1{
		font-size: 1.5em;
		line-height: 1.8em;
	}

	.centered{
		padding: 0 40px;
	}
}
