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

@import url('https://fonts.googleapis.com/css?family=Work+Sans');

body,html{
	margin: 0;
	padding: 0;
	font-family: 'Work Sans', sans-serif;
	font-size: 18px;
	font-weight: normal;
}

a {
	text-decoration: none;
	color: royalblue;
}

a:hover{
	text-decoration: underline;
	color: darkblue;
}

h1{
	font-size: 24px;
	color: royalblue;
}

#mainContainer{
	position: relative;
	min-width: 700px;
	width: 50%;
	max-width: 700px;
	margin: 0 auto;
	padding-bottom: 100px;
}

#logoContainer{
	position: relative;
	display: block;
	margin: 20px auto;
	min-width: 500px;
	max-width: 500px;
	width: 50%;
	background: url(install_logotype-240x46.png) no-repeat;
	background-position: center;
	background-size: 50% auto;
	min-height: 100px;
}

#textContainer{
	position: relative;
	display: block;
	margin: 20px auto;
	min-width: 700px;
	max-width: 700px;
	width: 50%;
	font-family: inherit;
	font-size: 90%;
}

#fieldsetMainContainer{
	padding: 0;
	margin: 0;
	border: none;
}

fieldset{
	display: block;
	padding-right: 20px;
	padding-left: 10px;
	border-radius: 5px;
	margin-bottom: 20px;
}

legend{
	font-weight: bold;
	padding-left: 5px;
	padding-right: 5px;
}

input[type="text"]{
	width: calc(100% - 10px);
	font-family: inherit;
	font-size: 18px;
	padding: 5px;
	border: none;
	color: royalblue;
}

input[type="submit"]{
	font-size: 20px;
	font-weight: normal;
	padding: 5px;
	padding-left: 20px;
	padding-right: 20px;
	border-radius: 5px;
	border: 1px solid #666;
}

input[type="submit"]:hover{
	background-color: #666;
	color: white;
}

select{
	width: calc(100% + 10px);
	padding: 5px;
	font-family: inherit;
	font-size: 18px;
	border: none;
	color: royalblue;
}

select > option {
	color: #333;
}

#textareaContainer{
	width: 100%;
	min-width: 650px;
	max-width: 650px;
	height: 200px;
	border: none;
	resize: none;
	font-family: inherit;
	color: royalblue;
	overflow-y: scroll;
}

p {
	font-size: 20px;
	font-weight: bold;
}

.myCheckbox{
	padding-bottom: 3px;
	border: 1px solid #999;
	background-color: #DEDEDE;
	border-radius: 4px;
	padding-left: 10px;
	padding-top: 4px;
	display: inline-flex;
	margin-bottom: 10px;
	margin-right: 10px;
	font-size: 16px;
}

.myCheckbox:hover{
	background-color: #999;
}

.myCheckbox input[type=checkbox]{
    position: relative;
    z-index: -9999;
	display: none;
}

.myCheckbox span {
	width: 15px;
    height: 15px;
    display: inline-flex;
    background: url(checkbox_empty.png);
	background-size: auto 100%;
	background-position: bottom;
	margin-left: 4px;
	margin-right: 8px;
}


.myCheckbox input:checked + span {
	display: inline-flex;
    background: url(checkbox_checked.png);
	background-size: auto 100%;
	background-position: bottom;
}

#textContainerEpost{
	position: relative;
	display: block;
	margin: 20px auto;
	min-width: 700px;
	max-width: 700px;
	width: 50%;
	font-family: inherit;
	font-size: 90%;
	color: royalblue;
}

#textContainerEpost strong{
	color: #333;
}

#textContainerEpost h2{
	color: #333;
}

#textContainerEpost legend{
	color: #333;
}

#textContainerEpost li{
	margin-left: 20px;
	list-style-position: inside;
}

@media all and (max-width: 900px) and (-webkit-min-device-pixel-ratio: 2) {
	html{
		-webkit-text-size-adjust: none
	}
#mainContainer{
	position: relative;
	min-width: 95%;
	width: 95%;
	max-width: 95%;
	margin: 0 auto;
	padding-bottom: 100px;
}

#logoContainer{
	position: relative;
	display: block;
	margin: 20px auto;
	min-width: 100%;
	max-width: 100%;
	width: 100%;
	background: url(install_logotype-240x46.png) no-repeat;
	background-position: center;
	background-size: 85% auto;
	min-height: 100px;
}

#textContainer{
	position: relative;
	display: block;
	margin: 20px auto;
	min-width: 100%;
	max-width: 100%;
	width: 100%;
	font-family: inherit;
	font-size: 90%;
}
	
fieldset{
	display: block;
	padding-right: 0px;
	padding-left: 0px;
	border-radius: 5px;
	margin-bottom: 20px;
}

input[type="text"]{
	width: 95%;
	font-family: inherit;
	font-size: 18px;
	padding: 5px;
	border: none;
	color: royalblue;
}	

select{
	width: 95%;
	padding: 5px;
	font-family: inherit;
	font-size: 18px;
	border: none;
	color: royalblue;
	margin-left: 10px;
}
	
	.myCheckbox{
		margin-left: 10px;
	}	
	
#textareaContainer{
	width: 95%;
	min-width: 95%;
	max-width: 95%;
	height: 200px;
	border: none;
	resize: none;
	font-family: inherit;
	color: royalblue;
	overflow-y: scroll;
}

	legend{
		font-size: 90%;
	}
}