html {
	padding-left:10px;
	padding-right:10px;
}

h1, h2, h4, p, span, textarea, label, button, input {
	font-family: "Arial", sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: rgb(0, 0, 0);
}

h1 {
	font-size: 28px;
	border-bottom: 2px solid rgb(243, 113, 30);
	margin-bottom: 30px;
	margin-top: 30px;
	padding-bottom: 10px;
}

h2 {
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 15px;
	margin-top: 15px;
}


h4 {
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 15px;
	margin-top: 15px;
}

p, span {
	margin: 15px 0;
	line-height: 24px;
}

#vihjeForm {
	border: 1px solid rgb(30, 28, 119);
	box-sizing: border-box;
	padding: 20px;
	background-color: rgb(250, 250, 250);
}

.bold {
	font-weight: bold;
}

.hidden {
	display:none !important;
}

.errorMessage p {
	margin: 0;
	color: #c71530 !important;
}

.fileError {
	color: #c71530 !important;
}

.fileErrorMessage {
	margin: 0;
	line-height: 18px;
	color: #c71530 !important;
}

.errorField {
	border: 1px solid #c71530 !important;
}

.text-area {
	background: rgb(255, 255, 255);
	border: 1px solid rgb(205, 205, 205);
	width: 100%;
	box-sizing: border-box;
}

.text-area:hover {
	border-color: rgb(75, 73, 146);
}

.text-area:focus {
	border-color: rgb(30, 28, 119);
}

.button-primary {
	background-color: rgb(76, 98, 140);
	border: 2px solid rgb(76, 98, 140);
	height: 36px;
	padding: 0 20px;
	color: rgb(255, 255, 255);
	box-sizing: border-box;
	cursor: pointer;
}

.button-primary span {
	color: rgb(255, 255, 255);
}

.button-primary:hover {
	background-color: rgb(229, 232, 238);
	border-color: rgb(229, 232, 238);
	color: rgb(0, 0, 0);
}

.button-primary:focus {
	background-color: rgb(25, 54, 107);
	border-color: rgb(25, 54, 107);
	color: rgb(255, 255, 255);
}

.button-primary:disabled {
	background-color: rgb(205, 205, 205);
	border-color: rgb(205, 205, 205);
}

.button-secondary {
	background: transparent;
	border: 2px solid rgb(30, 28, 119);
	height: 36px;
	padding: 0 20px;
	color: rgb(30, 28, 119);
	cursor: pointer;
}

.button-secondary:hover {
	border-color: rgb(75, 73, 146);
	color: rgb(75, 73, 146);
}

.button-secondary:focus {
	border-color: rgb(120, 119, 173);
	color: rgb(120, 119, 173);
}

.input {
	background-color: rgb(255, 255, 255);
	border: 1px solid rgb(205, 205, 205);
	height: 38px;
	max-width:500px;
	width:100%;
	padding-left: 10px;
	box-sizing: border-box;
}

.input:hover {
	border-color: rgb(75, 73, 146);
}

.input:focus {
	border-color: rgb(30, 28, 119);
}

.container {
	max-width:975px;
	width:100%;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:60px;
}

.fileInput {
 	cursor: pointer;
    direction: ltr;
    font-size: 200px;
    margin: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.uploadButton {
	display: table-cell;
    overflow: hidden;
    position: relative;
    vertical-align: middle;
}

.spinnerIcon {
	vertical-align: middle;
	margin-left:20px;
}

.label {
	display: block;
	margin-bottom: 5px;
}

.truncate {
	display:block;
	max-width: 200px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin:0;
	padding:0;
}

.inputGroup {
	display:inline-block;
}

.inputBlock {
	margin: 15px 0;
}

.floatRight {
	float:right;
}

.fileName {
	padding:0 10px 0 0;
	display:table-cell;
	vertical-align: middle;
	height:36px;
}

.fileUpload {
	margin:5px 0;
}

.required {
	color: #c71530;
	border-color: rgb(199, 21, 48);
	background-color: rgb(252, 232, 235);
}

h2 span.required {
	font-size: 16px;
}
h4 span.required {
	font-size: 16px;
}

/* Simplemodal */
.simplemodal-overlay {
	background: #2B2D2E;
}

.simplemodal-container {
	width: auto !important;
	height: auto !important;
	background: #fff;
	padding: 20px;
	display: none;
}

.simplemodal-wrap {

}

/* Honeypot */
.email {
	position: absolute;
	top: 0;
	left: -9999px;
}

#modal-content button, #modal-content p {
	margin: 0 auto;
	display: block;
}

#modal-content p {
	margin-bottom: 20px;
}

#modal-content {
	display: none;
}

/* Captcha */
.captcha-container {
	padding: 10px 0 0 0;
	margin-bottom: 10px;
	display: table;
}

.captchaimage {
	display: table-cell;
}

#imgCaptcha {
	width: 100%;
	max-width: 310px;
	height: auto;
}

.captcharefreshbutton {
	display: table-cell;
	vertical-align: middle;
}

/* Media Query */
@media screen and (max-width: 767px) {

	h1 {
		font-size: 24px;
	}

	.truncate {
		max-width: 100px;
	}

}

@media screen and (max-width: 500px) {

	.captchaimage {
		float: none;
	}

	.captcharefreshbutton, .captcha-container, .captchaimage {
		display: block;
	}

}