.training-form .form-wrapper .hidden {
    display: none !important;
}

.training-form .form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.training-form .form-title {
    order: 1;
}

.training-form .progress-bar {
    order: 2;
}

.training-form .form-content {
    order: 3;
}

.training-form .form-something-is-wrong {
    order: 4;
    display: none;
	color: #aa0000;
	text-align: center;
}

.training-form .form-actions {
    order: 5;
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 16px;
}

.training-form .form-actions button {
	padding: 10px 16px;
	transition: .15s linear all;
}
.training-form .options button {
	background: #aaa;
	transition: .15s linear all;
}

.training-form p {
	text-align: center;
}

.training-form .options button:hover {
	background-color: #393c40;
}

.training-form .options button.active {
	background-color: #393c40;
}

.training-form textarea {
	grid-column: 1 / 4;
}

.training-form .options,
.training-form .options form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.training-form h2,
.training-form h3 {
	text-align: center;
}

.training-form h2 {
	margin-bottom: 0 !important;
}

.training-form h3 {
	font-weight: 100;
	color: #ddd;
	margin-bottom: 32px;
}

@media screen and (min-width: 1024px) {
	.training-form .options:not(.contact),
	.training-form .options form {
/* 		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center; */
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}
	
	.training-form .options h3 {
		width: 100%;
		grid-column: 1/4;
	}
	
	.training-form .options > button,
	.training-form .options form > * {
		flex: 0 0 calc(50% - 16px);
	}
}