.multistep-forms {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: 950px;
	width: 100%;
	margin: auto;
	padding: 50px 50px;
	border-radius: 3px;
	position: relative;
	justify-content: space-between;
	align-items: initial;
}

.multistep-forms__form {
	display: none;
}

.multistep-forms__form form{
	background: transparent;
}

.multistep-forms__path,
.multistep-forms__cta-container,
.multistep-forms__step:not(.multistep-forms__step--active),
.multistep-forms__thank-you-message{
	opacity: 0;
	position: absolute;
	visibility: hidden;
	transition: opacity ease-in-out 0.3s;
	top: 116px;
	display: none;
}

.multistep-forms__cta-container{
	display: flex;
	justify-content: space-between;
}

.multistep-forms__next-button{
	width: 100%;
	max-width: 300px;
}

.multistep-forms__path--active,
.multistep-forms__cta-container--active,
.multistep-forms__step--active,
.multistep-forms__thank-you-message--active{
	opacity: 1;
	position: relative;
	visibility: visible;
}
.multistep-forms__thank-you-message--active {
	position: initial;
	display: block;
}
.multistep-forms__step {
	width: 100%;
}

.multistep-forms__step .slide-step .multistep-forms__step--active {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 auto;
	align-self: center;
	align-items: center;
	width: 100%;
}

.multistep-forms__next-button--active{
	display: table;
}


.multistep-forms__input{
	margin-bottom: 25px;
}
.multistep-forms__input div {
	text-transform: capitalize;
}
.multistep-forms__step:not(.multistep-forms__step--active) .multistep-forms__input {
	padding: 0px 50px;
}
.multistep-forms__select{
	display: table;
	position: relative;
	width: 100%;
}

.multistep-forms__select:after{
	content: "";
	position: absolute;
	top: 15px;
	right: 8px;
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 0.15em solid #FD565B;
	border-top: 0.15em solid #FD565B;
	transform: rotate(136deg);
	margin-right: 0.5em;
	margin-left: 1em;
	z-index: 1;
}

.multistep-forms__select select{
	-webkit-appearance: none;
}

.multistep-forms__select select:focus{
	outline: 0;
}

.multistep-forms__input textarea{
	min-height: 100px;
}

.multistep-forms__input input::placeholder {
	color: #BDBDBD;
}

.multistep-forms__cta{
	margin: 10px; 
}

.multistep-forms__button,
.multistep-forms__next-button{
	margin-top: -1px;
	transition: all .2s cubic-bezier(.39,.575,.565,1);
}

