/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {margin: 0; padding: 0;}


html {
	height: 100%;
	/*Image only BG fallback*/
	
	/*background = gradient + image pattern combo*/
	background: white;
//		linear-gradient(rgba(196, 102, 0, 0.6), rgba(155, 89, 182, 0.6));
}

body {
	font-family: montserrat, arial, verdana;
}
/*form styles*/

.center {
  margin-left: auto;
  margin-right: auto;
}

 /* Customize the label (the container) */
.container {
  display: block;
  position: relative;
  padding-left: 10px;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
//  background-color: #eee;
  background-color: white;
  border: 1px solid #ccc;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #c00304;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 5px;
  top: 2px;
  width: 3px;
  height: 7px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
} 


#wrong{
	background-color: #c00304;
	width: 70%;
	height: 35px;
	line-height: 35px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -35%;
	margin-top: -65px;
	color: white;
	font-size: 14px;
	text-align: center;
	visibility: hidden;
}

#Logo {
	width: 40%;
	max-width: 400px;
	height: auto;
	text-align: center;
	margin: 50px auto;
}

#lC {
	width: 40%;
        max-width: 400px;
        height: auto;
        text-align: center;
        margin: 10px auto;
}

#Titel {
	width: 90%;
	height: auto;
        max-width: 400px;
        margin: 50px auto;
        text-align: center;
        position: relative;
}

#msform {
	max-width: 600px;
	min-width: 400px;
	margin: 50px auto;
	text-align: center;
	position: relative;
}
#msform fieldset {
	background: white;
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 20px 30px;
	box-sizing: border-box;
	width: 80%;
	margin: 0 10%;
	
	/*stacking fieldsets above each other*/
	position: relative;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
#msform input, #msform textarea {
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	font-family: montserrat;
	color: #2C3E50;
	font-size: 13px;
}

#msform .ds {
	background: #eaeaea;
	}

#msform .ismall {
	padding: 5px;
        border: 1px solid #ccc;
        border-radius: 1px;
        margin-top: 2px;
	margin-bottom: 2px;
        width: 100%;
        box-sizing: border-box;
        font-family: montserrat;
        color: #2C3E50;
        font-size: 11px;
}

/*buttons*/
#msform .action-button {
	width: 100px;
//	background: #27AE60;
	background: #668fae;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px;
	margin: 10px 5px;
  text-decoration: none;
  font-size: 14px;
}
#msform .action-button:hover, #msform .action-button:focus {
//	box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
	box-shadow: 0 0 0 1px white, 0 0 0 2px #c00304;
}

#msform .submit-button {
        width: 120px;
//      background: #27AE60;
        background: #668fae;
        font-weight: bold;
        color: white;
        border: 0 none;
        border-radius: 1px;
        cursor: pointer;
        padding: 10px;
        margin: 10px 5px;
  text-decoration: none;
  font-size: 14px;
}
#msform .submit-button:hover, #msform .submit-button:focus {
//      box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
        box-shadow: 0 0 0 1px white, 0 0 0 2px #c00304;
}


/*headings*/
.fs-title {
	font-size: 15px;
	text-transform: uppercase;
//	color: #2C3E50;
	color: black;
	margin-bottom: 10px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
//	color: #666;
	color: black;
	margin-bottom: 20px;
}

.coc_file {
	font-size: 18px;
	color: black;
	font-weight: bold;
	margin-bottom: 20px;


}

/*progressbar*/
#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
#progressbar li {
	list-style-type: none;
//	color: white;
	color: #black;
	text-transform: uppercase;
	font-size: 10px;
	width: 20%;
	float: left;
	position: relative;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
//	color: #333;
	color: white;
//	background: white;
	background: #c00304;
	border-radius: 3px;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
//	background: white;
	background: #c00304;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
//	background: #27AE60;
	background: #668fae;
	color: white;
	
}

.alert{
        background-color: #c00304;
        width: 70%;
        height: 35px;
	padding: 5px;
        line-height: 35px;
        position: absolute;
        bottom: 10%;
        left: 50%;
	margin-left: -35%;
        margin-bottom: 50px;
        color: white;
        font-size: 14px;
        text-align: center;
        visibility: hidden;
	z-index: -99;
}

.alert .close {
  position: absolute;
  top: 0px;
  font-size: 28px;
  right: 10px;
  padding: 0px;
  cursor: pointer;
  color: white;
}

.alert .close:hover {
  color: #668fae;
}

.alert .progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;

}

.alert .progress:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: #668fae;
}

.progress.active:before {
  animation: progress 5s linear forwards;
}

@keyframes progress {
  100% {
    width: 0%;
  }
}
