div#overscan {
	width: 100%;
	height: 100%;
	display: none;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 130;
	position: fixed;
	top: 0;
	left: 0;
	overflow-y: auto;
}

section#viewBlock {
    display: block;
    background-color: #FFFFFF;
    border-radius: 10px;
    margin: 55px auto;
    z-index: 150;
    padding: 10px 10px;
    position: relative;
    overflow: hidden;
	width: 600px;
	min-height: 300px;
}

section#viewBlock menu {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	margin-bottom: 20px;
}

section#viewBlock menu a {
	background-image: url('/images/remove-symbol.svg');
	background-size: 24px;
	background-repeat: no-repeat;
	background-position: center;
	width: 24px;
	height: 24px;
}

section.formGroup {
	padding: 0 20px;
}

section.formGroup div {
	margin-bottom: 10px;
	position: relative;
	padding: 0 5px;
	display: block;
}

section.formGroup > div ~ div {
	margin-left: 5px;
}

section.formGroup label, section.formGroup input, section.formGroup select, section.formGroup textarea {
	display: block;
	width: 100%;
	margin-bottom: 5px;
	min-height: 20px;
}

section.formGroup input, section.formGroup select, section.formGroup textarea {
	border-radius: 4px;
	border: 1px #dbe6ec solid;
	padding: 5px;
	box-sizing: border-box;
	height: 30px;
}

section.formGroup textarea {
	height: 90px;
	resize: none;
}

section.formGroup input:hover, section.formGroup select:hover, section.formGroup textarea:hover {
	box-shadow: 0px 0px 5px #c0c0c0;
}

section.formGroup input:focus, section.formGroup select:focus, section.formGroup textarea:focus {
	box-shadow: 0px 0px 5px #19197b;
}

section.formGroup input[type='button'] {
	background-color: var(--color1);
	color: var(--color4);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	border: 0 !important;
	margin-top: 20px;
}

section.formGroup input[type='button']:hover {
	cursor: pointer;
}



/* jQuery Required */

label.error {
	position: absolute;
	z-index: 100;
	top: 45px;
	font-size: 8px;
	color: #B91515;
	right: 10px;
	pointer-events: none;
	width: 85px !important;
}

input.error {
	border-color: #B91515 !important;
	box-shadow: 0px 0px 5px #B91515 !important;
}