.reflection-form { position: relative; }

/*-----------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------*/

.reflection-form > .header {
	position: sticky; top: 0px; z-index: 1;
	padding: 45px 0 40px;
	
	background-color: #FFF;
}
.reflection-form > .header > .close-btn {
	position: absolute; right: 0;
	display: block;
	
	background-image: url("../../images/icons/close.svg");
	background-position: center;
	background-size: 20px auto;
	background-repeat: no-repeat;
}
.reflection-form > .header > .title {
	margin: 0 0 25px;
	font-weight: 400;
}
.reflection-form > .header > .description {
	max-width: 350px;
	margin: 0;
}
@media (min-width: 900px) {
	.reflection-form > .header > .close-btn {
		height: 40px; width: 40px;
	}
	.reflection-form > .header > .title {
		padding-right: 60px;
		
		line-height: 40px;
		font-size: 32px;
	}
}
@media (max-width: 899.99px) {
	.reflection-form > .header > .close-btn {
		height: 30px; width: 30px;
	}
	.reflection-form > .header > .title {
		padding-right: 50px;
		
		line-height: 30px;
		font-size: 24px;
	}
}

/*-----------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------*/

.reflection-form > .fields {
	display: flex; width: 100%;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	column-gap: 30px;
	row-gap: 20px;
}
.reflection-form.sending > .fields { pointer-events: none; }

/*-----------------------------------------------------------------------------------------*/

.reflection-form > .fields > .field {
	position: relative;
	flex: 0 0 100%; max-width: 100%;
	padding-bottom: 15px;
	
	border-bottom: solid 1px;
}
.reflection-form > .fields > .field:first-child { padding-top: 0; }

@media (min-width: 700px) {
	.reflection-form > .fields > .field.cols-2 { flex: calc((100% - 30px) / 2); }
	.reflection-form > .fields > .field.cols-3 { flex: calc((100% - 60px) / 3); }
}

/*-----------------------------------------------------------------------------------------*/

.reflection-form > .fields > .field > label {
	display: block;
	margin-bottom: 10px;
	
	line-height: 16px;
	font-size: 14px;
	font-weight: 400;
}

/*-----------------------------------------------------------------------------------------*/

.reflection-form > .fields > .field > .error {
    display: none;
	margin-top: 8px;
	
	line-height: 16px;
	font-size: 12px;
	color: #BA1717;
}
.reflection-form > .fields > .field.empty > .empty,
.reflection-form > .fields > .field.wrong > .wrong { display: block; }

/*-----------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------*/

.reflection-form > .fields > .input > input {
    display: block; height: 30px; width: 100%;
    padding: 0;
	
    border: none;
    background-color: transparent;
    
	text-overflow: ellipsis;
    font-family: inherit;
    font-size: 14px;
	color: inherit;
}
.reflection-form > .fields > .input > input::-webkit-input-placeholder,
.reflection-form > .fields > .input > input::placeholder {
    opacity: .5;
    color: inherit;
}

/*-----------------------------------------------------------------------------------------*/

.reflection-form > .fields > .textarea > textarea {
    display: block; height: 120px; width: 100%; resize: none;
    padding: 5px 0 0;
	margin: 0;
	
    border: none;
    background-color: transparent;
    
	text-overflow: ellipsis;
    font-family: inherit;
    font-size: 14px;
	color: inherit;
}
.reflection-form > .fields > .textarea > textarea::-webkit-input-placeholder,
.reflection-form > .fields > .textarea > textarea::placeholder {
    opacity: .5;
    color: inherit;
}

/*-----------------------------------------------------------------------------------------*/

.reflection-form > .fields > .checkbox {
	padding-bottom: 0;
	border-bottom: none;
}
.reflection-form > .fields > .checkbox > .checkbox {
	position: relative;
	max-width: 600px;
}
.reflection-form > .fields > .checkbox > .checkbox > input {
	position: absolute; top: 0; left: 0;
	pointer-events: none;
	visibility: hidden;
}
.reflection-form > .fields > .checkbox > .checkbox > label {
	display: block; max-width: 400px;
	padding-left: 35px;
	
	text-align: left;
	line-height: 20px;
	
	cursor: pointer;
}
.reflection-form > .fields > .checkbox > .checkbox > label:not(:last-child) { margin-bottom: 5px; }
.reflection-form > .fields > .checkbox > .checkbox > label:before {
	content: "";
	position: absolute; left: 0;
	box-sizing: border-box;
	display: block; height: 18px; width: 18px;
	
	background-color: rgba(0,0,0,.25);
	background-clip: content-box;
	border: solid 3px rgba(0,0,0,.25);
	border-radius: 3px;
	outline: solid 1px #FFF;
	
	transition:
		outline .2s ease-out,
		background-color .2s ease-out;
}
.reflection-form > .fields > .checkbox > .checkbox > input:checked + label:before { background-color: #000; }
.reflection-form > .fields > .checkbox > .checkbox > label > a { text-decoration: underline; }

.reflection-form > .fields > .checkbox > .checkbox + .error { padding-left: 35px; }

/*-----------------------------------------------------------------------------------------*/

.reflection-form > .fields > .dropdown {}
.reflection-form > .fields > .dropdown > .select { position: relative; }
.reflection-form > .fields > .dropdown > .select:after {
	content: '';
	position: absolute; top: 50%; right: 0; transform: translateY(-50%);
	display: block; height: 10px; width: 10px;
	
	background-image: url("../../images/icons/arrow.down.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.reflection-form > .fields > .dropdown > .select > select {
	appearance: none;
	width: 100%; height: 30px;
	margin: 0;
	padding: 0;
	
	background-color: transparent;
	border: none;
	
	line-height: inherit;
	font-family: inherit;
	font-size: inherit;
	color: rgba(0,0,0,1);
	
	cursor: pointer;
}
.reflection-form > .fields > .dropdown > .select > select:required:invalid { color: rgba(0,0,0,.5); }
.reflection-form > .fields > .dropdown > .select > select > option[value=""][disabled] { display: none; }
.reflection-form > .fields > .dropdown > .select > select > option { color: rgba(0,0,0,.5); }

/*-----------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------*/

.reflection-form > .fields > .submit-wrapper {
	display: flex; flex: 0 0 100%;
	flex-direction: row;
	justify-content: flex-end;
	margin-top: 25px;
}
.reflection-form > .fields > .submit-wrapper > .submit-btn {
	background-color: #000;
	border-color: #000;
	color: #FFF;
}
.reflection-form > .fields > .submit-wrapper > .submit-btn:hover {
	background-color: #FFF;
	border-color: #000;
	color: #000;
}

/*-----------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------*/

.reflection-form > .response { display: none; }