.ct-buttons {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 16px;
}

.ct-buttons--align-left {
	justify-content: flex-start;
}

.ct-buttons--align-center {
	justify-content: center;
}

.ct-buttons--align-right {
	justify-content: flex-end;
}

@media (max-width: 768px) {
	.ct-buttons {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
	}
}
