.wpcf7_form{
	height:10rem;
	position:relative;
}

.blank body:after, body.blank:after{
	content:"";
	width:100%;
	height:100%;
	text-align:center;
	position:fixed;
	left:0;
	top:0;
	background-color:var(--e-global-color-text);
	z-index:-100;
	opacity:0
}
.blank body:after{
	z-index:9999;
	opacity:.4
}
body.blank:after{
	z-index:9999;
	opacity:.2
}
.blank body.blank:after{
	opacity:1
}
.cssload-loader:before, .wpcf7_form:before{
	content:'';
	position:fixed;
	z-index:10000;
	top: 50%;
	margin-top: -2.5rem;
	left: 50%;
	margin-left: -2.5rem;
	width: 5rem;
	height: 5rem;
	border: .5rem solid var(--e-global-color-a8be826);
	border-top:.1rem rgba(35, 31, 32, 0) solid;
	border-bottom:.1rem rgba(35, 31, 32, 0) solid;
	border-radius:50%;
	animation:spin 1s infinite linear
}
.wpcf7_form:before{
	position:absolute
}
@keyframes spin{
	from{
		transform:rotate(0deg);
		transform:rotate(0deg);
	}
	to{
		transform:rotate(359deg);
		transform:rotate(359deg);
	}
}

.response-output{
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100001;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0,0,0,.2);
}
.response-output > div{
	background-color: var(--e-global-color-primary);
	color: var(--e-global-color-2d040be);
	border: solid 2rem rgba(0,0,0,0);
	max-width: 30rem;
	width:calc(100% - 2rem);
	cursor: pointer;
	font-size: 1rem;
	line-height: 1.4;
	border-radius: .5rem;
	font-weight: normal;
	position: relative;
	text-align:center;
}
.response-output.alert > div{
	background-color: var(--e-global-color-a8be826);
}
.response-output > div .close{
	color: transparent;
	position: absolute;
	top: -1.2rem;
	right: -1.2rem;
	width: 1rem;
	height: 1rem;
}
.response-output > div .close:hover{
	color: transparent;
}
.response-output > div .close:after{
	content: "\00d7";
	color: #fff;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1;
	position: absolute;
	top: -.5rem;
	right: 0;
}