#dialog-fader {
	width: 100%;
	height: 100%;
	position: fixed;
	background-color: rgba(96,96,96,.5);
	display: none;
	z-index: 100000;
}
.dialog-view {
	border-radius: 20px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	min-width: 45.8333%;
	max-height: calc(100vh - 30px);
}
.dialog-view h1 {
	font-size: 2rem;
}
.dialog-view .os-content .bg-orange {
	background: #FF8C00;
	color: white;
}
.dialog-view .os-content .bg-green {
	background: #0E9244;
	color: white;
}
.dialog-view .os-content > div {
	padding: 20px 35px;
	background-color: white;
}
.dialog-view .os-content > div:first-of-type {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}
.dialog-view .os-content > div:last-of-type {
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
.dialog-view {
	color: #FF8C00;
}
.dialog-view .dialog-close {
	background: url(images/close.png);
	width: 15px;
	height: 15px;
	background-size: cover;
	position: absolute;
	cursor: pointer;
	top: 15px;
	right: 15px;
}
.dialog-view input, .dialog-view .file {
	width: 339px;
	height: 51px;
	background: white;
	box-shadow: inset 0px 2px 3px rgba(0, 0, 0, 0.25);
	border-radius: 26px;
	font-size: 1.3125rem;
	color: #535352;
	border: none;
	outline: none;
	padding: 0 20px;
}
.dialog-view .password input {
	padding-right: 50px;
}
.dialog-view input::placeholder {
	color: #AEAEAE;
}
.dialog-view span {
	font-size: 1.5rem;
	font-weight: bold;
}
.dialog-view input.error, .dialog-view textarea.error {
	background-color: #FFC6C6;
}
.dialog-view span.small {
	font-size: 0.875rem;
	font-weight: normal;
}
.dialog-view .dialog-inputs, .dialog-view .dialog-inputs > form {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.dialog-view .dialog-inputs input {
	margin: 10px 0;
}
.dialog-view button {
	width: 339px;
	height: 80px;
	background-image: url(images/orange-button.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.dialog-view .bg-orange button {
	background-image: url(images/white-button.svg);
	color: #FF8C00;
}
.dialog-view .bg-green button {
	background-image: url(images/white-button.svg);
	color: #0E9244;
}
.dialog-view .password {
	position: relative;
	display: flex;
	align-items: center;
}
.dialog-view .password .password-control {
	width: 21px;
	height: 21px;
	display: inline-block;
	background-image: url(images/closed-eye.png);
	background-size: cover;
	position: absolute;
	right: 20px;
	cursor: pointer;
}
.dialog-view .password .password-control.showpass {
	background-image: url(images/opened-eye.png);
}
.dialog-view input[type="radio"], .dialog-view input[type="checkbox"] {
	position: absolute;
	left: -9999px;
}
.dialog-view .radio-check-image {
	width: 28px;
	height: 28px;
	display: inline-block;
	border-radius: 14px;
	background: white;
	position: relative;
	margin-right: 9px;
}
.dialog-view .checkbox-check-image {
	width: 24px;
	height: 24px;
	display: inline-block;
	border-radius: 6px;
	background: white;
	box-shadow: inset 0px 2px 3px rgba(0, 0, 0, 0.25);
	margin-right: 9px;
	flex: 0 0 24px;
}
.dialog-view input[type="radio"]:checked + .radio-check-image::after {
	content: "";
	width: 22px;
	height: 22px;
	background: #AEAEAE;
	border-radius: 11px;
	display: block;
	top: 3px;
	left: 3px;
	position: absolute;
}
.dialog-view input[type="checkbox"]:checked + .checkbox-check-image {
	background: #FF8C00;
}
.dialog-view span.error {
	display: inline-flex;
	align-items: center;
	background: #FFFBFB;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 12px;
	font-weight: bold;
	color: #535352;
	font-size: 1.25rem;
	text-align: left;
	position: relative;
	height: 74px;
	left: 22px;
	padding: 6px 12px 6px 50px;
	line-height: 20px;
	margin: 12px 0;
}
.dialog-view span.error::before {
	content: "!";
	width: 88px;
	height: 88px;
	background: #FF0000;
	border: 4px solid #FFFFFF;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
	font-weight: bold;
	font-size: 4rem;
	color: white;
	border-radius: 44px;
	position: absolute;
	top: -7px;
	left: -44px;
	box-sizing: border-box;
	text-align: center;
	line-height: normal;
}
.dialog-view span.response-text {
	color: #535352;
	display: block;
	font-weight: normal;
	font-size: 1.5rem;
	margin: 5px 0;
}

@media (min-width: 1600px) {
	
}

@media (min-width: 768px) and (max-width: 991px) {
	html.bx-touch .dialog-view {
		width: 100%;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		max-height: unset;
		border-radius: 0;
		max-height: 100%;
	}
	html.bx-touch .dialog-view .os-content {
		display: flex;
		flex-direction: column;
	}
	html.bx-touch .dialog-view .os-content > div {
		border-radius: 0;
		padding: 4%;
	}
	html.bx-touch .dialog-view h1 {
		font-size: 6vw;
	}
	html.bx-touch .dialog-view .dialog-inputs > form {
		width: 100%;
		justify-content: space-around;
	}
	html.bx-touch .dialog-view input, html.bx-touch .dialog-view .file {
		width: 75%;
		height: 12vw;
		border-radius: 75px;
		font-size: 5vw;
		padding: 0 6%;
		margin: 1vh 0;
	}
	html.bx-touch .dialog-view .password {
		width: 75%;
		margin: 1vh auto;
	}
	html.bx-touch .dialog-view .password input {
		width: 100%;
		padding-right: 14%;
		margin: 0;
	}
	html.bx-touch .dialog-view .password .password-control {
		width: 10%;
		height: 50%;
		right: 2%;
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
	}
	html.bx-touch .dialog-view span.small {
		font-size: 4vw;
	}
	html.bx-touch .dialog-view button {
		width: 75%;
		height: 18vw;
		font-size: 6vw;
	}
	html.bx-touch .dialog-view span {
		font-size: 3.5vw;
	}
	html.bx-touch .dialog-view input[type="radio"]:checked + .radio-check-image::after {
		width: 3vw;
		height: 3vw;
		border-radius: 1.5vw;
		top: 0.5vw;
		left: 0.5vw;
	}
	html.bx-touch .dialog-view .radio-check-image {
		width: 4vw;
		height: 4vw;
		border-radius: 2vw;
	}
	html.bx-touch .dialog-view .checkbox-check-image {
		width: 3.5vw;
		height: 3.5vw;
		flex: 0 0 3.5vw;
		margin-right: 2vw;
	}
	html.bx-touch .dialog-view #recaptcha {
		margin-bottom: 1vh;
	}
	html.bx-touch .dialog-view .dialog-close {
		width: 8vw;
		height: 8vw;
		top: 1vw;
		right: 2vw;
		position: absolute;
		background-size: 4vw 4vw;
		background-position: center;
		background-repeat: no-repeat;
	}
	html.bx-touch .dialog-view span.error {
		height: 11vw;
		line-height: 3.5vw;
	}
	html.bx-touch .dialog-view span.error::before {
		width: 13vw;
		height: 13vw;
		font-size: 11vw;
		line-height: 13vw;
		top: unset;
		left: -9vw;
		border-radius: 50%;
	}
}