.bnd-signup-form {
	padding-top: 50px;
}

.horse-select .select-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 25px;
	justify-content: flex-start;
    align-items: stretch;
}

@media (max-width: 740px) {
	.horse-select .select-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 420px) {
	.horse-select .select-row {
		gap: 10px;
	}

	.horse-select .horse p.title {
		font-size: 0.8em;
	}
}

.horse-select .horse img {
	width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.horse-select .horse p.title {
	margin: 0 0 0 0;
	text-align: center;
	padding: 10px;
	text-transform: uppercase;
	color: #fff;
	background-color: #173236;
	font-weight: 600;
}

.horse-select .horse {
	border: 4px solid transparent;
	transition: all .3s ease;
	cursor: pointer;
	display: flex;
    flex-direction: column;
    gap: 0;
	overflow: hidden;
	border-radius: 5px;
}

.horse-select .horse:hover,
.horse-select .horse.active {
	border: 4px solid #173236;
}

.horse-select {
	margin-bottom: 50px;
}

.center {
	text-align: center;
}

.mb-25 {
	margin-bottom: 25px !important;
}

.bnd-signup-form {
	color: #173236;
}

.bnd-signup-form .page {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

button {
	background: #b49857;
    display: inline-block;
    border-radius: 0;
    border: none;
    line-height: 1 !important;
    color: #fff;
    padding: 1rem 3rem;
    font-size: 1.8rem;
    font-family: "Josefin Sans", sans-serif;
    transition: all .3s ease;
    font-weight: 600;
	cursor: pointer;
}

button:hover {
	color: #fff;
    background: #173236;
}

button.back {
	background-color: transparent;
	color: #173236;
	padding: unset;
	margin: 0 0 0 0;
	text-decoration: underline;
}

h2, h3 {
	color: #173236;
	font-weight: 600;
	margin: 0 0 0 0;
}

.bnd-signup-form p {
	font-weight: 400;
	color: #173236;
	margin: 0 0 0 0;
}

.size-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 15px;
	max-width: 600px;
	margin: 0 auto;
	margin-bottom: 50px;
}

@media (max-width: 670px) {
	.size-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 490px) {
	.size-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

html {
	scroll-behavior: smooth;
}

.size-grid .size {
	display: flex;
	flex-direction: column;
	gap: 5px;
	justify-content: center;
	align-items: center;
	text-align: center;
	aspect-ratio: 1;
	background-color: #173236;
	font-weight: 600;
	transition: all .3s ease;
	border: 4px solid transparent;
	cursor: pointer;
	border-radius: 100%;
	padding: 10px;
}

.size-grid .size:hover,
.size-grid .size.active {
	border: 4px solid #b49857;
}

.size-grid .size .top {
	font-size: 3rem;
	color: #b49857;
}

.size-grid .size .bottom {
	font-size: 1.5rem;
	color: #fff;
}

.buttons-cont {
	display: flex;
	flex-direction: row;
	gap: 10px;
	justify-content: center;
	align-items: center;
	margin-bottom: 25px;

	@media (max-width: 590px) {
		flex-direction: column-reverse;
	}
}

.package-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 15px;
	justify-content: center;
	align-items: stretch;
	margin-bottom: 25px;
	margin-top: 25px;

	@media (max-width: 980px) {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}

.package-row .package {
	text-align: center;
	padding: 20px;
	border: 2px solid #b49857;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: space-between;
}

.package-row .package h3 {
	font-weight: 600;
	color: #173236;
}

.package-row .package ul {
	text-align: left;
}

.package-row .package .price {
	display: flex;
	flex-direction: row;
	gap: 5px;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 10px;
}

.package-row .package .price .amount {
	font-weight: 700;
}

.package-row .package .price .other {
	font-size: .6em;
	font-weight: 600;
}

.package-row ul {
	font-weight: 600;
	margin: 0 0 0 0;
}

.package-row ul li {
	list-style-type: none;
	display: flex;
	flex-direction: row;
	gap: 5px;
	justify-content: flex-start;
	align-items: center;
}

.package-row ul li img {
	width: 20px;
	height: 20px;
}

.package-row p.period {
	padding-bottom: 10px;
}

.package-row hr {
	border: none;
	height:4px;
	background-color: #b49857;
	margin-bottom: 10px;
}

.form-block {
	display: flex;
	flex-direction: column;
	gap: 0;
}

input[type="email"] {
	border-radius: 4px;
	margin-top: 5px;
	margin-bottom: 25px;
	padding: 10px 10px;
	box-shadow: 5px 5px 15px rgba(0,0,0,.1);
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

input[type="checkbox"]:checked {
	accent-color: #b49857;
}

.terms {
	display: flex;
	flex-direction: row;
	gap: 10px;
	justify-content: flex-start;
	align-items: flex-start;
}

.bnd-signup-form {
	overflow: hidden;
}

.bnd-signup-form form {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
	width: 500%;
	overflow: hidden;
}

.bnd-signup-form form .page {
	width: 100%;
	transform: translate(0,0);
}

html {
	scroll-behavior: smooth;
}

label.acknowledge {
	font-size: 1em;
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: flex-start;
    align-items: center;
    margin: 25px 0px;
	font-weight: 600;
}

.reg-question.addons .products .product .title {
	font-size: 1em;
	text-align: center;
}

.progress-bar {
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	background-color: #173236;
	padding: 20px 30px;
	max-width: unset;
}

.progress-bar .inner {
	max-width: 1140px;
	margin: 0 auto;
	position: relative;
}

.progress-bar .inner .sections {
	display: flex;
	flex-direction: row;
	height: 50px;
	justify-content: flex-start;
	width: 100%;
	align-items: center;
	gap: 10px;
	position: relative;
}


.progress-bar .inner .sections::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 30px;
	height: 30px;
	background-color: #b49857;
	border-radius: 100%;
}

.progress-bar .inner .sections::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(50%, -50%);
	width: 30px;
	height: 30px;
	background-color: #fff;
	border-radius: 100%;
}

.progress-bar .sections > div {
	width: 100%;
	height: 10px;
	border-radius: 5px;
	background-color: #fff;
}

.progress-bar .sections .start {
	flex: 2;
}
.progress-bar .sections .tailor {
	flex: 6;	
}
.progress-bar .sections .extras {
 	flex: 4;
}
.progress-bar .sections .finish {
	flex: 2;
}

.progress-bar .labels {
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	font-weight: 600;
	font-size: calc(min(1.6rem, 3vw));
	display: flex;
	flex-direction: row;
	gap: 10px;
	justify-content: center;
	align-items: center;
}

.progress-bar .labels .start-text {
	flex: 2;
}
.progress-bar .labels .tailor-text {
	flex: 6;
}
.progress-bar .labels .extras-text {
	flex: 4;
}
.progress-bar .labels .finish-text {
	flex: 2;
}

.progress-bar .sections .bar-inner {
	width: 0%;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	background-color: #b49857;
	height: 10px;
	border-radius: 5px;
	transition: all .3s ease;
}
