/* Main form wrapper */
.fs-form-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	color: #fff;
}

.overview .fs-form-wrap {
	height: auto;
}

/* Title */
.fs-title {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 40px;
	width: 100%;
}

.fs-title h1 {
	margin: 0;
}

/* Form */
.fs-form {
	position: relative;
	text-align: left;
	font-size: 2.5em;
}

.no-js .fs-form {
	padding: 0 0 6em 0;
}

/* Views (fullscreen and overview)*/
.fs-form-full {
	margin: 0 auto;
	width: 100%;
	height: 100%;
}

.fs-form-full,
.fs-message-error {
	max-width: 1200px;
}

.fs-form-overview {
	padding: 2.5em 20px 6em;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    height: 100%;
    background: #000;
    color: #fff;
    font-size: 1.2em;
}

.fs-form-overview .fs-fields::before {
	display: block;
	margin-bottom: 2.5em;
	color: #fff;
	content: 'Review & Submit';
	
	font-size: 1.85em;
}

/* Switch view animation (we hide the current view, switch the view class and show it again) */
.fs-form.fs-show {
	-webkit-animation: animFadeIn 0.5s;
	animation: animFadeIn 0.5s;
}

@-webkit-keyframes animFadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes animFadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

.fs-form.fs-show .fs-fields {
	-webkit-animation: animMove 0.5s;
	animation: animMove 0.5s;
}

@-webkit-keyframes animMove {
	from { top: 100px; }
}

@keyframes animMove {
	from { top: 100px; }
} /* we need to use top here because otherwise all our fixed elements will become absolute */

/* Visibility control of elements */
.fs-form-full .fs-fields > li,
.fs-nav-dots, 
.fs-progress,
.fs-numbers,
button.fs-continue,
.fs-message-error,
.fs-message-final {
	visibility: hidden;
}

.no-js .fs-form-full .fs-fields > li {
	visibility: visible;
}

.fs-show {
	visibility: visible !important;
}

/* Some general styles */
.fs-form-wrap button {
	border: none;
	background: none;
}

.fs-form-wrap button[disabled] {
	opacity: 0.3;
	pointer-events: none;
}

.fs-form-wrap input:focus,
.fs-form-wrap button:focus {
	outline: none;
}

/* Hide the submit button */
.fs-form .fs-submit {
	display: none;
}

/* Fields */
.fs-fields {
	position: relative;
	margin: 0 auto;
	padding: 0;
	top: 0;
	list-style: none;
	height: 100%;
}

.fs-form-overview ol {
	max-width: 100%;
}

.fs-fields > li {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0;
	border: none;
}

.fs-fields > li:hover {
	z-index: 999;
}

.js .fs-form-full .fs-fields > li {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -sand-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	width: 100%;
}

.fs-form-overview .fs-fields > li,
.no-js .fs-form .fs-fields > li {
	margin: 1em 0 2em;
	padding: 0 0 2em 0;
	border-bottom: 2px solid rgba(0,0,0,0.1);
}

/* Labels & info */
.fs-fields > li label {
	position: relative;
}

.fs-fields > li label.fs-field-label {
	display: inline-block;
	padding: 0 5px 1em 0;
	pointer-events: none;
}

.fs-form-overview label.fs-field-label {
	color: rgba(255,255,255,.5);
}

.fs-form-full .fs-fields > li label[data-info]::after {
	position: relative;
	display: inline-block;
	margin-left: 10px;
	width: 24px;
	height: 24px;
	border: 2px solid rgba(255,255,255,0.4);
	color: rgba(255,255,255,0.4);
	border-radius: 50%;
	content: 'i';
	vertical-align: top;
	text-align: center;
	
	font-style: italic;
	font-size: 14px;
	font-family: 'Georgia', serif;
	line-height: 20px;
	cursor: pointer;
	pointer-events: auto;
}

.fs-form-full .fs-fields > li label[data-info]::before {
    position: absolute;
    bottom: 100%;
   	left: 0;
    padding: 0 0 10px;
    min-width: 200px;
	content: attr(data-info);
	font-size: 14px;
	color: #fff;
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    -webkit-transform: translate3d(0,-5px,0);
    transform: translate3d(0,-5px,0);
    pointer-events: none;
}

