.send_wrapper {
	position: relative;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.send_wrapper .custom-spinner {
	position: absolute;
	left: 10px;
	top: 50%;
	margin: 0;
	transform: translateY(-50%) scale(1.2);
	display: inline-block;
	background-color: #23282d;
	opacity: 0;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	display: none;
}

.send_wrapper .custom-spinner::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc;
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.send_wrapper .custom-spinner.active {
	opacity: 0.75;
	display: block;
}

.wpcf7-spinner {
	display: none;
}

.send_wrapper .wpcf7-submit {
	width: 180px;
}

.wpcf7-submit.sending {
	cursor: wait;
	pointer-events: none;
	opacity: 0.5;
}

.lightbox input[type='submit'] {
	margin-top: 0px !important;
}

.course-actions .btn {
	min-width: 100%;
	text-align: center;
	margin-top: -1px;
}

@media only screen and (min-width: 768px) {
	.course-actions {
		display: inline-flex;
	}
	.course-actions .btn {
		min-width: auto;
		text-align: center;
		margin-top: 0px;
		margin-right: -1px;
	}
}
