#reflection-form-response {
	z-index: 9999;
	background-color: rgba(0,0,0,.5);
}
.reflection-form-response #reflection-form-response {
    clip-path: inset(0 0 0 0);
	
	pointer-events: auto;
	visibility: visible;
	
	transition:
		clip-path  .6s cubic-bezier(0.38, 0.005, 0.215, 1),
		visibility  0s 0s;
}

/*--------------------------------------------------------------------------------------------------------------------*/

#reflection-form-response > .modal-wrapper {
	display: flex; min-height: 100%;
	flex-direction: column;
	justify-content: center;
    align-items: center;
	padding: 0 25px;
}

/*--------------------------------------------------------------------------------------------------------------------*/

#reflection-form-response > .modal-wrapper > .response {
	position: relative;
	display: flex; width: 100%; max-width: 600px;
	flex-direction: column;
	justify-content: center;
	
	background-color: #FFF;
	border-radius: 40px;
	box-shadow: 0 20px 40px rgba(0,0,0,.3);
	
	color: #000;
}
#reflection-form-response > .modal-wrapper > .response > .accent {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.reflection-form-success #reflection-form-response > .modal-wrapper > .response > .accent { background-image: url("../../images/icons/reflection-form-success.svg"); }
.reflection-form-failure #reflection-form-response > .modal-wrapper > .response > .accent { background-image: url("../../images/icons/reflection-form-failure.svg"); }
#reflection-form-response > .modal-wrapper > .response > .logo {
	width: 150px; height: 40px;
	margin-bottom: 20px;
	
	background-color: #000;
	
	-webkit-mask-image: url("../../images/logo.png");
	mask-image: url("../../images/logo.png");
	-webkit-mask-position: top left;
	mask-position: top left;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}
#reflection-form-response > .modal-wrapper > .response > .title,
#reflection-form-response > .modal-wrapper > .response > .description { max-width: 350px; }
#reflection-form-response > .modal-wrapper > .response > .title {
	margin-bottom: 10px;
	
	font-size: 16px;
	font-weight: 700;
}
#reflection-form-response > .modal-wrapper > .response > .description {
	font-size: 12px;
}
@media (min-width: 650px) {
	#reflection-form-response > .modal-wrapper > .response {
		padding: 60px 40px 60px 180px;
	}
	#reflection-form-response > .modal-wrapper > .response > .accent {
		position: absolute; top: 50%; left: 50px; transform: translateY(-50%);
		height: 80px; width: 80px;
	}
}
@media (max-width: 649.99px) {
	#reflection-form-response > .modal-wrapper > .response {
		align-items: center;
		padding: 60px 40px;
		text-align: center;
	}
	#reflection-form-response > .modal-wrapper > .response > .accent {
		height: 80px; width: 80px;
		margin-bottom: 50px;
	}
}