#subject {
	width: 96%;
	height: 30px;
	font-size: 93%;
}

.c-forms {
	width: 100%;
	display: grid;
	display: -ms-grid;
	grid-template-columns: 100%;
	-ms-grid-columns: 100%;
	margin-bottom:30px;
}

#contact-form {
	grid-row: 1;
	-ms-grid-row: 1;
	grid-column: 1;
	-ms-grid-column: 1;
}

#contact-address {
	grid-row: 2;
	-ms-grid-row: 2;
	grid-column: 1;
	-ms-grid-column: 1;
}

#contact-form-container {
	width: 100%;
	display: grid;
	display: -ms-grid;
	grid-template-columns: 100%;
	-ms-grid-columns: 100%;
	-ms-grid-rows: (auto)[8];
}

/*  */

.thankyou {
	grid-row: 1;
	-ms-grid-row: 1;
	grid-column: 1;
	-ms-grid-column: 1;
}

.requiredinput{
	margin: 2px 8px 10px 8px;
	border: 1px solid #F00;
	height: 19px;
	background: #f5f5f5;	
}

#c-name {
	grid-row: 2;
	-ms-grid-row: 2;
	grid-column: 1;
	-ms-grid-column: 1;
}

#c-email {
	grid-row: 3;
	-ms-grid-row: 3;
	grid-column: 1;
	-ms-grid-column: 1;
}

#c-phoneNo {
	grid-row: 4;
	-ms-grid-row: 4;
	grid-column: 1;
	-ms-grid-column: 1;
}

#c-message {
	grid-row: 5;
	-ms-grid-row: 5;
	grid-column: 1;
	-ms-grid-column: 1;
}

#c-captcha {
	grid-row: 6;
	-ms-grid-row: 6;
	grid-column: 1;
	-ms-grid-column: 1;
	margin: 20px 10px 10px 0;
	justify-self: end;
	-ms-grid-column-align: end;
	width: 220px;
}

#recaptcha-table {
	-webkit-transform:scale(0.78);
	transform:scale(0.78);
	-webkit-transform-origin:0 0;
	transform-origin:0 0;
}

#GDPR-container {
	grid-row: 7;
	-ms-grid-row: 7;
	grid-column: 1;
	-ms-grid-column: 1;
	display: grid;
	display: -ms-grid;
	grid-template-columns: 100%;
	-ms-grid-columns: 100%;
	box-sizing: border-box;
	padding: 5px;
	width: 240px;
}

#newsletterGDPRContact {
	grid-row: 1;
	-ms-grid-row: 1;
	grid-column: 1;
	-ms-grid-column: 1;
}

#submit-button {
	grid-row: 8;
	-ms-grid-row: 8;
	grid-column: 1;
	-ms-grid-column: 1;
	display: grid;
	display: -ms-grid;
	-ms-grid-columns: 100%;
}

#submit-button .button-orange {
	justify-self: center;
	-ms-grid-column-align: center;
	width: 83px;
}

.custom-checkbox {
	grid-row: 2;
	-ms-grid-row: 2;
	grid-column: 1;
	-ms-grid-column: 1;
	justify-self: center;
	-ms-grid-column-align: center;
}

.custom-checkbox label {
	height: 30px;
	margin: 0 0 90px !important;
}

.cu-col {
	display: grid;
	display: -ms-grid;
	grid-template-columns: 90px 150px;
	-ms-grid-columns: 90px 176px;
	margin: 5px 0;
}

.cu-col label {
	grid-row: 1;
	-ms-grid-row: 1;
	grid-column: 1;
	-ms-grid-column: 1;
}

.cu-col input, .cu-col textarea {
	grid-row: 1;
	-ms-grid-row: 1;
	grid-column: 2;
	-ms-grid-column: 2;
	width: 90%;
	max-width: 250px;
	margin: 2px 8px 10px 8px;
	/*color: red;*/
}

.inputboxes {
	border: 1px solid #999;
	height: 19px;
	background: #f5f5f5;
}

#contact-address {
	font-family: "frutiger-pro-light", Helvetica, Arial, sans-serif !important;
	font-size: 14px;
	line-height: 18px;
	box-sizing: border-box;
	padding: 10px;
}

.frutiger-bold-cond {
	font-size: 18px;
	font-weight: normal !important;
}

#map-container{
	height: 500px;
    width: 100%;
	padding: 1px;
	border: 1px solid #999;
}

#map-canvas { 
	width:100%;height:100%; 
}

.mapslink {
	position: relative;
	top: 5px;
	font-family: "frutiger-pro-light", Helvetica, Arial, sans-serif !important;
	font-size: 12px;	
}


@media screen and (min-width: 320px) {
	
	#GDPR-container {
		width: 100%;
	}
	
	.cu-col {
		grid-template-columns: 1fr 2fr;
		-ms-grid-columns: 1fr 2fr;
	}
	
	.cu-col input, .cu-col textarea {
		width: 100%;
	}
	
}

@media screen and (min-width: 450px) {
	
	#contact-form {
		width: 450px;
	}
	
	#recaptcha-table {
		-webkit-transform:scale(1.0);
		transform:scale(1.0);
		-webkit-transform-origin:0 0;
		transform-origin:0 0;
	}
	
	#c-captcha {
		width: 100%;
		
	}
	
	.g-recaptcha {
		display: grid;
		grid-template-columns: 100%;
	}
	
	.g-recaptcha > div {
		justify-self: end;
	}
}

@media screen and (min-width: 800px) {
	
	.c-forms {
		grid-template-columns: 450px auto;
		-ms-grid-columns: 450px auto;
	}

	#c-captcha {
		display: flex;
		justify-content: flex-end;
	}
	
	#contact-address {
		grid-row: 1;
		-ms-grid-row: 1;
		grid-column: 2;
		-ms-grid-column: 2;
		text-align: right;
	}
	
	.mapAlign {
		display: grid;
		display: -ms-grid;
	}
	
	
	#map-container {
		justify-self: end;
		-ms-grid-column-align: end;
	}
}


@media screen and (min-width: 1000px) {
	
	#map-container {
		justify-self: end;
		-ms-grid-column-align: end;
	}
}