.qipart__form {
	margin-bottom: 30px;
}

.qipart__item {
	box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.25);
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 40px;
}

.qipart__item p:last-child {
	margin: 0;
}

#qipart-autofill {
	border: 1px solid lightgray;
	padding: 5px 35px;
	display: block;
	text-align: center;
	margin-top: 15px;
	cursor: pointer;
	transition: all ease-in-out 400px;
}

#qipart-autofill:hover {
	background: #eee;
}

.qipart__form .error_msg,
.qipart__invite .error_msg {
	border: 1px solid #ff0000;
	background: rgba(255,0,0,0.2);
	padding: 20px;
	margin: 15px 0 0 0;
	color: #ff0000;
}

.qipart__success {
	border: 1px solid #013220;
	background: rgba(0,255,0,0.2);
	padding: 20px;
	margin: 15px 0 0 0;
	color: #013220;
}

.qipart__overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 5;
}

.qipart__overlay.active {
	display: block;
}

.qipart__close {
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
}

.qipart__close:hover {
	text-decoration: underline;
}

.qipart__invite {
	position: absolute;
	display: block;
	top: 100px;
	left: 50%;
	width: 100%;
	max-width: 900px;
	transform: translateX(-50%);
	background: white;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
	padding: 20px;
}

.qipart__invite .loader {
	transition: all ease-in-out 400px;
	opacity: 0;
}

.qipart__invite.loading .loader {
	opacity: 1;
}

/* OVERWRITES */
.qipart .qiform__steps {
	display: none;
}

.qipart .qiform__input--terms {
	flex-wrap: wrap;
}

.qipart .qiform__field--copy small {
	width: 100%;
}

@media screen AND (min-width:769px) {
	.qipart {
		display: flex;
	}
	
	.qipart__form {
		width: 70%;
		padding-right: 40px;
	}

	.qipart__board {
		width: 30%;
	}
}