@font-face {
  font-family: Interstate-Bold;
  src: url(font/Interstate/Interstate-Bold.otf);
  
}

@font-face {
  font-family: Interstate-Light;
  src: url(font/Interstate/interstate-light.ttf);
  
}

@font-face {
  font-family: Interstate-Regular;
  src: url(font/Interstate/interstate-regular.ttf);
  
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	/*color: #5c5c5c;*/
    /*font-family: 'Interstate-Light', sans-serif;*/
}


p, h1, h2, h3, h4, span{
	color: #5c5c5c;
	font-family: Interstate-Light;
}


body {
    min-height: 100vh;
}

a {
    text-decoration: none;
}

button{
	cursor: pointer;
	border: 0;
}

li{
	list-style: none;
}

u{
	cursor: pointer;
}

.container{
	min-height: 100vh;
	width: 100vw;
	/* background: #f5f6f6; */
	background-color: white;
}

.container .brand img{
	width: 64px;
	height: 64px;
}

.separator{
	width: 100vw;
}

.separator img{
	width: 100%;
	height: 60px;
}

.popupblock{
	position: absolute;
	z-index: 25;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 0.2;
}

.popupdialog{
	
	padding: 20px;
	border-radius: 10px;
	width: 25vw;
	font-size: 16px;
	text-align: center;
	z-index: 50;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	color:#856404;
	background-color: #fff3cd;
	border-color:#ffeeba;
	cursor: pointer;
}

@media (max-width:768px)
{
	.popupdialog{
		width: 70vw;
	}	
}