@charset "UTF-8";
/* CSS Document */






/* Formulare  */

.Form {
	max-width: 500px;
	margin: auto;
	text-align: left;
}



label {
	display: block;
	font-size: 0.9em;
	margin-top: 10px;
	width: 100%;
	max-width: 100%;
}

label a {
	float: right;
	color: #ff6600;
	text-decoration: none;
}

label a:hover {
	text-decoration: underline;
}


label.CustomCheckRadio {
	margin-top: 25px;
}


input::placeholder { 
  color: #CCC;
  font-size: 1em;
  font-weight: 300;
}




input[type="text"] {
	width: 100%;
	max-width: 100%;
	height: 40px;
	background: #FFF;
	border: 1px solid #eee;
	padding: 0px 10px;
	box-sizing: border-box;
	margin: 4px auto;
	font-size: 1em;
	font-weight: 400;
	font-family: 'Red Hat Display', sans-serif;
	border-radius: 2px;
}




input[type="text"].Two {
	width: 49%;
	float: left;
	vertical-align: baseline;
}


textarea {
	width: 100%;
	height: 160px;
	background: #FFF;
	border: 1px solid #eee;
	padding: 10px;
	box-sizing: border-box;
	margin: 4px auto;
	font-size: 1em;
	font-weight: 400;
	font-family: 'Red Hat Display', sans-serif;
	border-radius: 2px;
}


.SelectWrapper {
	display: inline-block;
	position: relative;
	margin: 0 auto;
	text-align: center;
	width: 100%;
	height: 40px;
	background-color:#FFF;
	border-radius: 2px;
	}
		
.SelectInside {
	position: relative;
	width:100%;
	height:40px;
	line-height:40px;
	vertical-align:middle;
	background-color:transparent;
	overflow:hidden;
	border:none;
	box-sizing:border-box;
	z-index: 1;
	}
	
.SelectWrapper.Filtration .SelectInside {
	height:40px;
	line-height:40px;
	}
	
.SelectWrapper::after {
	content:"";
	position: absolute;
	right:15px;
	top:15px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 8px 0 8px;
	border-color: #CCC transparent transparent transparent;
}

.SelectWrapper.Filtration::after  {
	top:15px;
	}

.SelectInside select {
	width: 100%;
	height: 40px;
	background-color: transparent;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border-radius:0px;
	font-size:1em;
	color:#606060;
	font-weight: 300;
	-webkit-appearance: none;
	border: none;
	box-sizing: border-box;
	padding-left:12px;
	}
	
.SelectWrapper.Filtration .SelectInside select {
	height:40px;
	}
	
.SelectInside select option {
    color: #363a35;
}


.InlineLabel {
	display: inline-block;
	font-size:1.1em;
	color:#606060;
	min-height: 50px;
	padding: 0 10px 0 30px;
}


input[type="file"] {
	width: auto;
	max-width: auto;
	height: auto;
	background: transparent;
	border: 1px solid #eee;
	padding: 0;
	box-sizing: border-box;
	margin: 4px auto;
	font-size: auto;
	font-weight: auto;
	font-family: 'Signika', sans-serif;
}


	
/* Custom Checkbox */
.CustomCheckWrapper {
  display: block;
  position: relative;
  margin-bottom: 12px;
}

.CustomCheckWrapper.InLIne {
  display: inline-block;
  position: relative;
  margin-bottom: 0;
  margin-right: 15px;
}

.CustomCheckWrapper .Label {
	padding-left: 40px;
	font-size:.95em;
	color:#606060;
	margin-top: 5px;
	font-weight: 400;
}/* Customize the label (the container) */

/* Custom Checkbox */
label.CustomCheck {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
}/* Customize the label (the container) */


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


.CheckMark {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  background-color: #fff;
  border: none;
  border-radius: 2px;
}/* Create a custom checkbox */


.CustomCheck:hover input ~ .CheckMark {
  background-color: #ededed;
}/* On mouse-over, add a grey background color */


.CustomCheck input:checked ~ .CheckMark {
  background-color: #FFF;
}/* When the checkbox is checked, add a blue background */


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


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


.CustomCheck .CheckMark:after {
  left: 10px;
  top: 3px;
  width: 8px;
  height: 16px;
  border: solid #606060;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}/* Style the checkmark/indicator */



/* Custom file input */

input[type="file"] {
	height: 40px;
	padding: 11px 20px 0 20px;
	background-color: #FFF;
	width: 500px;
	max-width: 100%;
	border: 1px solid #eee;
	
}
.custom-file-input {
	position: relative;
	background: aqua;
	vertical-align: middle;
	border-radius: 5px;
	padding: 10px 10px 10px 50px;
	width: 500px;
	max-width: 100%;
	margin: 4px auto;
}
.custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
}
.custom-file-input::before {
  content: 'Choose File';
  color:#FFF;
  display: inline-block;
  position: absolute;
  min-width:80px;
  left:0px;
  top:0px;
  bottom:0px;
  background: #50c800;
  border: none;
  border-radius: 5px 0 0 5px;
  padding: 11px 12px 9px 12px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  text-shadow: none;
  font-weight: 500;
  font-size: 1.2em;
  font-family: 'Signika', sans-serif;
}
.custom-file-input:hover::before {
  border-color: black;
}
.custom-file-input:active {
  outline: 0;
  background-color: #fff;
}
.custom-file-input:active::before {
  background: #50c800;
}



	
/* Buttony */


a.Button {
    text-decoration: none;
    background: #3b64cb;
    color: #FFF;
    padding: 10px 35px;
    font-size: 1.2em;
    font-weight: 300;
    border:none;
    cursor: pointer;
	transition:background .2s ease-in-out;
}

a:hover.Button {
    text-decoration: none;
    background: #5997ee;
	transition:background .2s ease-in-out;
}






button {
	text-decoration: none;
    background: #50c800;
    color: #FFF;
    padding: 10px 35px;
    font-size: 1.2em;
    font-weight: 300;
    border:none;
    cursor: pointer;
	transition:background .2s ease-in-out;
	border-radius: 5px;
}

button:hover {
	text-decoration: none;
    background: #50c800;
	transition:background .2s ease-in-out;
	}
	






