.callme-form-module{
	margin: 20px 0 50px 0;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 4px 14px -2px rgba(0, 0, 0, .32);
	border-radius: 4px;
	border-bottom: 4px solid #e89238;
	display: flex;
	flex-direction: row;
	position: relative;
}

.callme-form-module form{
	display: flex;
	flex-direction: column;
	flex:1;
}
.feedback-description{
	font-size: 22px;
	color: #202e31;
	margin-bottom: 25px;
	overflow: hidden;
}

.feedack-form-img{
	flex: 1;
	min-height: 100%;
	position:relative;
	padding-right: 20px;
}

.feedack-form-img:before{
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right: 30px;
	content: '';
	background: url(/modules/Callme/public/front/img/form-img.jpg) center no-repeat;
}

.feedack-form-img:after{
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right: 30px;
	content: '';
	background: rgb(0 0 0 / 50%);
}

.callme-form-module .validation-error{
	font-size: 13px;
	position: absolute;
	bottom: -20px;
	padding: 2px 5px;
	color: #FFFFFF;
	border: 1px solid #bbb;
	transition: all 240ms ease-out;
	border-radius: 4px;
	background: #202E31;
	box-shadow: 3px 4px 14px -2px rgba(0, 0, 0, .32);
	opacity: 0;
}

.callme-form-module .validation-error:before {
	content:'';
	position:absolute;
	width:0;
	height: 0;
	border-bottom: 4px solid #202E31;
	border-left: 5px solid rgba(0, 0, 0, 0);
	border-right: 5px solid rgba(0, 0, 0, 0);
	top: -4px;
	left: 6px;
}

.callme-form-module .validation-error.-visible {
	opacity: 1;
}

.callme-form-module .error{
	border: 1px solid red;
}

.jsplash-wrapper.callme-js-form {padding: 0;}


.jsplash-inner .callme-form-module {
	margin: 0;
	width: 300px;
}

.jsplash-inner .callme-form-module label >span {
	text-align: left;
	display: block;
	font-size: 13px;
}

.jsplash-inner .callme-form-module .button-field {
	margin: 0;
}
.jsplash-inner .callme-form-module .button-field input {
	margin-top:0
}