.multistep-forms__nav-buttons {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.multistep-forms__prev-button, .multistep-forms__next-button {
	width: auto;
}


@media screen and (max-width: 768px){
	.multistep-forms__cta-container{
		flex-direction: column;
	}
}

/** Animations **/
.multistep-forms__paragraph,
.multistep-forms__animation {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;   
}

@-webkit-keyframes fade-in-bottom {
	0% {
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}

}


/** Progress bar **/
/*
.multistep-forms__progress-bar {
background: #8B8A70;
height: 10px;
position: relative;
width: 100%;
margin-bottom: 2rem;
border-radius: 4px;
overflow: hidden;
}

.multistep-forms__progress-bar-inner {
background: #253551;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 0%;
transition: width .6s ease;
}

.multistep-forms__progress-bar-steps {
align-items: center;
display: flex;
height: 100%;
justify-content: space-between;
left: 0;
position: absolute;
top: 0;
width: 100%;
}

.multistep-forms__progress-bar-steps span {
font-size: 18px;
color: #fff;
background: #8B8A70;
padding: 10px;
border-radius: 3px;
text-align: center;
transition: ease-out .5s;
}

.multistep-forms__progress-bar-steps span.active {
background: #253551;
}
*/

.multistep-forms__progress-bar {
	background: #A4A3B8;
	height: 3px;
	position: relative;
	width: 35%;
	margin: 0 auto 40px auto;
}

{# ---- Mobile Breakpoint ---- #}    
@media (max-width: 765px) {   
	.multistep-forms__progress-bar {
		width: 80%;
	}
}

.multistep-forms__progress-bar-inner {
	background: #FD565B;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 0%;
	transition: ease-out .5s;
}

.multistep-forms__progress-bar-steps {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: space-between;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.multistep-forms__progress-bar-steps span {
	font-size: 25px;
	color: #A4A3B8;
	background: #fff;
	padding: 7px 13px;
	border-radius: 50%;
	text-align: center;
	transition: ease-out .5s;
	width: 45px;
	height: 45px;
	border: 2px solid #A4A3B8;
}

.multistep-forms__progress-bar-steps span.active {
	background: #FD565B;
	color: #fff;
	border: 2px solid #FD565B;
	transition: ease-out .5s;
}

.multistep-forms__text--before {
	margin-bottom: 10px;
}
.multistep-forms__checkbox, .multistep-forms__radio {
	margin-top: 15px;
	display: flex;
	gap: 18px;
	flex-direction: column;
}

.multistep-forms .hs-required::after {
	content: "*";
	position: absolute;
	top: 0;
	margin-left: 5px;
	color: #ff0000;
}
.multistep-forms .hs-input.hs-required::after {
	content: "";
}
.multistep-forms label {
	text-transform: none;
	display: block;
	position: relative;
}
.hs-error {
	border-color: red;
}

.multistep-forms__input input.inputError + .messageError,
.multistep-forms__input select.inputError+ .messageError,
.multistep-forms__input textarea.inputError+ .messageError{
	display:block;
	color: red;
}
.multistep-forms__button.hide {
	display: none !important;
}
.multistep-forms__button--hidden {
	opacity: 0;
	z-index: -1;
}
.multistep-forms__button--active {
	opacity: 0;
	z-index: -1;
}

/* Design - Full boxes */
/*
.multistep-forms__checkbox input, .multistep-forms__radio input{
opacity: 0;
position: absolute;
visibility: hidden;
}


.multistep-forms__checkbox input, .multistep-forms__radio input{
position: absolute;
}

.multistep-forms__checkbox--label {
padding: 15px;
border: 1px solid;
background: #fff;
font-weight: 700;
text-align: center;
width: 100%;
display: grid;
align-items: center;
}

.multistep-forms__checkbox--label input {
position: absolute;
visibility: hidden;
opacity: 0;
}

.multistep-forms__checkbox input:checked + label, .multistep-forms__radio input:checked + label {
background: #383839;
color: #fff;
}

*/

@media (max-width: 767px){
	.multistep-forms__checkbox, .multistep-forms__radio {
		gap: 10px;
		flex-wrap: wrap;
	}
}
.multistep-forms__radio-group,
.multistep-forms__checkbox-group {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 24px;
	border-radius: 10px;
	background-color: #ffffff;
	border: 1px solid #484770;
	font-weight: 700;
}
.body-wrapper {
	display: grid;
	grid-template-rows: auto 1fr auto;
	height: 100%;
	min-height: 100vh;
}
.multistep-forms__load {
	display: none;
}
.multistep-forms__load--active {
	display: block;
}
.multistep-forms__load .dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 8px;
	margin-right: 0;
	background: #9d9ca1;
	animation: wave .8s linear infinite,fade .8s linear infinite;
}
.multistep-forms__load .dot:nth-child(2) {
	animation-delay: -.7s;
	opacity: .7;
}
.multistep-forms__load .dot:nth-child(3) {
	animation-delay: -.5s;
	opacity: .5;
}
@keyframes wave {
	0%,100%,60% {
		transform: initial
	}

	30% {
		transform: translateY(-4px)
	}
}

.score-message h3 {
	font-weight: 700;
	text-align-last: center;
	padding-bottom: 5px;
}


.multistep-forms__input>.multistep-forms__label {
	font-weight: 700;
}

.multistep-forms__step--columns .multistep-forms__checkbox {
	display: grid;
	grid-template-columns: minmax(200px, 1fr) minmax(100px, 1fr);
}

{# ---- Mobile Breakpoint ---- #}    
@media (max-width: 765px) {  
	.multistep-forms__step--columns .multistep-forms__checkbox {
		display: flex;
	}
}

.multistep-forms__progress-bar-steps .multistep-forms__progress-step--checked {
	background: #FD565B;
	border: 2px solid #FD565B;
	color: #fff;
	transition: ease-out .5s;
}

/** Overriding Checkboxes and Radio Buttons **/
.multistep-forms__step input[type="radio"],
.multistep-forms__step input[type="checkbox"] {
	display: none
}

.multistep-forms__checkbox--label {
	position: relative;
	padding-left: 35px;
}

/** Overriding Checkboxes and Radio Buttons **/
input[type="checkbox"]+.multistep-forms__checkbox--label::before,
input[type="radio"]+.multistep-forms__checkbox--label::before {
	position: absolute;
	display: block;
	content: "";
	top: 4px;
	left: 0;
	border: 1px solid #484770;
	border-radius: 4px;
	transition: all ease .3s;
	width: 20px;
	height: 20px;
	background: #fff;
}
-[.]
input[type="radio"]+.multistep-forms__checkbox--label::before { 
	border-radius: 50%;
}

input[type="checkbox"]:checked+.multistep-forms__checkbox--label::before {
	position: absolute;
	display: flex;
	content: "\f00c";
	font-family: fontawesome;
	color: #FFF;
	top: 4px;
	border: 1px solid #484770;
	transition: all ease .3s;
	background-color: #F2545B;
	font-size: 15px;
	align-items: center;
	justify-content: center;
}

input[type="radio"]:checked+.multistep-forms__checkbox--label::before {
	color: #fff;
	background: #F2545B;
	content: "\f111";
	font-size: 10px;
	display: flex;
	font-family: fontawesome;
	align-items: center;
	justify-content: center;
}