#reflection-form-response {
    position: fixed; top: calc((100% + var(--wp-admin--admin-bar--height, 0px)) / 2); left: 50%; transform: translate(-50%, -50%); z-index: 3;
	display: flex; width: 100%;
	flex-direction: column;
	justify-content: center;
	
	background-color: #FFF;
	border-radius: 40px;
	box-shadow: 0 5px 10px rgba(0,0,0,.2);
	
	color: #000;
	
	opacity: 0;
    pointer-events: none;
	
	isolation: isolate;
}
.loaded #reflection-form-response { transition: opacity .4s cubic-bezier(0.38, 0.005, 0.215, 1); }
.reflection-form-response #reflection-form-response {
    opacity: 1;
	pointer-events: auto;
}
@media (min-width: 650px) {
	#reflection-form-response {
		width: 100%; max-width: 560px; max-height: calc(100% - 50px);
		align-items: flex-start;
		padding: 50px 90px 50px 180px;
	}
}
@media (max-width: 649.99px) {
	#reflection-form-response {
		max-width: calc(100% - 50px); max-height: calc(100% - 50px);
		align-items: center;
		padding: 60px 40px;
		text-align: center;
	}
}

/*--------------------------------------------------------------------------------------------------------------------*/

#reflection-form-response:before {
	content: '';
	display: block; height: 80px; width: 80px;
	
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.reflection-form-success #reflection-form-response:before { background-image: url("../../images/icons/reflection-form-success.svg"); }
.reflection-form-failure #reflection-form-response:before { background-image: url("../../images/icons/reflection-form-failure.svg"); }
@media (min-width: 650px)	 { #reflection-form-response:before { position: absolute; top: 50%; left: 50px; transform: translateY(-50%); } }
@media (max-width: 649.99px) { #reflection-form-response:before { margin-bottom: 50px; } }

/*--------------------------------------------------------------------------------------------------------------------*/

#reflection-form-response > .logo {
	width: 160px; height: 40px;
	margin: 5px 0 15px;
	
	background-image: url("../../images/logo-dark.svg");
	background-position: top left;
	background-size: contain;
	background-repeat: no-repeat;
}
#reflection-form-response > .title {
	margin-bottom: 5px;
	
	font-size: 16px;
	font-weight: 500;
}
#reflection-form-response > .description {
	font-size: 14px;
}