@charset "utf-8";
/* CSS Document */
* {
	
	outline: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}
input {
	-webkit-appearance: none;
}
input {
	-webkit-border-radius: 0;
	border-radius: 0;
	background-color: #FFF;
}
body, html {
	padding: 0px;
	margin: 0px;
	width: 100%;
	height: 100%;
}
	.grid {
		display: flex;
		width: 100%;
		align-items: stretch;
  		justify-content: center;
		flex-wrap: wrap;
	}
	.grid:after {
		content: '';
		clear: both;
		display: block;
		height: 0;
		visibility: hidden;
	}
	.grid_float {
	}
	.grid_flex {
		flex-grow: 1;
		flex-basis: 100%;
	}
	.grid_1 {
		width: 8.33%;
	}
	.grid_2 {
		width: 16.66%;
	}
	.grid_3 {
		width: 24.99%;
	}
	.grid_4 {
		width: 33.33%;
	}
	.grid_5 {
		width: 41.65%;
	}
	.grid_6 {
		width: 49.98%;
	}
	.grid_7 {
		width: 58.31%;
	}
	.grid_8 {
		width: 66.64%;
	}
	.grid_9 {
		width: 74.97%;
	}
	.grid_10 {
		width: 83.33%;
	}
	.grid_11 {
		width: 8.33%;
	}
	.grid_12 {
		width: 100%;
	}
.MB {
	width: 100%;
	max-width: 1340px;
	padding-left: 20px;
	padding-right: 20px;
	margin: auto;
}
.MBS {
	width: 100%;
	max-width: 900px;
	padding-left: 20px;
	padding-right: 20px;
	margin: auto;
}
.MBX {
	width: 100%;
	max-width: 1400px;
	padding-left: 20px;
	padding-right: 20px;
	margin: auto;
}
.error {
	border-color: #F00!important;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
 color: #111;
 opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #111;
}

::-ms-input-placeholder { /* Microsoft Edge */
 color: #111;
}
.checkboxx, .checkboxx1, .checkboxx2 {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 0px;
	cursor: pointer;
	width: 100%;
	text-align: left;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding-top: 0px;
}
.checkboxx input, .checkboxx1 input, .checkboxx2 input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	width: 5px!important;
}
.checkmark, .checkmark1, .checkmark2 {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: #EFEFEF;
	border: 1px solid #EFEFEF;
}
.checkboxx:hover input ~ .checkmark, .checkboxx1:hover input ~ .checkmark1, .checkboxx2:hover input ~ .checkmark2 {
	background-color: #CCC;
}
.checkboxx input:checked ~ .checkmark, .checkboxx1 input:checked ~ .checkmark1, .checkboxx2 input:checked ~ .checkmark2 {
	background-color: transparent;
}
.checkmark:after, .checkmark1:after, .checkmark2:after {
	content: "";
	position: absolute;
	display: none;
}
.checkboxx input:checked ~ .checkmark:after, .checkboxx1 input:checked ~ .checkmark1:after, .checkboxx2 input:checked ~ .checkmark2:after {
	display: block;
}
.checkboxx a {
	color: #111;
}
.checkboxx .checkmark:after, .checkboxx1 .checkmark1:after, .checkboxx2 .checkmark2:after {
	left: 7px;
	top: 2px;
	width: 4px;
	height: 10px;
	border: solid #111;
	border-width: 0 1px 1px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.AGBsBlink {
	background-color: #F00;
}
input, textarea, select {
	padding: 5px;
	color: #111;
	border: 1px solid #CCC;
}
.Display {
	position: fixed;
	z-index: 1000;
	background-color: rgba(0,0,0,0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
}
.Display div {
	width: 90%;
	max-width: 500px;
	background-color: #FFF;
	text-align: center;
	position: relative;
	padding: 20px;
	padding-top: 40px;
	padding-bottom: 40px;
}
.Display div a {
	position: absolute;
	right: 10px;
	top: 10px;
	color: #111;
	text-decoration: none;
	font-weight: bold;
}



.Burger {
	color: #FFF;
	width: 30px;
	height: 30px;
	display: inline-block;
	text-decoration: none;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
	cursor: pointer;
}
.Burger div {
	position: relative;
	align-items: center;
	width: 100%;
	height: 100%;
}
.Burger div div {
	display: inline-block;
	width: 100%;
	height: auto;
}
.Burger div span {
	height: 1px;
	background-color: #FFF;
	margin-top: 7px;
	margin-bottom: 7px;
	display: block;
	width: 100%;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}
.BurgerF span:nth-child(1), .BurgerF:hover div span:nth-child(1) {
	transform: rotate(45deg) translateX(5px) translateY(7px);
	animation: none;
}
.BurgerF span:nth-child(2), .BurgerF:hover div span:nth-child(2) {
	opacity: 0;
	animation: none;
}
.BurgerF span:nth-child(3), .BurgerF:hover div span:nth-child(3) {
	transform: rotate(-45deg) translateX(5px) translateY(-7px);
	animation: none;
}