.page-space {
	padding-top: 40px;
	padding-bottom: 40px;
}

.page-progress-steps {
	margin-bottom: 25px;
}

.progress-steps {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.progress-steps li {
	position: relative;
}

.progress-step-label {
	margin-left: 5px;
}

.account-form {
	max-width: 600px;
	margin: auto;
}

.form-section-title {
	font-weight: 500;
	font-size: 18px;
	text-align: center;
	margin-bottom: 15px;
	margin-top: 30px;
}

.form-error {
	text-align: center;
}

.form-error-text {
	display: inline-block;
	color: red;
	margin-bottom: 15px;
	font-weight: 500;
}

.form-group {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.form-label {
	width: 180px;
	font-weight: 500;
}

.form-control {
	display: block;
	width: 250px;
	padding: 8px 15px;
	border: 2px solid #ccc;
	border-radius: 20px;
	outline: none;
	transition: ease 0.25s border-color;
	resize: vertical;
}

.form-control:focus {
	border-color: var(--theme-primary);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 30px white inset !important;
}

.form-control-wrapper {
	width: 250px;
	position: relative;
}

.form-control-wrapper .form-control,
.form-control-wrapper .error {
	width: 100%;
}

.form-control+.error {
	width: 250px;
	margin-left: 180px;
	padding: 0 10px;
	display: block;
	margin-top: 5px;
	color: red;
	font-weight: 500;
	font-size: 0.85em;
}

.form-control-wrapper label.error {
	margin-left: 0;
	text-align: center;
	--margin: 10;
	margin-left: var(--margin)px;
}

.form-control-wrapper .preview-password {
	position: absolute;
	top: 0;
	right: 0;
	width: 39px;
	height: 39px;
	border-radius: 50px;
}

.preview-password:not(.toggle) .preview-visible,
.preview-password.toggle .preview-hidden {
	display: none;
}

.form-action {
	text-align: center;
	padding: 15px;
}

.form-action-btn {
	background-color: var(--theme-primary);
	color: var(--theme-primary-fc);
	font-weight: 500;
	padding: 10px 25px;
	border-radius: 50px;
	cursor: pointer;
	border: 2px solid var(--theme-primary);
	transition: ease 0.25s;
	transition-property: background-color, color, box-shadow;
}

.form-action-btn:hover,
.form-action-btn:focus {
	background-color: var(--theme-primary-fc);
	color: var(--theme-primary);
	box-shadow: 2px 3px 5px var(--shadow-color);
}

.form-link-text {
	margin-top: 30px;
	color: #666;
	font-weight: 500;
}

.form-link-text a {
	color: var(--theme-primary);
}

.form-link-text a:hover {
	text-decoration: underline;
}

.select-course-form {
	margin-top: 40px;
}

.course-select-main {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.select-course-step {
	max-width: 500px;
	margin: auto;
	width: 100%;
}

.select-course-step-name {
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 15px;
	margin-top: 5px;
}

.select-course-options {
	display: flex;
	margin-bottom: 20px;
	flex-wrap: wrap;
	justify-content: center;
	margin-left: -10px;
	margin-right: -10px;
}

.select-course-option {
	position: relative;
	flex: 0 1 205px;
	margin: 10px;
}

.select-course-radio {
	position: absolute;
	/* visibility: hidden; */
	opacity: 0;
	top: 100%;
	left: 50%;
	transform: translate(-50%, -100%);
}

.select-course-label {
	padding: 20px;
	background-color: #eaeaea;
	width: 100%;
	display: block;
	border-radius: 5px;
	transition: ease 0.25s box-shadow;
	box-shadow: inset 0 0 0 2px rgba(0, 0, 0, .2);
	font-weight: 500;
	position: relative;
	color: #fff;
}

.select-course-label::after {
	content: '\f00c';
	font-weight: 900;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-family: "Font Awesome 5 Free";
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 5px;
	border-radius: 50px;
	background-color: #fff;
	color: #000;
	opacity: 0;
	transition: ease 0.25s opacity;
}

.select-course-name {
	font-size: 18px;
	margin-bottom: 5px;
}

.select-course-duration {
	font-size: 14px;
	margin-bottom: 5px;
}

.select-course-price {
	font-size: 18px;
}

.select-course-price del {
	font-size: 0.8em;
}

.select-course-desc {
	font-size: 12px;
	height: 45px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.select-hover[aria-label] {
	position: relative;
	text-decoration: none;
	display: block;
	z-index: 10;
}

.select-hover[aria-label]::before {
	opacity: 0;
	pointer-events: none;
	position: absolute;
	/* top: -999; */
	content: attr(aria-label);
	background-color: #222;
	border-radius: 6px;
	text-shadow: 0 0 5px #000;
	/* white-space: nowrap; */
	color: #fff;
	padding: 9px 12px;
	overflow: hidden;
	top: unset;
	bottom: 100%;
	left: 0%;
	margin-bottom: 10px;
	font-size: 0.85em;
	line-height: 1.5;
	transition: ease 0.25s opacity;
	width: 350px;
	max-width: 90vw;
}

.select-hover[aria-label]:hover::before {
	opacity: 1;
	pointer-events: all;
}

.select-hover[aria-label]::after {
	content: "";
	position: absolute;
	pointer-events: none;
	opacity: 0;
	position: absolute;
	bottom: 100%;
	left: 20%;
	margin-bottom: 0;
	display: inline-block;
	vertical-align: middle;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #222;
	transition: ease 0.25s opacity;
	z-index: 100;
}

.select-hover[aria-label]:hover::after {
	opacity: 1;
	pointer-events: all;
}

.select-course-radio:checked+.select-course-label {
	box-shadow: inset 0 0 0 2px var(--theme-primary);
}

.select-course-radio:checked+.select-course-label::after {
	opacity: 1;
}

.select-course-navs {
	display: flex;
	justify-content: center;
}

.select-course-nav-btn {
	padding: 10px 25px;
	font-weight: 500;
	border-radius: 4px;
	cursor: pointer;
	background-color: var(--theme-primary);
	color: var(--theme-primary-fc);
}

.course-selected-option {
	font-weight: 500;
	color: #666;
}

.course-select-group {
	/* display: flex;
	align-items: center; */
	font-size: 18px;
	margin-bottom: 20px;
}

.course-select-label {
	/* width: 35%; */
	display: block;
	font-size: 16px;
	margin-bottom: 5px;
	font-weight: 500;
}

.custom-dropdown {
	position: relative;
	width: 100%;
	display: block;
}

.custom-dropdown select {
	background-color: #fff;
	width: 100%;
	color: #000;
	font-size: inherit;
	padding: .5em;
	padding-right: 2.5em;
	margin: 0;
	border-radius: 4px;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	overflow: hidden;
	appearance: none;
	outline: none;
	border: 1px solid #eaeaea;
}

.custom-dropdown::before,
.custom-dropdown::after {
	content: "";
	position: absolute;
	pointer-events: none;
}

.custom-dropdown::after {
	/*  Custom dropdown arrow */
	content: "\25BC";
	height: 1em;
	font-size: .625em;
	line-height: 1;
	right: 1.2em;
	top: 50%;
	margin-top: -.5em;
	color: rgba(0, 0, 0, .4);
}

.custom-dropdown::before {
	/*  Custom dropdown arrow cover */
	/* width: 2em;
	right: 0;
	top: 0;
	bottom: 0;
	border-radius: 0 3px 3px 0;
	background-color: rgba(0, 0, 0, .05); */
}

.order-confirmation-content {
	background-color: #f5f7fb;
	border-radius: 15px;
	padding: 30px;
	max-width: 600px;
	width: 100%;
	margin: auto;
	box-shadow: 2px 3px 7px var(--shadow-color);
	/* border: 1px solid var(--theme-dark-fc); */
}

.bill-title {
	text-align: center;
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 0.5em;
}

.bill-section-title {
	font-size: 18px;
	margin-top: 1.5em;
	font-weight: 500;
}

.bill-row {
	display: flex;
	padding: 5px 0;
	height: 35px;
	align-items: center;
	border-bottom: 1px solid #ebeff3;
}

.bill-row-label {
	flex: 0 0 200px;
}

.bill-row-value {
	font-weight: 500;
	flex: 1 1 250px;
}

.bill-row-value i.fa {
	font-size: 0.8em;
}

.bill-row-extra {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	margin-top: 15px;
}

.bill-extra-info {
	border: 1px solid #b5b8bd;
	border-radius: 4px;
	padding: 5px;
	text-align: center;
}

.bill-row-actions {
	margin-top: 20px;
	display: flex;
	justify-content: center;
}

.bill-action {
	color: #fff;
	padding: 10px 15px;
	border-radius: 5px;
	margin: 0 5px;
	width: 45%;
	text-align: center;
}

.bill-action-primary {
	background-color: var(--theme-light);
}

.bill-action-secondary {
	background-color: var(--theme-primary);
}

.contact-page-content {
	padding-top: 40px;
	padding-bottom: 40px;
}

.contact-page-row {
	display: flex;
	margin-top: 20px;
}

.contact-form-col {
	flex: 1 1 50%;
}

.contact-address-col {
	flex: 1 1 50%;
}

.contact-address-title {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 0.5em;
}

.contact-address-row {
	display: flex;
	margin-bottom: 25px;
}

.contact-address-icon {
	font-size: 24px;
	color: var(--theme-primary);
	margin-right: 10px;
}

.contact-address-text {
	flex: 1 1 auto;
	font-size: 18px;
}

.about-page-content {
	padding-top: 40px;
	padding-bottom: 40px;
}

.about-text {
	line-height: 1.5;
	margin-bottom: 10px;
	font-size: 14px;
}

.about-page-trainer {
	padding-top: 50px;
}

.about-row {
	display: flex;
}

.about-text-content {
	flex: 1 1 65%;
	padding-right: 20px;
}

.about-img-col {
	flex: 1 1 35%;
}

.about-img-col img {
	width: 100%;
	display: block;
}

@media (max-width: 520px) {
	.page-progress-steps {
		/* display: none; */
	}

	.select-course-form {
		margin-top: 0;
	}

	.course-select-main {
		grid-template-columns: repeat(2, 1fr);
	}

	.course-select-group {
		margin-bottom: 10px;
	}

	.select-course-step-name {
		font-size: 18px;
	}

	.select-course-options {
		margin: 0;
	}

	[aria-label]::before {
		width: 100%;
		font-size: 0.8em;
	}

	.page-space {
		padding-top: 40px;
		padding-top: 20px;
		padding-bottom: 40px;
	}

	.progress-steps {
		/* flex-direction: column; */
		align-items: flex-start;
	}

	.progress-steps li {
		margin-bottom: 5px;
		display: block;
		flex: 1 1 100%;
		text-align: center;
		padding-left: 7px;
		padding-right: 7px;
	}

	.progress-steps .progress-filled {
		color: var(--theme-primary);
		font-weight: 600;
	}

	.progress-step-icon {
		display: block;
		margin-bottom: 5px;
		font-size: 15px;
		line-height: 1.5;
		width: 30px;
		height: 30px;
		margin-left: auto;
		margin-right: auto;
		border-radius: 50px;
		border: 1px solid currentColor;
		padding: 3px;
	}

	.progress-step-label {
		max-width: min-content;
		margin: auto;
		display: block;
	}


	.order-confirmation-content {
		padding: 20px;
	}

	.bill-row-label {
		flex: 0 0 150px;
	}

	.contact-page-row {
		flex-direction: column;
	}

	.contact-address-col {
		margin-top: 20px;
	}

	.contact-address-title {
		font-size: 16px;
	}

	.contact-address-icon {
		font-size: 20px;
		margin-right: 5px;
	}

	.contact-address-text {
		font-size: 14px;
	}

	.about-row {
		flex-direction: column-reverse;
	}

	.about-text-content {
		margin-top: 25px;
		padding-right: 0;
	}
}

@media (min-width:521px) {
	.progress-steps li {
		padding: 10px 15px;
		border-radius: 50px;
		background-color: #eaeaea;
		position: relative;
		z-index: 1;
		color: #666;
		font-weight: 500;
		display: flex;
		align-items: center;
	}

	.progress-steps .progress-complete::after {
		content: "";
		position: absolute;
		z-index: 0;
		left: -2px;
		top: 50%;
		width: 100%;
		height: 2px;
		background-color: var(--theme-primary);
		transform: translate(100%, -50%);
	}

	.progress-steps .progress-filled {
		color: var(--theme-primary-fc);
		background-color: var(--theme-primary);
	}

	.progress-steps li:not(:last-child)::before {
		content: "";
		position: absolute;
		z-index: 0;
		left: 0;
		top: 50%;
		width: 100%;
		height: 2px;
		background-color: #eaeaea;
		transform: translate(100%, -50%);
	}
}