.fs-form-full .fs-fields > li label[data-info]:hover::before {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.fs-form-full .fs-fields > li label:hover ~ .fs-info,
.fs-form-full .fs-fields > li .fs-info:hover {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	pointer-events: auto;
}

/* Inputs */
.fs-fields input {
	display: block;
	margin: 0;
	padding: 0 0 15px;
	width: 100%;
	border: none;
	border-bottom: 2px solid rgba(255,255,255,0.2);
	background-color: transparent;
	color: #fff;
	text-overflow: ellipsis;
	font-weight: bold;
	font-size: 1.5em;
	border-radius: 0;
}

::placeholder {
	color: rgba(255,255,255,.1) !important;
}

.fs-fields input:invalid {
	box-shadow: none; /* removes red shadow in FF*/
}

.fs-form-overview .fs-fields input {
	color: #fff;
}

.fs-fields [required] {
	background-image: url(../img/abacusstar.svg);
	background-position: top right;
	background-size: 18px;
	background-repeat: no-repeat;
}

.fs-fields input:focus {
	background-color: #000; /* Fixes chrome bug with placeholder */
    border-bottom: 2px solid #FF4D6F;
}

.fs-form-overview .fs-fields input {
	font-size: 30px;
}

.fs-form-overview .checkbox_currency input {
	font-size: 50px;
}

.fs-fields .fs-radio-custom input[type="radio"] {
	position: absolute;
	display: block;
	margin: 30px auto 20px;
	margin: 0 auto 20px;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.fs-fields > li .fs-radio-custom span {
	float: left;
    position: relative;
    margin-right: 20px;
    /* max-width: 200px; */
    width: 30%;
    text-align: center;
    font-size: 18px;
    font-family: "Gilroy-Bold", Arial, sans-serif;
    margin-bottom: 20px;
}

.fs-fields > li .fs-radio-custom span label {
	color: rgba(255,255,255,0.4);
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

.fs-fields > li .fs-radio-custom label {
	display: block;
	width: 100%;
	height: 100%;
	cursor: pointer;
	padding: 30px 10px;
    border: solid 1px rgba(255,255,255,.2);
}

.fs-fields .fs-radio-custom label::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	background-position: 50% 0%;
	background-size: 85%;
	background-repeat: no-repeat;
	content: '';
	opacity: 0.5;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.fs-fields .fs-radio-custom label.radio-mobile::after {
	background-image: url(../img/mobile.svg);
}

.fs-fields .fs-radio-custom label.radio-social::after {
	background-image: url(../img/social.svg);
}

.fs-fields .fs-radio-custom label.radio-conversion::after {
	background-image: url(../img/conversion.svg);
}

.fs-fields .fs-radio-custom label:hover::after,
.fs-fields input[type="radio"]:focus + label::after,
.fs-fields input[type="radio"]:checked + label::after {
	opacity: 1;
}

.fs-fields .fs-radio-custom input[type="radio"]:checked + label {
	color: #fff;
    border: solid 1px rgba(255,255,255,1);
}

.fs-form-overview .fs-fields .fs-radio-custom input[type="radio"]:checked + label {
	color: rgba(255,255,255,1);
}

.fs-fields textarea {
	padding: 20px;
	width: 100%;
	height: 300px;
	border: 1px solid rgba(255,255,255,0.2);
	background-color: transparent;
	color: #fff;
	
	font-size: 20px;
	resize: none;
}

.fs-form-overview .fs-fields textarea {
	height: 200px;
}

.fs-fields textarea:focus {
	outline: none;
}

.fs-form div.cs-select.cs-skin-boxes {
	display: block;
}

.fs-form-overview .cs-skin-boxes > span {
	border-radius: 5px;
	width: 90px;
	height: 70px;
	font-size: 0.8em;
}

.fs-form-overview .cs-skin-boxes > span::before {
	padding-top: 50px;
	box-shadow: 0 20px 0 #292c30, inset 0 -5px #292c30;
}

/* placeholder */
.fs-fields input::-webkit-input-placeholder,
.fs-fields textarea::-webkit-input-placeholder {
	color: rgba(0,0,0,0.1);
}

.fs-fields input:-moz-placeholder,
.fs-fields textarea:-moz-placeholder {
	color: rgba(0,0,0,0.1);
}

.fs-fields input::-moz-placeholder,
.fs-fields textarea::-moz-placeholder {
	color: rgba(0,0,0,0.1);
}

.fs-fields input:-ms-input-placeholder,
.fs-fields textarea:-ms-input-placeholder {
	color: rgba(0,0,0,0.1);
}

/* Hide placeholder when focused in Webkit browsers */
.fs-fields input:focus::-webkit-input-placeholder {
	color: transparent;
}

/* Dot navigation */
.fs-nav-dots {
	position: absolute;
	top: 50%;
	right: 60px;
	left: auto;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.fs-nav-dots button {
	position: relative;
	display: block;
	padding: 0;
	margin: 16px 0;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: transparent;
	-webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.fs-nav-dots button::before,
.fs-nav-dots button::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: rgba(255,255,255,0.5);
	content: '';
	text-indent: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.fs-nav-dots button::after {
	background-color: rgba(255,255,255,0.4);
	-webkit-transform: perspective(1000px) rotate3d(0,1,0,180deg);
	transform: perspective(1000px) rotate3d(0,1,0,180deg);
}

.fs-nav-dots button.fs-dot-current {
	-webkit-transform: perspective(1000px) rotate3d(0,1,0,180deg);
	transform: perspective(1000px) rotate3d(0,1,0,180deg);
}

.fs-nav-dots button:hover::before,
.fs-nav-dots button.fs-dot-current::before {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ff7a69+0,ff4470+100 */
	background: #ff7a69; /* Old browsers */
	background: -moz-linear-gradient(-45deg,  #ff7a69 0%, #ff4470 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg,  #ff7a69 0%,#ff4470 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg,  #ff7a69 0%,#ff4470 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7a69', endColorstr='#ff4470',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

}

/* Progress bar */
.fs-progress {
	position: absolute;
	top: 0;
	width: 0%;
	height: 0.5em;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ff7a69+0,ff4470+100 */
	background: #ff7a69; /* Old browsers */
	background: -moz-linear-gradient(-45deg,  #ff7a69 0%, #ff4470 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg,  #ff7a69 0%,#ff4470 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg,  #ff7a69 0%,#ff4470 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7a69', endColorstr='#ff4470',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	-webkit-transition: width 0.3s ease-in-out;
	transition: width 0.3s ease-in-out;
}

/* Number indicator */
.fs-numbers {
	position: absolute;
	top: 0;
	right: 0;
	overflow: hidden;
	color: rgba(255,255,255,.2);
	margin: 40px;
	width: 2em;
	
	font-size: 2em;
	font-family: "Gilroy-Bold", Arial, sans-serif;
	cursor: default;
}

.fs-numbers:after {
	position: absolute;
	width: 100%;
	text-align: center;
	content: '|';
	font-family: 'Gilroy-Medium', arial, sans-serif;
	left: 0;
	color: #888;
}

.fs-numbers span {
	float: right;
	width: 40%;
	text-align: center;
}

.fs-numbers .fs-number-current {
	float: left;
	color: #FF4D6F;
}

.fs-numbers .fs-number-new {
	position: absolute;
	left: 0;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}

/* Animations for numbers */
/* Show next number */
.fs-numbers.fs-show-next .fs-number-new {
	-webkit-animation: animMoveUpFromDown 0.4s both;
	animation: animMoveUpFromDown 0.4s both;
}

@-webkit-keyframes animMoveUpFromDown {
	from { -webkit-transform: translateY(100%); }
	to { -webkit-transform: translateY(0); }
}

@keyframes animMoveUpFromDown {
	from { -webkit-transform: translateY(100%); transform: translateY(100%); }
	to { -webkit-transform: translateY(0); transform: translateY(0); }
}

.fs-numbers.fs-show-next .fs-number-current {
	-webkit-animation: animMoveUp 0.4s both;
	animation: animMoveUp 0.4s both;
}

@-webkit-keyframes animMoveUp {
	to { -webkit-transform: translateY(-100%); }
}

@keyframes animMoveUp {
	to { -webkit-transform: translateY(-100%); transform: translateY(-100%); }
}

/* Show previous number */
.fs-numbers.fs-show-prev .fs-number-new {
	-webkit-animation: animMoveDownFromUp 0.4s both;
	animation: animMoveDownFromUp 0.4s both;
}

@-webkit-keyframes animMoveDownFromUp {
	from { -webkit-transform: translateY(-100%); }
	to { -webkit-transform: translateY(0); }
}

@keyframes animMoveDownFromUp {
	from { -webkit-transform: translateY(-100%); transform: translateY(-100%); }
	to { -webkit-transform: translateY(0); transform: translateY(0); }
}

.fs-numbers.fs-show-prev .fs-number-current {
	-webkit-animation: animMoveDown 0.4s both;
	animation: animMoveDown 0.4s both;
}

@-webkit-keyframes animMoveDown {
	to { -webkit-transform: translateY(100%); }
}

@keyframes animMoveDown {
	to { -webkit-transform: translateY(100%); transform: translateY(100%); }
}

/* Continue button and submit button */
button.fs-submit,
button.fs-continue {
	padding: 15px 30px;
	border: 2px solid #FF4D6F;
	border-radius: 40px;
	
	color: #FF4D6F;
	transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	-ms-transition: .3s;
}

.fs-form-overview .fs-submit,
.no-js .fs-form .fs-submit  {
	display: block;
	float: right;
}

button.fs-submit,
button.fs-continue {
	position: absolute;
    left: 50%;
    bottom: 100px;
    transform: translate(-50%, -0%);
    -moz-transform: translate(-50%, -0%);
    -webkit-transform: translate(-50%, -0%);
    -sand-transform: translate(-50%, -0%);
    -ms-transform: translate(-50%, -0%);
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.fs-continue::after {
	position: absolute;
	bottom: -50px;
	left: 0;
	width: 100%;
	line-height: 3;
	text-align: center;
	background: transparent;
	color: rgba(255,255,255,0.3);
	content: 'or press ENTER';
	font-size: 12px;
	font-family: 'Gilroy-Medium', arial, sans-serif;
	pointer-events: none;
}

/* Error message */
.fs-message-error {
	position: absolute;
	bottom: 75%;
	left: 50%;
	z-index: 800;
	max-width: 1200px;
	width: 100%;
	color: #FF4D6F;
	font-size: 1em;
	opacity: 0;
	-webkit-transform: translate3d(-50%,-5px,0);
	transform: translate3d(-50%,-5px,0);
}

.fs-message-error.fs-show {
	opacity: 1;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transform: translate3d(-50%,0,0);
	transform: translate3d(-50%,0,0);
}

/* Animation classes & animations */
.fs-form li.fs-current {
	visibility: visible;
}

.fs-form li.fs-hide,
.fs-form li.fs-show {
	pointer-events: none;
}

/* Hide current li when navigating to next question */
.fs-form .fs-display-next .fs-hide {
	visibility: visible;
}

.fs-form .fs-display-next .fs-hide .fs-anim-lower,
.fs-form .fs-display-next .fs-hide .fs-anim-upper {
	-webkit-animation: animHideNext 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
	animation: animHideNext 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
}

.fs-form .fs-display-next .fs-hide .fs-anim-lower {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

@-webkit-keyframes animHideNext {
	to { opacity: 0; -webkit-transform: translate3d(0,-500px,0); }
}

@keyframes animHideNext {
	to { opacity: 0; -webkit-transform: translate3d(0,-500px,0); transform: translate3d(0,-500px,0); }
}

/* Show new li when navigating to next question */
.fs-form .fs-display-next .fs-show .fs-anim-lower,
.fs-form .fs-display-next .fs-show .fs-anim-upper {
	-webkit-animation: animShowNext 0.5s cubic-bezier(0.7,0,0.3,1) both 0.15s;
	animation: animShowNext 0.5s cubic-bezier(0.7,0,0.3,1) both 0.15s;
}

.fs-form .fs-display-next .fs-show .fs-anim-lower {
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
}

@-webkit-keyframes animShowNext {
	from { opacity: 0; -webkit-transform: translate3d(0,500px,0); }
}

@keyframes animShowNext {
	from { opacity: 0; -webkit-transform: translate3d(0,500px,0); transform: translate3d(0,500px,0); }
}

/* Hide current li when navigating to previous question */
.fs-form .fs-display-prev .fs-hide {
	visibility: visible;
}

.fs-form .fs-display-prev .fs-hide .fs-anim-lower,
.fs-form .fs-display-prev .fs-hide .fs-anim-upper {
	-webkit-animation: animHidePrev 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
	animation: animHidePrev 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
}

.fs-form .fs-display-prev .fs-hide .fs-anim-upper {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

@-webkit-keyframes animHidePrev {
	to { opacity: 0; -webkit-transform: translate3d(0,500px,0); }
}

@keyframes animHidePrev {
	to { opacity: 0; -webkit-transform: translate3d(0,500px,0); transform: translate3d(0,500px,0); }
}

/* Show new li when navigating to previous question */
.fs-form .fs-display-prev .fs-show .fs-anim-lower,
.fs-form .fs-display-prev .fs-show .fs-anim-upper {
	-webkit-animation: animShowPrev 0.5s cubic-bezier(0.7,0,0.3,1) both 0.15s;
	animation: animShowPrev 0.5s cubic-bezier(0.7,0,0.3,1) both 0.15s;
}

.fs-form .fs-display-prev .fs-show .fs-anim-upper {
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
}

@-webkit-keyframes animShowPrev {
	from { opacity: 0; -webkit-transform: translate3d(0,-500px,0); }
}

@keyframes animShowPrev {
	from { opacity: 0; -webkit-transform: translate3d(0,-500px,0); transform: translate3d(0,-500px,0); }
}

/* Remove IE clear cross */
input[type=text]::-ms-clear {
    display: none;
}

@media screen and (min-width: 769px) {
	button.fs-submit:hover,
	button.fs-submit:focus,
	button.fs-continue:hover {
		background: #FF4D6F;
		color: #fff;
	}
}


@media screen and (max-width: 1024px) {
	.fs-form-full, .fs-message-error {
		padding: 0 80px 0 20px;
	}

	.fs-nav-dots {
	    right: 30px;
	}
}

/* Adjust form for smaller screens */
@media screen and (max-width: 52.5em) {
	body {
		min-height: 500px;
	}

	.fs-form-wrap {
		font-size: 70%;
	}

	.fs-form {
		left: 0;
		padding: 0 20px;
		width: auto;
		font-size: 2em;
	}

	.fs-form.fs-form-overview {
		top: 0;
		right: 0;
		padding: 40px 20px;
		font-size: 1.5em;
	}

	.fs-form-overview .fs-fields > li {
	    margin: 60px 0 0;
	}

	.fs-title {
		padding: 20px;
	}

	.fs-numbers {
		margin: 20px;
	}

	.fs-nav-dots {
		right: 20px;
	}

	button.fs-submit {
		width: 100%;
		font-size: 1.25em;
	}

	.fs-message-error {
		left: 0;
		top: 20px;
		padding: 0 80px 0 20px;
		width: 100%;
		font-size: 1.5em;
		-webkit-transform: translate3d(0,-5px,0);
		transform: translate3d(0,-5px,0);
	}

	.fs-message-error.fs-show {
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}

	/* CONTINUE BUTTON */

	button.fs-continue {
		bottom: 70px;
		font-size: 12px;
	}

	.fs-continue::after {
		display: none;
	}

	.fs-form-overview .fs-submit {
		font-size: 14px;
	    text-transform: uppercase;
	    letter-spacing: 2px;
	    width: auto;
        margin: 20px auto 0;
        float: initial;

        position: relative;
	    bottom: auto;
	    left: auto;
	    transform: translate(0%, -0%);
	    -moz-transform: translate(0%, -0%);
	    -webkit-transform: translate(0%, -0%);
	    -sand-transform: translate(0%, -0%);
	    -ms-transform: translate(0%, -0%);
	}

	/* DOTS */
	.fs-nav-dots {
	    right: inherit;
	    display: flex;
	    position: absolute;
	    left: 50%;
	    bottom: 20px;
	    top: inherit;
	    transform: translate(-50%, -50%);
	    -moz-transform: translate(-50%, -50%);
	    -webkit-transform: translate(-50%, 0%);
	    -sand-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	}

	.fs-nav-dots button {
	    margin: 0 5px;
	}

}

@media screen and (max-width: 480px) {
	.slide_intro span.fs-anim-upper {
	    font-size: 34px;
	}

	.fs-fields input {
	    font-size: 24px;
	}

	/* PROJECT TYPE */

	.checkbox_projects,
	.checkbox_assets,
	.checkbox_currency {
	    display: flex;
	    flex-wrap: wrap;
	}

	.fs-fields > li .checkbox_projects span,
	.fs-fields > li .checkbox_assets span,
	.fs-fields > li .checkbox_currency span,
	.fs-fields > li .fs-radio-custom span {
	    max-width: initial;
	    flex: 0 0 31%;
	    margin: 0 1% 8px;
	}

	.fs-fields > li .fs-check-custom span label,
	.fs-fields > li .fs-radio-custom span label {
		font-size: 14px;
	    align-items: center;
	    display: flex;
	    justify-content: center;
	}

	.fs-fields > li .checkbox_assets span label,
	.fs-fields > li .fs-radio-custom span label {
		padding: 10px;
		height: 100px;
	}

}

/* Success message styling */
.fs-success {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 100vh;
	color: #fff;
	padding: 40px;
}

.fs-success h2 {
	font-size: 3em;
	margin-bottom: 20px;
	color: #ff6b9d;
}

.fs-success p {
	font-size: 1.5em;
	max-width: 600px;
	line-height: 1.4;
}