@font-face {
    font-family: "Raleway-Bold";
    src: url("../fonts/Raleway-Bold.ttf") format("truetype");
}

@font-face {
    font-family: "Raleway-Light";
    src: url("../fonts/Raleway-Light.ttf") format("truetype");
}

body{
	font-family: "Raleway-Light", sans-serif;
	font-size: 18px;
	background-color: white;
	margin: auto;
	max-width: 1000px;
	min-height: 100%;
	display:flex; 
	flex-direction:column; 
}

.center{
	align-items: center;
}

.container{
	display: flex;
    justify-content: space-between;
}

.banner img{
	max-width: 100%;
}

.banner-text{
	color: #ffffff;
	font-family: "Raleway-Bold", sans-serif;
	font-size: 50px;
	margin-left: 55px;
	text-shadow: 2px 2px 10px #404040;
}

.text-div{
	padding: 60px 0px 20px 0px;
}

.text-div-max{
	padding-bottom: 20px;
	max-width: 650px;
}

.text-div-privacy{
	padding: 20px 0px;
}

.headline{
	margin-top: 40px;
	font-family: "Raleway-Bold", sans-serif;
	font-size: 40px;
}

.login{
	max-width: 200px;
}

.link-boxes{
	margin: 100px 0 100px 0;
}

.link-box{
	text-align: center;	
	background-color: #f4f4f4;
	width: 310px;
	padding-bottom: 25px;
}

.link-box-icons{
	width:80px;
	height:80px;
	margin-top: -40px;
}

.link-box-text{
	margin-top: 35px;
}

.link-box-button{
	font-family: "Raleway-Bold", sans-serif;
	text-decoration: none;
    display:inline-block;
    width: 140px;
    height: 25px;
	padding: 5 10 5 10;
    text-align: center;
	border-radius: 6px;
    line-height: 25px;
	font-size: 14px;
	margin-top: 20px;
	color: #ffffff;
}

.link-box-button:link{
	text-decoration: none;
}

.tanfield{
	outline: none;
    background-color: #ffffff;
	font-family: "Courier New", Courier, mono;
    font-size: 14px;
	letter-spacing: 3px;
    height: 44px;		
    width: 200px;
    text-align: center;
	border: 2px;
	border-style: solid;
}

.submitbutton_refb.customerbg{
	margin-top: 20px;
	color: #ffffff;
	cursor: pointer;
    width: 350px;
    height: 44px;
    font-weight: 700;
    font-size: 20px;
    border: 0px;
}

.submitbutton{
	background: url(../images/arrow-right-circle-outline.png) no-repeat;
	cursor: pointer;
    color: #ffffff;
    width: 200px;
    height: 44px;
    font-weight: 700;
    font-size: 20px;
    border: 0px;
    text-align: left;
    padding-left: 30px;
    background-size: 15%;
    background-position: 156px 8px;
}

.highlighted-text{
	font-family: "Raleway-Bold", sans-serif;
}

.footer{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
    font-size: 14px;
	margin: auto 20px 15px 20px;
}

.footer-text{
	margin-top: 5px;
}

.bottom-link{
	font-family: "Raleway-Bold", sans-serif;
}

.bottom-link:link {
  text-decoration: none;
}

.bottom-link:hover {
  text-decoration: underline;
}

.line-height{
	line-height: 200%;
}

.precheck {
	width: auto;
	height: auto;
	display: none;
	padding-top: 40px
}

.precheckb {
	width: auto;
	height: 60px;
	display: none;
}

.progress {
	width: auto;
	height: auto;
	display: none;
}

.aftercheckcontent {
	width: auto;
	height: auto;
	display: none;
}

.progresscontainer {
	height: 150px;
	width: 120px;
	margin-left: 20px;
}

.cord {
	padding-top: 100px;
	width: 15px;
	transform: rotate(0deg);
	transform-origin: 50% 50%;
	float: left;
}

.ball {
	background: #333;
	width: 15px;
	height: 15px;
	float: left;
	border-radius: 50%;
}

.shadows {
	clear: left;
	padding-top: 20px;
	margin-left: -2px;
}

.shadows div {
	float: left;
	margin-left: 2px;
	width: 13px;
	height: 3px;
	border-radius: 50%;
	box-shadow: 0px 0px 3px rgba(204, 204, 204, 0.3);
	background: rgba(204, 204, 204, 0.3);
}

.leftMove {
	animation: leftBall .5s ease-in-out 0s infinite alternate;
}

.rightMove {
	animation: rightBall .5s ease-in-out 0s infinite alternate;
}

.leftShadow {
	animation: leftShadowN .5s ease-in-out 0s infinite alternate;
}

.rightShadow {
	animation: rightShadowN .5s ease-in-out 0s infinite alternate;
}

@keyframes leftBall {
	0% {
		transform: rotate(0deg) translateY(0px);
	}
	/*this pauses the ball at the begining*/
	50% {
		transform: rotate(0deg) translateY(0px);
	}
	100% {
		transform: rotate(50deg) translateY(-20px);
	}
}

@keyframes rightBall {
	0% {
		transform: rotate(-50deg) translateY(-20px);
	}
	/*this pauses the ball at the begining*/
	50% {
		transform: rotate(0deg) translateY(0px);
	}
	100% {
		transform: rotate(0deg) translateY(0px) translateX(0px);
	}
}

@keyframes leftShadowN {
	0% {
		transform: translateX(0px);
	}
	/*this pauses the ball at the begining*/
	50% {
		transform: translateX(0px);	
	}
	100% {  
		transform: translateX(-25px);
	}
}

@keyframes rightShadowN {
	0% {
		transform: translateX(25px);
	}
	/*this pauses the ball at the begining*/
	50% {
		transform: translateY(0px);
	}
	100% {
		transform: translateY(0px);
	}
}

@media screen and (max-width: 1020px){
	.container{
		flex-direction: column;
		align-items: center;
	}
	
	.link-boxes{
		margin: 30px 0 30px 0;
	}
	
	.link-box{
		margin-top: 70px;
	}
	
	.login{
		margin-top: 30px;
	}
	
	.text-div{
		margin: 0 20px 0 20px;
	}
	
	.headline{
		padding: 0px 20px;
	}
	
	.text-div-max, .text-div-privacy{
		max-width: 100%;
		padding: 0px 20px;
	}

	.progresscontainer {
		margin-left: 30px;
	}

	.precheck {
	    padding: 40px 20px 0px 20px;
	}
	
	.precheckb {
		padding: 0px 20px;
	}
}

@media screen and (max-width: 562px){
	.submitbutton_refb.customerbg {
	    width: 100%;
	}
}

@media screen and (max-width: 360px){
	.submitbutton_refb.customerbg {
	    font-size: 18px;
	}
}

@media screen and (max-width: 320px){
	.submitbutton_refb.customerbg {
	    font-size: 17px;
	}
}

@media screen and (max-width: 280px){
	.submitbutton_refb.customerbg {
	    font-size: 14px;
	}
}