html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}body{line-height:1;}ol,ul{list-style:none;}blockquote,q{quotes:none;}blockquote::before,blockquote::after,q::before,q::after{content:'';content:none;}table{border-collapse:collapse;border-spacing:0;}body{-webkit-text-size-adjust:none}mark{background-color:transparent;color:inherit}input::-moz-focus-inner{border:0;padding:0}input[type="text"],input[type="email"],select,textarea{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none}

*, *::before, *::after {
	box-sizing: border-box;
}

@keyframes loading-spinner {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.deferred::before {
	content: '';
	display: block;
	width: 4rem;
	height: 4rem;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -2rem 0 0 -2rem;
	animation: loading-spinner 1s infinite linear;
	transition: opacity 0.25s ease;
	transition-delay: 0.5s;
	opacity: 0;
	z-index: -1;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNmZmY7IHN0cm9rZS13aWR0aDogMS41cHg7IH08L3N0eWxlPjxkZWZzPjxjbGlwUGF0aCBpZD0iY29ybmVyIj48cG9seWdvbiBwb2ludHM9IjAsMCA0OCwwIDQ4LDQ4IDk2LDQ4IDk2LDk2IDAsOTYiIC8+PC9jbGlwUGF0aD48L2RlZnM+PGcgY2xpcC1wYXRoPSJ1cmwoI2Nvcm5lcikiPjxjaXJjbGUgY3g9IjQ4IiBjeT0iNDgiIHI9IjMyIi8+PC9nPjwvc3ZnPg==');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 3rem;
}

.deferred.loading::before {
	opacity: 0.35;
	z-index: 0;
}

body {
	line-height: 1.0;
	min-height: var(--viewport-height);
	min-width: 320px;
	overflow-x: hidden;
	word-wrap: break-word;
	background-color: #FFFFFF;
}

body::before {
	content: '';
	display: block;
	background-attachment: scroll;
	height: var(--background-height);
	left: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	transform: scale(1);
	width: 100vw;
	z-index: 0;
	background-image: linear-gradient(to top, rgba(0,0,0,0.349), rgba(0,0,0,0.349)), url('images/bg.jpg');
	background-position: 0% 0%, center;
	background-repeat: repeat, no-repeat;
	background-size: auto, cover;
}

:root {
	--background-height: 100vh;
	--site-language-alignment: left;
	--site-language-direction: ltr;
	--site-language-flex-alignment: flex-start;
	--site-language-indent-left: 1;
	--site-language-indent-right: 0;
	--site-language-margin-left: 0;
	--site-language-margin-right: auto;
	--viewport-height: 100vh;
}

html {
	font-size: 18pt;
}

u {
	text-decoration: underline;
}

strong {
	color: inherit;
	font-weight: bolder;
}

em {
	font-style: italic;
}

code {
	background-color: rgba(144,144,144,0.25);
	border-radius: 0.25em;
	font-family: 'Lucida Console', 'Courier New', monospace;
	font-size: 0.9em;
	font-weight: normal;
	letter-spacing: 0;
	margin: 0 0.25em;
	padding: 0.25em 0.5em;
	text-indent: 0;
}

mark {
	background-color: rgba(144,144,144,0.25);
}

spoiler-text {
	-webkit-text-stroke: 0;
	background-color: rgba(32,32,32,0.75);
	text-shadow: none;
	text-stroke: 0;
	color: transparent;
	cursor: pointer;
	transition: color 0.1s ease-in-out;
}

spoiler-text.active {
	color: #FFFFFF;
	cursor: text;
}

s {
	text-decoration: line-through;
}

sub {
	font-size: smaller;
	vertical-align: sub;
}

sup {
	font-size: smaller;
	vertical-align: super;
}

a {
	color: inherit;
	text-decoration: underline;
	transition: color 0.25s ease;
}

a[onclick]:not([href]) {
	cursor: pointer;
}

unloaded-script {
	display: none;
}

.site-wrapper {
	-webkit-overflow-scrolling: touch;
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: var(--viewport-height);
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.site-main {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	--border-radius-tl: 0;
	--border-radius-tr: 0;
	--border-radius-br: 0;
	--border-radius-bl: 0;
	align-items: center;
	display: flex;
	flex-grow: 0;
	flex-shrink: 0;
	justify-content: center;
	max-width: 100%;
	position: relative;
	text-align: var(--alignment);
	z-index: 1;
}

.site-main > .inner {
	--padding-horizontal: 8rem;
	--padding-vertical: 2.875rem;
	--spacing: 0.75rem;
	--width: 78rem;
	border-radius: var(--border-radius-tl) var(--border-radius-tr) var(--border-radius-br) var(--border-radius-bl);
	max-width: 100%;
	position: relative;
	width: var(--width);
	z-index: 1;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.site-main > .inner > header {
	margin-bottom: var(--spacing);
}

.site-main > .inner > footer {
	margin-top: var(--spacing);
}

.site-main > .inner > * > * {
	margin-top: var(--spacing);
	margin-bottom: var(--spacing);
}

.site-main > .inner > * > :first-child {
	margin-top: 0 !important;
}

.site-main > .inner > * > :last-child {
	margin-bottom: 0 !important;
}

.site-main > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
	width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
}

.site-main > .inner > .full:first-child {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.site-main > .inner > .full:last-child {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.site-main > .inner > .full.screen {
	border-radius: 0 !important;
	max-width: 100vw;
	position: relative;
	width: 100vw;
	left: 50%;
	margin-left: -50vw;
	right: auto;
}

.site-main > .inner > * > .full {
	margin-left: calc(-8rem);
	max-width: calc(100% + 16rem + 0.4725px);
	width: calc(100% + 16rem + 0.4725px);
}

.site-main > .inner > * > .full.screen {
	border-radius: 0 !important;
	max-width: 100vw;
	position: relative;
	width: 100vw;
	left: 50%;
	margin-left: -50vw;
	right: auto;
}

.site-main > .inner > .active > .full:first-child {
	margin-top: -2.875rem !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.site-main > .inner > .active {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.site-main > .inner > .active > .full:last-child {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
	margin-bottom: -2.875rem !important;
}

body.is-instant .site-main, body.is-instant .site-main > .inner > *,body.is-instant .site-main > .inner > section > *  {
	transition: none !important;
}

body.is-instant::after {
	display: none !important;
	transition: none !important;
}

.image-component {
	display: block;
	line-height: 0;
	max-width: 100%;
	position: relative;
}

.image-component > .frame {
	-webkit-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	vertical-align: top;
	width: 100%;
}

.image-component > .frame > img {
	border-radius: 0 !important;
	max-width: 100%;
	vertical-align: top;
	width: inherit;
}

.image-component.full > .frame {
	display: block;
}

.image-component.full:first-child > .frame {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.image-component.full:last-child > .frame {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.image-component.instance-8:not(:first-child) {
	margin-top: 0rem !important;
}

.image-component.instance-8:not(:last-child) {
	margin-bottom: 0rem !important;
}

.image-component.instance-8 > .frame {
	width: 10rem;
	border-radius: 0.25rem;
	transition: none;
}

.image-component.instance-8 > .frame > img {
	transition: none;
}

.image-component.instance-25:not(:first-child) {
	margin-top: 0.25rem !important;
}

.image-component.instance-25:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.image-component.instance-25 > .frame {
	width: 11.25rem;
	border-radius: 0.25rem;
	transition: none;
}

.image-component.instance-25 > .frame > img {
	transition: none;
}

.image-component.instance-15:not(:first-child) {
	margin-top: 0.5rem !important;
}

.image-component.instance-15:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.image-component.instance-15 > .frame {
	width: 11rem;
	border-radius: 0.25rem;
	transition: none;
}

.image-component.instance-15 > .frame > img {
	transition: none;
}

.image-component.instance-6:not(:first-child) {
	margin-top: 1rem !important;
}

.image-component.instance-6:not(:last-child) {
	margin-bottom: 1rem !important;
}

.image-component.instance-6 > .frame {
	width: 11.625rem;
	border-radius: 0.5rem;
	transition: none;
}

.image-component.instance-6 > .frame > img {
	transition: none;
}

.image-component.instance-7:not(:first-child) {
	margin-top: 1rem !important;
}

.image-component.instance-7:not(:last-child) {
	margin-bottom: 1rem !important;
}

.image-component.instance-7 > .frame {
	width: 11.625rem;
	border-radius: 0.5rem;
	transition: none;
}

.image-component.instance-7 > .frame > img {
	transition: none;
}

.image-component.instance-12:not(:first-child) {
	margin-top: 1rem !important;
}

.image-component.instance-12:not(:last-child) {
	margin-bottom: 1rem !important;
}

.image-component.instance-12 > .frame {
	width: 21.875rem;
	border-radius: 0.5rem;
	transition: none;
}

.image-component.instance-12 > .frame > img {
	transition: none;
}

.image-component.instance-16:not(:first-child) {
	margin-top: 1rem !important;
}

.image-component.instance-16:not(:last-child) {
	margin-bottom: 1rem !important;
}

.image-component.instance-16 > .frame {
	width: 21.875rem;
	border-radius: 0.5rem;
	transition: none;
}

.image-component.instance-16 > .frame > img {
	transition: none;
}

.image-component.instance-17:not(:first-child) {
	margin-top: 1rem !important;
}

.image-component.instance-17:not(:last-child) {
	margin-bottom: 1rem !important;
}

.image-component.instance-17 > .frame {
	width: 21.875rem;
	border-radius: 0.5rem;
	transition: none;
}

.image-component.instance-17 > .frame > img {
	transition: none;
}

.image-component.instance-19:not(:first-child) {
	margin-top: 0.5rem !important;
}

.image-component.instance-19:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.image-component.instance-19 > .frame {
	width: 9rem;
	border-radius: 0.25rem;
	transition: none;
}

.image-component.instance-19 > .frame > img {
	transition: none;
}

.image-component.instance-18:not(:first-child) {
	margin-top: 0.5rem !important;
}

.image-component.instance-18:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.image-component.instance-18 > .frame {
	width: 9rem;
	border-radius: 0.25rem;
	transition: none;
}

.image-component.instance-18 > .frame > img {
	transition: none;
}

.image-component.instance-22:not(:first-child) {
	margin-top: 1rem !important;
}

.image-component.instance-22:not(:last-child) {
	margin-bottom: 1rem !important;
}

.image-component.instance-22 > .frame {
	width: 21.875rem;
	border-radius: 0.5rem;
	transition: none;
}

.image-component.instance-22 > .frame > img {
	transition: none;
}

.image-component.instance-23:not(:first-child) {
	margin-top: 1rem !important;
}

.image-component.instance-23:not(:last-child) {
	margin-bottom: 1rem !important;
}

.image-component.instance-23 > .frame {
	width: 21.875rem;
	border-radius: 0.5rem;
	transition: none;
}

.image-component.instance-23 > .frame > img {
	transition: none;
}

.image-component.instance-24:not(:first-child) {
	margin-top: 1rem !important;
}

.image-component.instance-24:not(:last-child) {
	margin-bottom: 1rem !important;
}

.image-component.instance-24 > .frame {
	width: 21.875rem;
	border-radius: 0.5rem;
	transition: none;
}

.image-component.instance-24 > .frame > img {
	transition: none;
}

.image-component.instance-2:not(:first-child) {
	margin-top: 1rem !important;
}

.image-component.instance-2:not(:last-child) {
	margin-bottom: 1rem !important;
}

.image-component.instance-2 > .frame {
	width: 21.875rem;
	border-radius: 0.5rem;
	transition: none;
}

.image-component.instance-2 > .frame > img {
	transition: none;
}

.image-component.instance-4:not(:first-child) {
	margin-top: 1rem !important;
}

.image-component.instance-4:not(:last-child) {
	margin-bottom: 1rem !important;
}

.image-component.instance-4 > .frame {
	width: 21.875rem;
	border-radius: 0.5rem;
	transition: none;
}

.image-component.instance-4 > .frame > img {
	transition: none;
}

.image-component.instance-9:not(:first-child) {
	margin-top: 1rem !important;
}

.image-component.instance-9:not(:last-child) {
	margin-bottom: 1rem !important;
}

.image-component.instance-9 > .frame {
	width: 21.875rem;
	border-radius: 0.5rem;
	transition: none;
}

.image-component.instance-9 > .frame > img {
	transition: none;
}

.image-component.instance-1:not(:first-child) {
	margin-top: 1rem !important;
}

.image-component.instance-1:not(:last-child) {
	margin-bottom: 1rem !important;
}

.image-component.instance-1 > .frame {
	width: 21.875rem;
	border-radius: 0.5rem;
	transition: none;
}

.image-component.instance-1 > .frame > img {
	transition: none;
}

.image-component.instance-3:not(:first-child) {
	margin-top: 0.5rem !important;
}

.image-component.instance-3:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.image-component.instance-3 > .frame {
	width: 11rem;
	border-radius: 0.25rem;
	transition: none;
}

.image-component.instance-3 > .frame > img {
	transition: none;
}

.image-component.instance-10:not(:first-child) {
	margin-top: 0.5rem !important;
}

.image-component.instance-10:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.image-component.instance-10 > .frame {
	width: 11rem;
	border-radius: 0.25rem;
	transition: none;
}

.image-component.instance-10 > .frame > img {
	transition: none;
}

.image-component.instance-20:not(:first-child) {
	margin-top: 0.5rem !important;
}

.image-component.instance-20:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.image-component.instance-20 > .frame {
	width: 11rem;
	border-radius: 0.25rem;
	transition: none;
}

.image-component.instance-20 > .frame > img {
	transition: none;
}

.image-component.instance-21:not(:first-child) {
	margin-top: 0.5rem !important;
}

.image-component.instance-21:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.image-component.instance-21 > .frame {
	width: 11rem;
	border-radius: 0.25rem;
	transition: none;
}

.image-component.instance-21 > .frame > img {
	transition: none;
}

.image-component.instance-11:not(:first-child) {
	margin-top: 0.5rem !important;
}

.image-component.instance-11:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.image-component.instance-11 > .frame {
	width: 11rem;
	border-radius: 0.25rem;
	transition: none;
}

.image-component.instance-11 > .frame > img {
	transition: none;
}

.image-component.instance-5:not(:first-child) {
	margin-top: 1rem !important;
}

.image-component.instance-5:not(:last-child) {
	margin-bottom: 1rem !important;
}

.image-component.instance-5 > .frame {
	width: 21.875rem;
	border-radius: 0.5rem;
	transition: none;
}

.image-component.instance-5 > .frame > img {
	transition: none;
}

.image-component.instance-14:not(:first-child) {
	margin-top: 0.5rem !important;
}

.image-component.instance-14:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.image-component.instance-14 > .frame {
	width: 11rem;
	border-radius: 0.25rem;
	transition: none;
}

.image-component.instance-14 > .frame > img {
	transition: none;
}

.image-component.instance-13:not(:first-child) {
	margin-top: 0.5rem !important;
}

.image-component.instance-13:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.image-component.instance-13 > .frame {
	width: 11rem;
	border-radius: 0.25rem;
	transition: none;
}

.image-component.instance-13 > .frame > img {
	transition: none;
}

.text-component {
	direction: var(--site-language-direction);
	position: relative;
}

.text-component span.p {
	display: block;
	position: relative;
}

.text-component span[style], .text-component strong, .text-component a, .text-component code, .text-component mark, .text-component spoiler-text {
	-webkit-text-fill-color: currentcolor;
}

.text-component.style-6:not(:first-child) {
	margin-top: 0.75rem !important;
}

.text-component.style-6:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

.text-component.style-6 {
	color: #538235;
	font-family: 'Permanent Marker', cursive;
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.style-6 a {
	text-decoration: underline;
}

.text-component.style-6 a:hover {
	text-decoration: none;
}

.text-component.style-6 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-20 {
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-20 a {
	text-decoration: underline;
}

.text-component.instance-20 a:hover {
	text-decoration: none;
}

.text-component.instance-20 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-114 {
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-114 a {
	text-decoration: underline;
}

.text-component.instance-114 a:hover {
	text-decoration: none;
}

.text-component.instance-114 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-6:not(:first-child) {
	margin-top: 1rem !important;
}

.text-component.instance-6:not(:last-child) {
	margin-bottom: 1rem !important;
}

.text-component.instance-6 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-6 a {
	text-decoration: underline;
}

.text-component.instance-6 a:hover {
	text-decoration: none;
}

.text-component.instance-6 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-7:not(:first-child) {
	margin-top: 0.75rem !important;
}

.text-component.instance-7:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

.text-component.instance-7 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1.5em;
	line-height: 1.375;
	font-weight: 400;
}

.text-component.instance-7 a {
	text-decoration: underline;
}

.text-component.instance-7 a:hover {
	text-decoration: none;
}

.text-component.instance-7 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-9 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-9 a {
	text-decoration: underline;
}

.text-component.instance-9 a:hover {
	text-decoration: none;
}

.text-component.instance-9 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-10:not(:first-child) {
	margin-top: 1rem !important;
}

.text-component.instance-10:not(:last-child) {
	margin-bottom: 1rem !important;
}

.text-component.instance-10 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-10 a {
	text-decoration: underline;
}

.text-component.instance-10 a:hover {
	text-decoration: none;
}

.text-component.instance-10 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-40 {
	text-align: center;
	color: #8A8C96;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-40 a {
	text-decoration: underline;
}

.text-component.instance-40 a:hover {
	text-decoration: none;
}

.text-component.instance-40 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-41 {
	text-align: center;
	color: #8A8C96;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-41 a {
	text-decoration: underline;
}

.text-component.instance-41 a:hover {
	text-decoration: none;
}

.text-component.instance-41 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.style-4:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.style-4:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.style-4 {
	text-align: left;
	color: #0C8389;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.style-4 a {
	text-decoration: underline;
}

.text-component.style-4 a:hover {
	text-decoration: none;
}

.text-component.style-4 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.style-1:not(:first-child) {
	margin-top: 0.5rem !important;
}

.text-component.style-1:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.text-component.style-1 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.style-1 a {
	text-decoration: underline;
}

.text-component.style-1 a:hover {
	text-decoration: none;
}

.text-component.style-1 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.style-2:not(:first-child) {
	margin-top: 1rem !important;
}

.text-component.style-2:not(:last-child) {
	margin-bottom: 1rem !important;
}

.text-component.style-2 {
	text-align: left;
	color: #0C8389;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.375em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.style-2 a {
	text-decoration: underline;
}

.text-component.style-2 a:hover {
	text-decoration: none;
}

.text-component.style-2 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.style-3:not(:first-child) {
	margin-top: 0.5rem !important;
}

.text-component.style-3:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.text-component.style-3 {
	text-align: left;
	color: #0C8389;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.style-3 a {
	text-decoration: underline;
}

.text-component.style-3 a:hover {
	text-decoration: none;
}

.text-component.style-3 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-135:not(:first-child) {
	margin-top: 0.375rem !important;
}

.text-component.instance-135:not(:last-child) {
	margin-bottom: 0.375rem !important;
}

.text-component.instance-135 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-135 a {
	text-decoration: underline;
}

.text-component.instance-135 a:hover {
	text-decoration: none;
}

.text-component.instance-135 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-137:not(:first-child) {
	margin-top: 0.375rem !important;
}

.text-component.instance-137:not(:last-child) {
	margin-bottom: 0.375rem !important;
}

.text-component.instance-137 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-137 a {
	text-decoration: underline;
}

.text-component.instance-137 a:hover {
	text-decoration: none;
}

.text-component.instance-137 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-138:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-138:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-138 {
	text-align: center;
	color: #F50A0A;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-138 a {
	text-decoration: underline;
}

.text-component.instance-138 a:hover {
	text-decoration: none;
}

.text-component.instance-138 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-58:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-58:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-58 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-58 a {
	text-decoration: underline;
}

.text-component.instance-58 a:hover {
	text-decoration: none;
}

.text-component.instance-58 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-13:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-13:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-13 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-13 a {
	text-decoration: underline;
}

.text-component.instance-13 a:hover {
	text-decoration: none;
}

.text-component.instance-13 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-11:not(:first-child) {
	margin-top: 0.75rem !important;
}

.text-component.instance-11:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

.text-component.instance-11 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-11 a {
	text-decoration: underline;
}

.text-component.instance-11 a:hover {
	text-decoration: none;
}

.text-component.instance-11 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-166:not(:first-child) {
	margin-top: 0.375rem !important;
}

.text-component.instance-166:not(:last-child) {
	margin-bottom: 0.375rem !important;
}

.text-component.instance-166 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-166 a {
	text-decoration: underline;
}

.text-component.instance-166 a:hover {
	text-decoration: none;
}

.text-component.instance-166 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-68:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-68:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-68 {
	text-align: center;
	color: #F50A0A;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-68 a {
	text-decoration: underline;
}

.text-component.instance-68 a:hover {
	text-decoration: none;
}

.text-component.instance-68 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-78:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-78:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-78 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-78 a {
	text-decoration: underline;
}

.text-component.instance-78 a:hover {
	text-decoration: none;
}

.text-component.instance-78 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-112:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-112:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-112 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-112 a {
	text-decoration: underline;
}

.text-component.instance-112 a:hover {
	text-decoration: none;
}

.text-component.instance-112 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-117:not(:first-child) {
	margin-top: 0rem !important;
}

.text-component.instance-117:not(:last-child) {
	margin-bottom: 0rem !important;
}

.text-component.instance-117 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-117 a {
	text-decoration: underline;
}

.text-component.instance-117 a:hover {
	text-decoration: none;
}

.text-component.instance-117 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-140:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-140:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-140 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-140 a {
	text-decoration: underline;
}

.text-component.instance-140 a:hover {
	text-decoration: none;
}

.text-component.instance-140 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-123:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-123:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-123 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-123 a {
	text-decoration: underline;
}

.text-component.instance-123 a:hover {
	text-decoration: none;
}

.text-component.instance-123 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-127:not(:first-child) {
	margin-top: 0rem !important;
}

.text-component.instance-127:not(:last-child) {
	margin-bottom: 0rem !important;
}

.text-component.instance-127 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-127 a {
	text-decoration: underline;
}

.text-component.instance-127 a:hover {
	text-decoration: none;
}

.text-component.instance-127 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-171:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-171:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-171 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-171 a {
	text-decoration: underline;
}

.text-component.instance-171 a:hover {
	text-decoration: none;
}

.text-component.instance-171 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-175:not(:first-child) {
	margin-top: 0rem !important;
}

.text-component.instance-175:not(:last-child) {
	margin-bottom: 0rem !important;
}

.text-component.instance-175 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-175 a {
	text-decoration: underline;
}

.text-component.instance-175 a:hover {
	text-decoration: none;
}

.text-component.instance-175 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-179:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-179:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-179 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-179 a {
	text-decoration: underline;
}

.text-component.instance-179 a:hover {
	text-decoration: none;
}

.text-component.instance-179 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-183:not(:first-child) {
	margin-top: 0rem !important;
}

.text-component.instance-183:not(:last-child) {
	margin-bottom: 0rem !important;
}

.text-component.instance-183 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-183 a {
	text-decoration: underline;
}

.text-component.instance-183 a:hover {
	text-decoration: none;
}

.text-component.instance-183 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-132:not(:first-child) {
	margin-top: 0.375rem !important;
}

.text-component.instance-132:not(:last-child) {
	margin-bottom: 0.375rem !important;
}

.text-component.instance-132 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-132 a {
	text-decoration: underline;
}

.text-component.instance-132 a:hover {
	text-decoration: none;
}

.text-component.instance-132 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-168:not(:first-child) {
	margin-top: 0.375rem !important;
}

.text-component.instance-168:not(:last-child) {
	margin-bottom: 0.375rem !important;
}

.text-component.instance-168 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-168 a {
	text-decoration: underline;
}

.text-component.instance-168 a:hover {
	text-decoration: none;
}

.text-component.instance-168 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-36:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-36:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-36 {
	text-align: center;
	color: #F50A0A;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-36 a {
	text-decoration: underline;
}

.text-component.instance-36 a:hover {
	text-decoration: none;
}

.text-component.instance-36 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-71:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-71:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-71 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-71 a {
	text-decoration: underline;
}

.text-component.instance-71 a:hover {
	text-decoration: none;
}

.text-component.instance-71 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-60:not(:first-child) {
	margin-top: 0.5rem !important;
}

.text-component.instance-60:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.text-component.instance-60 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-60 a {
	text-decoration: underline;
}

.text-component.instance-60 a:hover {
	text-decoration: none;
}

.text-component.instance-60 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-87:not(:first-child) {
	margin-top: 0.75rem !important;
}

.text-component.instance-87:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

.text-component.instance-87 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-87 a {
	text-decoration: underline;
}

.text-component.instance-87 a:hover {
	text-decoration: none;
}

.text-component.instance-87 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-63:not(:first-child) {
	margin-top: 1.25rem !important;
}

.text-component.instance-63:not(:last-child) {
	margin-bottom: 1.25rem !important;
}

.text-component.instance-63 {
	text-align: center;
	color: #F50A0A;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-63 a {
	text-decoration: underline;
}

.text-component.instance-63 a:hover {
	text-decoration: none;
}

.text-component.instance-63 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-62:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-62:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-62 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-62 a {
	text-decoration: underline;
}

.text-component.instance-62 a:hover {
	text-decoration: none;
}

.text-component.instance-62 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-67:not(:first-child) {
	margin-top: 0.5rem !important;
}

.text-component.instance-67:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.text-component.instance-67 {
	text-align: left;
	color: #0C8389;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.625em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-67 a {
	text-decoration: underline;
}

.text-component.instance-67 a:hover {
	text-decoration: none;
}

.text-component.instance-67 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-165:not(:first-child) {
	margin-top: 0rem !important;
}

.text-component.instance-165:not(:last-child) {
	margin-bottom: 0rem !important;
}

.text-component.instance-165 {
	text-align: left;
	color: #0C8389;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-165 a {
	text-decoration: underline;
}

.text-component.instance-165 a:hover {
	text-decoration: none;
}

.text-component.instance-165 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-37:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-37:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-37 {
	text-align: center;
	color: #F50A0A;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-37 a {
	text-decoration: underline;
}

.text-component.instance-37 a:hover {
	text-decoration: none;
}

.text-component.instance-37 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-93:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-93:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-93 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-93 a {
	text-decoration: underline;
}

.text-component.instance-93 a:hover {
	text-decoration: none;
}

.text-component.instance-93 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-94:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-94:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-94 {
	text-align: center;
	color: #F50A0A;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-94 a {
	text-decoration: underline;
}

.text-component.instance-94 a:hover {
	text-decoration: none;
}

.text-component.instance-94 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-146:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-146:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-146 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-146 a {
	text-decoration: underline;
}

.text-component.instance-146 a:hover {
	text-decoration: none;
}

.text-component.instance-146 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-147:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-147:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-147 {
	text-align: center;
	color: #F50A0A;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-147 a {
	text-decoration: underline;
}

.text-component.instance-147 a:hover {
	text-decoration: none;
}

.text-component.instance-147 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-85:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-85:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-85 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-85 a {
	text-decoration: underline;
}

.text-component.instance-85 a:hover {
	text-decoration: none;
}

.text-component.instance-85 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-86:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-86:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-86 {
	text-align: center;
	color: #F50A0A;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-86 a {
	text-decoration: underline;
}

.text-component.instance-86 a:hover {
	text-decoration: none;
}

.text-component.instance-86 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-49:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-49:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-49 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-49 a {
	text-decoration: underline;
}

.text-component.instance-49 a:hover {
	text-decoration: none;
}

.text-component.instance-49 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-96:not(:first-child) {
	margin-top: 0.75rem !important;
}

.text-component.instance-96:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

.text-component.instance-96 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-96 a {
	text-decoration: underline;
}

.text-component.instance-96 a:hover {
	text-decoration: none;
}

.text-component.instance-96 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-69:not(:first-child) {
	margin-top: 0.375rem !important;
}

.text-component.instance-69:not(:last-child) {
	margin-bottom: 0.375rem !important;
}

.text-component.instance-69 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-69 a {
	text-decoration: underline;
}

.text-component.instance-69 a:hover {
	text-decoration: none;
}

.text-component.instance-69 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-97:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-97:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-97 {
	text-align: center;
	color: #F50A0A;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-97 a {
	text-decoration: underline;
}

.text-component.instance-97 a:hover {
	text-decoration: none;
}

.text-component.instance-97 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-197:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-197:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-197 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-197 a {
	text-decoration: underline;
}

.text-component.instance-197 a:hover {
	text-decoration: none;
}

.text-component.instance-197 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-200:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-200:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-200 {
	text-align: center;
	color: #F50A0A;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-200 a {
	text-decoration: underline;
}

.text-component.instance-200 a:hover {
	text-decoration: none;
}

.text-component.instance-200 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-210:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-210:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-210 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-210 a {
	text-decoration: underline;
}

.text-component.instance-210 a:hover {
	text-decoration: none;
}

.text-component.instance-210 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-222:not(:first-child) {
	margin-top: 0.5rem !important;
}

.text-component.instance-222:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.text-component.instance-222 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-222 a {
	text-decoration: underline;
}

.text-component.instance-222 a:hover {
	text-decoration: none;
}

.text-component.instance-222 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-38:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-38:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-38 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-38 a {
	text-decoration: underline;
}

.text-component.instance-38 a:hover {
	text-decoration: none;
}

.text-component.instance-38 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-106:not(:first-child) {
	margin-top: 0.5rem !important;
}

.text-component.instance-106:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.text-component.instance-106 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-106 a {
	text-decoration: underline;
}

.text-component.instance-106 a:hover {
	text-decoration: none;
}

.text-component.instance-106 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-224:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-224:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-224 {
	text-align: center;
	color: #F50A0A;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-224 a {
	text-decoration: underline;
}

.text-component.instance-224 a:hover {
	text-decoration: none;
}

.text-component.instance-224 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-149:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-149:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-149 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-149 a {
	text-decoration: underline;
}

.text-component.instance-149 a:hover {
	text-decoration: none;
}

.text-component.instance-149 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-227:not(:first-child) {
	margin-top: 0.5rem !important;
}

.text-component.instance-227:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.text-component.instance-227 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-227 a {
	text-decoration: underline;
}

.text-component.instance-227 a:hover {
	text-decoration: none;
}

.text-component.instance-227 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-99:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-99:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-99 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-99 a {
	text-decoration: underline;
}

.text-component.instance-99 a:hover {
	text-decoration: none;
}

.text-component.instance-99 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-100:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-100:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-100 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-100 a {
	text-decoration: underline;
}

.text-component.instance-100 a:hover {
	text-decoration: none;
}

.text-component.instance-100 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-102:not(:first-child) {
	margin-top: 0.5rem !important;
}

.text-component.instance-102:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.text-component.instance-102 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-102 a {
	text-decoration: underline;
}

.text-component.instance-102 a:hover {
	text-decoration: none;
}

.text-component.instance-102 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-103:not(:first-child) {
	margin-top: 1.25rem !important;
}

.text-component.instance-103:not(:last-child) {
	margin-bottom: 1.25rem !important;
}

.text-component.instance-103 {
	text-align: center;
	color: #F50A0A;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-103 a {
	text-decoration: underline;
}

.text-component.instance-103 a:hover {
	text-decoration: none;
}

.text-component.instance-103 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-152:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-152:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-152 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-152 a {
	text-decoration: underline;
}

.text-component.instance-152 a:hover {
	text-decoration: none;
}

.text-component.instance-152 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-153:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-153:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-153 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-153 a {
	text-decoration: underline;
}

.text-component.instance-153 a:hover {
	text-decoration: none;
}

.text-component.instance-153 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-157:not(:first-child) {
	margin-top: 0.75rem !important;
}

.text-component.instance-157:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

.text-component.instance-157 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-157 a {
	text-decoration: underline;
}

.text-component.instance-157 a:hover {
	text-decoration: none;
}

.text-component.instance-157 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-158:not(:first-child) {
	margin-top: 1.25rem !important;
}

.text-component.instance-158:not(:last-child) {
	margin-bottom: 1.25rem !important;
}

.text-component.instance-158 {
	text-align: center;
	color: #F50A0A;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-158 a {
	text-decoration: underline;
}

.text-component.instance-158 a:hover {
	text-decoration: none;
}

.text-component.instance-158 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-27:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-27:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-27 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-27 a {
	text-decoration: underline;
}

.text-component.instance-27 a:hover {
	text-decoration: none;
}

.text-component.instance-27 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-163:not(:first-child) {
	margin-top: 0.75rem !important;
}

.text-component.instance-163:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

.text-component.instance-163 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-163 a {
	text-decoration: underline;
}

.text-component.instance-163 a:hover {
	text-decoration: none;
}

.text-component.instance-163 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-101:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-101:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-101 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-101 a {
	text-decoration: underline;
}

.text-component.instance-101 a:hover {
	text-decoration: none;
}

.text-component.instance-101 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-164:not(:first-child) {
	margin-top: 0.5rem !important;
}

.text-component.instance-164:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.text-component.instance-164 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-164 a {
	text-decoration: underline;
}

.text-component.instance-164 a:hover {
	text-decoration: none;
}

.text-component.instance-164 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-194:not(:first-child) {
	margin-top: 0.5rem !important;
}

.text-component.instance-194:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.text-component.instance-194 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-194 a {
	text-decoration: underline;
}

.text-component.instance-194 a:hover {
	text-decoration: none;
}

.text-component.instance-194 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-120:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-120:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-120 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-120 a {
	text-decoration: underline;
}

.text-component.instance-120 a:hover {
	text-decoration: none;
}

.text-component.instance-120 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-105:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-105:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-105 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-105 a {
	text-decoration: underline;
}

.text-component.instance-105 a:hover {
	text-decoration: none;
}

.text-component.instance-105 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-177:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-177:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-177 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-177 a {
	text-decoration: underline;
}

.text-component.instance-177 a:hover {
	text-decoration: none;
}

.text-component.instance-177 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-119:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-119:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-119 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-119 a {
	text-decoration: underline;
}

.text-component.instance-119 a:hover {
	text-decoration: none;
}

.text-component.instance-119 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-129:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-129:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-129 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-129 a {
	text-decoration: underline;
}

.text-component.instance-129 a:hover {
	text-decoration: none;
}

.text-component.instance-129 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-2:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-2:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-2 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-2 a {
	text-decoration: underline;
}

.text-component.instance-2 a:hover {
	text-decoration: none;
}

.text-component.instance-2 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-162:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-162:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-162 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-162 a {
	text-decoration: underline;
}

.text-component.instance-162 a:hover {
	text-decoration: none;
}

.text-component.instance-162 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-206:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-206:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-206 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-206 a {
	text-decoration: underline;
}

.text-component.instance-206 a:hover {
	text-decoration: none;
}

.text-component.instance-206 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-161:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-161:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-161 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-161 a {
	text-decoration: underline;
}

.text-component.instance-161 a:hover {
	text-decoration: none;
}

.text-component.instance-161 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-121:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-121:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-121 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-121 a {
	text-decoration: underline;
}

.text-component.instance-121 a:hover {
	text-decoration: none;
}

.text-component.instance-121 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-130:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-130:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-130 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-130 a {
	text-decoration: underline;
}

.text-component.instance-130 a:hover {
	text-decoration: none;
}

.text-component.instance-130 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.style-5 {
	color: #0C8389;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.style-5 a {
	text-decoration: underline;
}

.text-component.style-5 a:hover {
	text-decoration: none;
}

.text-component.style-5 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-187 {
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-187 a {
	text-decoration: underline;
}

.text-component.instance-187 a:hover {
	text-decoration: none;
}

.text-component.instance-187 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-64:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-64:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-64 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-64 a {
	text-decoration: underline;
}

.text-component.instance-64 a:hover {
	text-decoration: none;
}

.text-component.instance-64 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-223:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-223:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-223 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-223 a {
	text-decoration: underline;
}

.text-component.instance-223 a:hover {
	text-decoration: none;
}

.text-component.instance-223 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-144:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-144:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-144 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-144 a {
	text-decoration: underline;
}

.text-component.instance-144 a:hover {
	text-decoration: none;
}

.text-component.instance-144 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-80:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-80:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-80 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-80 a {
	text-decoration: underline;
}

.text-component.instance-80 a:hover {
	text-decoration: none;
}

.text-component.instance-80 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-185 {
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-185 a {
	text-decoration: underline;
}

.text-component.instance-185 a:hover {
	text-decoration: none;
}

.text-component.instance-185 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-201:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-201:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-201 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-201 a {
	text-decoration: underline;
}

.text-component.instance-201 a:hover {
	text-decoration: none;
}

.text-component.instance-201 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-212:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-212:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-212 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-212 a {
	text-decoration: underline;
}

.text-component.instance-212 a:hover {
	text-decoration: none;
}

.text-component.instance-212 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-216:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-216:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-216 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-216 a {
	text-decoration: underline;
}

.text-component.instance-216 a:hover {
	text-decoration: none;
}

.text-component.instance-216 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-74:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-74:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-74 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-74 a {
	text-decoration: underline;
}

.text-component.instance-74 a:hover {
	text-decoration: none;
}

.text-component.instance-74 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-76:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-76:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-76 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-76 a {
	text-decoration: underline;
}

.text-component.instance-76 a:hover {
	text-decoration: none;
}

.text-component.instance-76 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-167:not(:first-child) {
	margin-top: 0.375rem !important;
}

.text-component.instance-167:not(:last-child) {
	margin-bottom: 0.375rem !important;
}

.text-component.instance-167 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-167 a {
	text-decoration: underline;
}

.text-component.instance-167 a:hover {
	text-decoration: none;
}

.text-component.instance-167 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-75:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-75:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-75 {
	text-align: center;
	color: #F50A0A;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-75 a {
	text-decoration: underline;
}

.text-component.instance-75 a:hover {
	text-decoration: none;
}

.text-component.instance-75 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-226:not(:first-child) {
	margin-top: 0.375rem !important;
}

.text-component.instance-226:not(:last-child) {
	margin-bottom: 0.375rem !important;
}

.text-component.instance-226 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-226 a {
	text-decoration: underline;
}

.text-component.instance-226 a:hover {
	text-decoration: none;
}

.text-component.instance-226 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-150:not(:first-child) {
	margin-top: 0.5rem !important;
}

.text-component.instance-150:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.text-component.instance-150 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-150 a {
	text-decoration: underline;
}

.text-component.instance-150 a:hover {
	text-decoration: none;
}

.text-component.instance-150 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-225:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-225:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-225 {
	text-align: center;
	color: #F50A0A;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-225 a {
	text-decoration: underline;
}

.text-component.instance-225 a:hover {
	text-decoration: none;
}

.text-component.instance-225 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-199:not(:first-child) {
	margin-top: 0rem !important;
}

.text-component.instance-199:not(:last-child) {
	margin-bottom: 0rem !important;
}

.text-component.instance-199 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-199 a {
	text-decoration: underline;
}

.text-component.instance-199 a:hover {
	text-decoration: none;
}

.text-component.instance-199 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-203:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-203:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-203 {
	text-align: center;
	color: #F50A0A;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-203 a {
	text-decoration: underline;
}

.text-component.instance-203 a:hover {
	text-decoration: none;
}

.text-component.instance-203 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-128:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-128:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-128 {
	text-align: center;
	color: #F50A0A;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-128 a {
	text-decoration: underline;
}

.text-component.instance-128 a:hover {
	text-decoration: none;
}

.text-component.instance-128 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-205:not(:first-child) {
	margin-top: 1rem !important;
}

.text-component.instance-205:not(:last-child) {
	margin-bottom: 1rem !important;
}

.text-component.instance-205 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-205 a {
	text-decoration: underline;
}

.text-component.instance-205 a:hover {
	text-decoration: none;
}

.text-component.instance-205 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-208:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-208:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-208 {
	text-align: center;
	color: #F50A0A;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-208 a {
	text-decoration: underline;
}

.text-component.instance-208 a:hover {
	text-decoration: none;
}

.text-component.instance-208 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-83:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-83:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-83 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-83 a {
	text-decoration: underline;
}

.text-component.instance-83 a:hover {
	text-decoration: none;
}

.text-component.instance-83 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-35:not(:first-child) {
	margin-top: 0rem !important;
}

.text-component.instance-35:not(:last-child) {
	margin-bottom: 0rem !important;
}

.text-component.instance-35 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-35 a {
	text-decoration: underline;
}

.text-component.instance-35 a:hover {
	text-decoration: none;
}

.text-component.instance-35 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-54 {
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-54 a {
	text-decoration: underline;
}

.text-component.instance-54 a:hover {
	text-decoration: none;
}

.text-component.instance-54 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-118:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-118:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-118 {
	text-align: left;
	color: #666666;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-118 a {
	text-decoration: underline;
}

.text-component.instance-118 a:hover {
	text-decoration: none;
}

.text-component.instance-118 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-108:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-108:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-108 {
	text-align: left;
	color: #666666;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-108 a {
	text-decoration: underline;
}

.text-component.instance-108 a:hover {
	text-decoration: none;
}

.text-component.instance-108 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-190:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-190:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-190 {
	text-align: left;
	color: #666666;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-190 a {
	text-decoration: underline;
}

.text-component.instance-190 a:hover {
	text-decoration: none;
}

.text-component.instance-190 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-65:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-65:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-65 {
	text-align: left;
	color: #666666;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-65 a {
	text-decoration: underline;
}

.text-component.instance-65 a:hover {
	text-decoration: none;
}

.text-component.instance-65 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-195:not(:first-child) {
	margin-top: 1.25rem !important;
}

.text-component.instance-195:not(:last-child) {
	margin-bottom: 1.25rem !important;
}

.text-component.instance-195 {
	text-align: center;
	color: #F50A0A;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-195 a {
	text-decoration: underline;
}

.text-component.instance-195 a:hover {
	text-decoration: none;
}

.text-component.instance-195 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-107:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-107:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-107 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-107 a {
	text-decoration: underline;
}

.text-component.instance-107 a:hover {
	text-decoration: none;
}

.text-component.instance-107 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-57:not(:first-child) {
	margin-top: 0.25rem !important;
}

.text-component.instance-57:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.text-component.instance-57 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-57 a {
	text-decoration: underline;
}

.text-component.instance-57 a:hover {
	text-decoration: none;
}

.text-component.instance-57 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-176:not(:first-child) {
	margin-top: 0.5rem !important;
}

.text-component.instance-176:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.text-component.instance-176 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-176 a {
	text-decoration: underline;
}

.text-component.instance-176 a:hover {
	text-decoration: none;
}

.text-component.instance-176 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-193:not(:first-child) {
	margin-top: 0.5rem !important;
}

.text-component.instance-193:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.text-component.instance-193 {
	text-align: left;
	color: #666666;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.text-component.instance-193 a {
	text-decoration: underline;
}

.text-component.instance-193 a:hover {
	text-decoration: none;
}

.text-component.instance-193 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-88 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1.375em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-88 a {
	text-decoration: underline;
}

.text-component.instance-88 a:hover {
	text-decoration: none;
}

.text-component.instance-88 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-25 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-25 a {
	text-decoration: underline;
}

.text-component.instance-25 a:hover {
	text-decoration: none;
}

.text-component.instance-25 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-191 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-191 a {
	text-decoration: underline;
}

.text-component.instance-191 a:hover {
	text-decoration: none;
}

.text-component.instance-191 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-192:not(:first-child) {
	margin-top: 1rem !important;
}

.text-component.instance-192:not(:last-child) {
	margin-bottom: 1rem !important;
}

.text-component.instance-192 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-192 a {
	text-decoration: underline;
}

.text-component.instance-192 a:hover {
	text-decoration: none;
}

.text-component.instance-192 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-188 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-188 a {
	text-decoration: underline;
}

.text-component.instance-188 a:hover {
	text-decoration: none;
}

.text-component.instance-188 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-189:not(:first-child) {
	margin-top: 1rem !important;
}

.text-component.instance-189:not(:last-child) {
	margin-bottom: 1rem !important;
}

.text-component.instance-189 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-189 a {
	text-decoration: underline;
}

.text-component.instance-189 a:hover {
	text-decoration: none;
}

.text-component.instance-189 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-50 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-50 a {
	text-decoration: underline;
}

.text-component.instance-50 a:hover {
	text-decoration: none;
}

.text-component.instance-50 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-51:not(:first-child) {
	margin-top: 1rem !important;
}

.text-component.instance-51:not(:last-child) {
	margin-bottom: 1rem !important;
}

.text-component.instance-51 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-51 a {
	text-decoration: underline;
}

.text-component.instance-51 a:hover {
	text-decoration: none;
}

.text-component.instance-51 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-52:not(:first-child) {
	margin-top: 0.375rem !important;
}

.text-component.instance-52:not(:last-child) {
	margin-bottom: 0.375rem !important;
}

.text-component.instance-52 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-52 a {
	text-decoration: underline;
}

.text-component.instance-52 a:hover {
	text-decoration: none;
}

.text-component.instance-52 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-44 {
	text-align: center;
	color: #8A8C96;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-44 a {
	text-decoration: underline;
}

.text-component.instance-44 a:hover {
	text-decoration: none;
}

.text-component.instance-44 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-47 {
	text-align: center;
	color: #8A8C96;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-47 a {
	text-decoration: underline;
}

.text-component.instance-47 a:hover {
	text-decoration: none;
}

.text-component.instance-47 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-45:not(:first-child) {
	margin-top: 1rem !important;
}

.text-component.instance-45:not(:last-child) {
	margin-bottom: 1rem !important;
}

.text-component.instance-45 {
	text-align: center;
	color: #F50A0A;
	font-family: 'Roboto', sans-serif;
	font-size: 1.25em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-45 a {
	text-decoration: underline;
}

.text-component.instance-45 a:hover {
	text-decoration: none;
}

.text-component.instance-45 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-46 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-46 a {
	text-decoration: underline;
}

.text-component.instance-46 a:hover {
	text-decoration: none;
}

.text-component.instance-46 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-28 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-28 a {
	text-decoration: underline;
}

.text-component.instance-28 a:hover {
	text-decoration: none;
}

.text-component.instance-28 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-19 {
	text-align: center;
	color: #8A8C96;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-19 a {
	text-decoration: underline;
}

.text-component.instance-19 a:hover {
	text-decoration: none;
}

.text-component.instance-19 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-34:not(:first-child) {
	margin-top: 1rem !important;
}

.text-component.instance-34:not(:last-child) {
	margin-bottom: 1rem !important;
}

.text-component.instance-34 {
	text-align: center;
	color: #F50A0A;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-34 a {
	text-decoration: underline;
}

.text-component.instance-34 a:hover {
	text-decoration: none;
}

.text-component.instance-34 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-24 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-24 a {
	text-decoration: underline;
}

.text-component.instance-24 a:hover {
	text-decoration: none;
}

.text-component.instance-24 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-29:not(:first-child) {
	margin-top: 1rem !important;
}

.text-component.instance-29:not(:last-child) {
	margin-bottom: 1rem !important;
}

.text-component.instance-29 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-29 a {
	text-decoration: underline;
}

.text-component.instance-29 a:hover {
	text-decoration: none;
}

.text-component.instance-29 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-42:not(:first-child) {
	margin-top: 0.5rem !important;
}

.text-component.instance-42:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.text-component.instance-42 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-42 a {
	text-decoration: underline;
}

.text-component.instance-42 a:hover {
	text-decoration: none;
}

.text-component.instance-42 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-154 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-154 a {
	text-decoration: underline;
}

.text-component.instance-154 a:hover {
	text-decoration: none;
}

.text-component.instance-154 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-155:not(:first-child) {
	margin-top: 1.5rem !important;
}

.text-component.instance-155:not(:last-child) {
	margin-bottom: 1.5rem !important;
}

.text-component.instance-155 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-155 a {
	text-decoration: underline;
}

.text-component.instance-155 a:hover {
	text-decoration: none;
}

.text-component.instance-155 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-159:not(:first-child) {
	margin-top: 0.75rem !important;
}

.text-component.instance-159:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

.text-component.instance-159 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-159 a {
	text-decoration: underline;
}

.text-component.instance-159 a:hover {
	text-decoration: none;
}

.text-component.instance-159 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-160:not(:first-child) {
	margin-top: 0.75rem !important;
}

.text-component.instance-160:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

.text-component.instance-160 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-160 a {
	text-decoration: underline;
}

.text-component.instance-160 a:hover {
	text-decoration: none;
}

.text-component.instance-160 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-3 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.instance-3 a {
	text-decoration: underline;
}

.text-component.instance-3 a:hover {
	text-decoration: none;
}

.text-component.instance-3 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-4:not(:first-child) {
	margin-top: 1rem !important;
}

.text-component.instance-4:not(:last-child) {
	margin-bottom: 1rem !important;
}

.text-component.instance-4 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-4 a {
	text-decoration: underline;
}

.text-component.instance-4 a:hover {
	text-decoration: none;
}

.text-component.instance-4 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-5:not(:first-child) {
	margin-top: 0.5rem !important;
}

.text-component.instance-5:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.text-component.instance-5 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-5 a {
	text-decoration: underline;
}

.text-component.instance-5 a:hover {
	text-decoration: none;
}

.text-component.instance-5 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.container-component {
	position: relative;
}

.container-component > .wrapper {
	vertical-align: top;
	position: relative;
	max-width: 100%;
	border-radius: inherit;
}

.container-component > .wrapper > .inner {
	vertical-align: top;
	position: relative;
	max-width: 100%;
	border-radius: inherit;
	text-align: var(--alignment);
}

.container-component.full:first-child > .wrapper {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.full:last-child > .wrapper {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.full:first-child > .wrapper > .inner {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.full:last-child > .wrapper > .inner {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-14 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

.container-component.instance-14:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-14 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 26rem;
	background-color: #FFFFFF;
	box-shadow: 0.354rem 0.354rem 2rem 0.5rem #3D3E47;
}

.container-component.instance-14 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 3.375rem;
	--padding-vertical: 1rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-14.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-14.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-14.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-14.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-14.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-14.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-14.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-14.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-14.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-14.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-14.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-14.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-14.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-14.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-14.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-14.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-14.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-14.columns > .wrapper > .inner > div:first-child, .container-component.instance-14.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-14.columns > .wrapper > .inner > div:last-child, .container-component.instance-14.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-14.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-14.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-14.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-14.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-14.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.style-1 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

.container-component.style-1:not(:first-child) {
	margin-top: 0rem !important;
}

.container-component.style-1:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.style-1 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 26rem;
	background-color: #0C8389;
}

.container-component.style-1 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 3.375rem;
	--padding-vertical: 0.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.style-1.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.style-1.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.style-1.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.style-1.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.style-1.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.style-1.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.style-1.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.style-1.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.style-1.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.style-1.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.style-1.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.style-1.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.style-1.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.style-1.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.style-1.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.style-1.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.style-1.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.style-1.columns > .wrapper > .inner > div:first-child, .container-component.style-1.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.style-1.columns > .wrapper > .inner > div:last-child, .container-component.style-1.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.style-1.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.style-1.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.style-1.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.style-1.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.style-1.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-28 > .wrapper {
	display: inline-block;
	width: 91rem;
	background-color: transparent;
}

.container-component.instance-28 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1rem;
	--padding-vertical: 2rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-28.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-28.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-28.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-28.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-28.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-28.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-28.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-28.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-28.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-28.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-28.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-28.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-28.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-28.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-28.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-28.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-28.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-28.columns > .wrapper > .inner > div:first-child, .container-component.instance-28.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-28.columns > .wrapper > .inner > div:last-child, .container-component.instance-28.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-28.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-28.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-28.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-28.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-28.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.style-2:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.style-2 > .wrapper {
	display: inline-block;
	width: 60rem;
	background-color: #0C8389;
}

.container-component.style-2 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.style-2.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.style-2.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.style-2.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.style-2.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.style-2.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.style-2.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.style-2.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.style-2.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.style-2.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.style-2.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.style-2.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.style-2.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.style-2.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.style-2.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.style-2.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.style-2.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.style-2.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.style-2.columns > .wrapper > .inner > div:first-child, .container-component.style-2.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.style-2.columns > .wrapper > .inner > div:last-child, .container-component.style-2.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.style-2.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.style-2.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.style-2.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.style-2.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.style-2.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-2 > .wrapper > .inner > :nth-child(1) {
	width: calc(23% + (var(--gutters) / 3));
}

.container-component.instance-2 > .wrapper > .inner > :nth-child(2) {
	width: calc(51% + (var(--gutters) / 3));
}

.container-component.instance-2 > .wrapper > .inner > :nth-child(3) {
	width: calc(26% + (var(--gutters) / 3));
}

.container-component.instance-23:not(:first-child) {
	margin-top: 0rem !important;
}

.container-component.instance-23:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-23 > .wrapper {
	display: inline-block;
	width: 60rem;
	background-color: #FFFFFF;
}

.container-component.instance-23 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 1rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-23.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-23.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-23.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-23.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-23.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-23.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-23.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-23.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-23.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-23.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-23.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-23.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-23.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-23.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-23.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-23.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-23.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-23.columns > .wrapper > .inner > div:first-child, .container-component.instance-23.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-23.columns > .wrapper > .inner > div:last-child, .container-component.instance-23.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-23.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-23.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-23.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-23.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-23.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-23 > .wrapper > .inner > :nth-child(1) {
	width: calc(50% + (var(--gutters) / 2));
}

.container-component.instance-23 > .wrapper > .inner > :nth-child(2) {
	width: calc(50% + (var(--gutters) / 2));
}

.container-component.instance-58:not(:first-child) {
	margin-top: 0rem !important;
}

.container-component.instance-58 > .wrapper {
	display: inline-block;
	width: 60rem;
	background-color: #FFFFFF;
}

.container-component.instance-58 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 1rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-58.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-58.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-58.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-58.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-58.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-58.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-58.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-58.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-58.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-58.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-58.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-58.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-58.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-58.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-58.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-58.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-58.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-58.columns > .wrapper > .inner > div:first-child, .container-component.instance-58.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-58.columns > .wrapper > .inner > div:last-child, .container-component.instance-58.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-58.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-58.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-58.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-58.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-58.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-7 > .wrapper {
	display: inline-block;
	width: 91rem;
	background-color: #FFFFFF;
	box-shadow: 0rem 1rem 2rem 0.5rem #1A1A1A;
	border-radius: 0.5rem;
}

.container-component.instance-7 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1rem;
	--padding-vertical: 1rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-7.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-7.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-7.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-7.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-7.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-7.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-7.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-7.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-7.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-7.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-7.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-7.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-7.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-7.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-7.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-7.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-7.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-7.columns > .wrapper > .inner > div:first-child, .container-component.instance-7.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-7.columns > .wrapper > .inner > div:last-child, .container-component.instance-7.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-7.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-7.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-7.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-7.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-7.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-7 > .wrapper > .inner > :nth-child(1) {
	width: calc(30% + (var(--gutters) / 3));
}

.container-component.instance-7 > .wrapper > .inner > :nth-child(2) {
	width: calc(50% + (var(--gutters) / 3));
}

.container-component.instance-7 > .wrapper > .inner > :nth-child(3) {
	width: calc(20% + (var(--gutters) / 3));
}

.container-component.instance-18 > .wrapper {
	display: inline-block;
	width: 91rem;
	background-color: #FFFFFF;
	box-shadow: 0rem 1rem 2rem 0.5rem #1A1A1A;
	border-radius: 0.5rem;
}

.container-component.instance-18 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1rem;
	--padding-vertical: 1rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-18.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-18.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-18.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-18.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-18.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-18.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-18.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-18.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-18.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-18.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-18.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-18.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-18.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-18.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-18.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-18.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-18.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-18.columns > .wrapper > .inner > div:first-child, .container-component.instance-18.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-18.columns > .wrapper > .inner > div:last-child, .container-component.instance-18.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-18.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-18.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-18.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-18.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-18.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-18 > .wrapper > .inner > :nth-child(1) {
	width: calc(30% + (var(--gutters) / 3));
}

.container-component.instance-18 > .wrapper > .inner > :nth-child(2) {
	width: calc(50% + (var(--gutters) / 3));
}

.container-component.instance-18 > .wrapper > .inner > :nth-child(3) {
	width: calc(20% + (var(--gutters) / 3));
}

.container-component.instance-4 > .wrapper {
	display: inline-block;
	width: 91rem;
	background-color: #FFFFFF;
	box-shadow: 0rem 1rem 2rem 0.5rem #1A1A1A;
	border-radius: 0.5rem;
}

.container-component.instance-4 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1rem;
	--padding-vertical: 1rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-4.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-4.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-4.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-4.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-4.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-4.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-4.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-4.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-4.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-4.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-4.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-4.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-4.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-4.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-4.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-4.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-4.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-4.columns > .wrapper > .inner > div:first-child, .container-component.instance-4.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-4.columns > .wrapper > .inner > div:last-child, .container-component.instance-4.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-4.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-4.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-4.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-4.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-4.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-4 > .wrapper > .inner > :nth-child(1) {
	width: calc(30% + (var(--gutters) / 3));
}

.container-component.instance-4 > .wrapper > .inner > :nth-child(2) {
	width: calc(50% + (var(--gutters) / 3));
}

.container-component.instance-4 > .wrapper > .inner > :nth-child(3) {
	width: calc(20% + (var(--gutters) / 3));
}

.container-component.instance-5 > .wrapper {
	display: inline-block;
	width: 91rem;
	background-color: #FFFFFF;
	box-shadow: 0rem 1rem 2rem 0.375rem #1A1A1A;
	border-radius: 0.5rem;
}

.container-component.instance-5 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1rem;
	--padding-vertical: 1rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-5.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-5.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-5.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-5.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-5.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-5.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-5.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-5.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-5.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-5.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-5.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-5.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-5.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-5.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-5.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-5.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-5.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-5.columns > .wrapper > .inner > div:first-child, .container-component.instance-5.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-5.columns > .wrapper > .inner > div:last-child, .container-component.instance-5.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-5.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-5.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-5.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-5.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-5.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-5 > .wrapper > .inner > :nth-child(1) {
	width: calc(30% + (var(--gutters) / 3));
}

.container-component.instance-5 > .wrapper > .inner > :nth-child(2) {
	width: calc(50% + (var(--gutters) / 3));
}

.container-component.instance-5 > .wrapper > .inner > :nth-child(3) {
	width: calc(20% + (var(--gutters) / 3));
}

.container-component.instance-6 > .wrapper {
	display: inline-block;
	width: 91rem;
	background-color: #FFFFFF;
	box-shadow: 0rem 1rem 2rem 0.5rem #1A1A1A;
	border-radius: 0.5rem;
}

.container-component.instance-6 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1rem;
	--padding-vertical: 1rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-6.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-6.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-6.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-6.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-6.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-6.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-6.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-6.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-6.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-6.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-6.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-6.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-6.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-6.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-6.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-6.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-6.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-6.columns > .wrapper > .inner > div:first-child, .container-component.instance-6.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-6.columns > .wrapper > .inner > div:last-child, .container-component.instance-6.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-6.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-6.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-6.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-6.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-6.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-6 > .wrapper > .inner > :nth-child(1) {
	width: calc(30% + (var(--gutters) / 3));
}

.container-component.instance-6 > .wrapper > .inner > :nth-child(2) {
	width: calc(50% + (var(--gutters) / 3));
}

.container-component.instance-6 > .wrapper > .inner > :nth-child(3) {
	width: calc(20% + (var(--gutters) / 3));
}

.container-component.instance-8:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-8:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-8 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-8 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-8.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-8.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-8.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-8.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-8.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-8.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-8.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-8.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-8.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-8.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-8.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-8.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-8.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-8.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-8.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-8.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-8.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-8.columns > .wrapper > .inner > div:first-child, .container-component.instance-8.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-8.columns > .wrapper > .inner > div:last-child, .container-component.instance-8.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-8.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-8.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-8.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-8.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-8.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-12:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-12:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-12 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-12 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-12.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-12.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-12.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-12.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-12.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-12.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-12.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-12.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-12.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-12.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-12.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-12.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-12.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-12.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-12.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-12.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-12.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-12.columns > .wrapper > .inner > div:first-child, .container-component.instance-12.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-12.columns > .wrapper > .inner > div:last-child, .container-component.instance-12.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-12.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-12.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-12.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-12.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-12.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-42:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-42:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-42 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-42 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-42.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-42.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-42.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-42.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-42.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-42.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-42.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-42.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-42.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-42.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-42.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-42.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-42.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-42.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-42.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-42.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-42.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-42.columns > .wrapper > .inner > div:first-child, .container-component.instance-42.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-42.columns > .wrapper > .inner > div:last-child, .container-component.instance-42.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-42.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-42.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-42.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-42.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-42.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-42 > .wrapper > .inner > :nth-child(1) {
	width: calc(20% + (var(--gutters) / 2));
}

.container-component.instance-42 > .wrapper > .inner > :nth-child(2) {
	width: calc(80% + (var(--gutters) / 2));
}

.container-component.instance-3:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-3:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-3 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-3 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-3.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-3.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-3.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-3.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-3.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-3.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-3.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-3.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-3.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-3.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-3.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-3.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-3.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-3.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-3.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-3.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-3.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-3.columns > .wrapper > .inner > div:first-child, .container-component.instance-3.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-3.columns > .wrapper > .inner > div:last-child, .container-component.instance-3.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-3.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-3.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-3.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-3.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-3.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-3 > .wrapper > .inner > :nth-child(1) {
	width: calc(20% + (var(--gutters) / 2));
}

.container-component.instance-3 > .wrapper > .inner > :nth-child(2) {
	width: calc(80% + (var(--gutters) / 2));
}

.container-component.instance-60:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-60:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-60 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-60 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-60.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-60.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-60.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-60.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-60.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-60.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-60.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-60.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-60.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-60.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-60.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-60.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-60.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-60.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-60.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-60.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-60.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-60.columns > .wrapper > .inner > div:first-child, .container-component.instance-60.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-60.columns > .wrapper > .inner > div:last-child, .container-component.instance-60.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-60.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-60.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-60.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-60.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-60.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-60 > .wrapper > .inner > :nth-child(1) {
	width: calc(20% + (var(--gutters) / 2));
}

.container-component.instance-60 > .wrapper > .inner > :nth-child(2) {
	width: calc(80% + (var(--gutters) / 2));
}

.container-component.instance-46:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-46:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-46 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-46 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-46.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-46.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-46.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-46.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-46.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-46.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-46.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-46.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-46.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-46.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-46.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-46.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-46.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-46.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-46.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-46.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-46.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-46.columns > .wrapper > .inner > div:first-child, .container-component.instance-46.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-46.columns > .wrapper > .inner > div:last-child, .container-component.instance-46.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-46.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-46.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-46.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-46.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-46.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-46 > .wrapper > .inner > :nth-child(1) {
	width: calc(20% + (var(--gutters) / 2));
}

.container-component.instance-46 > .wrapper > .inner > :nth-child(2) {
	width: calc(80% + (var(--gutters) / 2));
}

.container-component.instance-61:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-61:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-61 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-61 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-61.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-61.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-61.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-61.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-61.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-61.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-61.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-61.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-61.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-61.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-61.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-61.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-61.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-61.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-61.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-61.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-61.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-61.columns > .wrapper > .inner > div:first-child, .container-component.instance-61.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-61.columns > .wrapper > .inner > div:last-child, .container-component.instance-61.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-61.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-61.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-61.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-61.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-61.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-61 > .wrapper > .inner > :nth-child(1) {
	width: calc(20% + (var(--gutters) / 2));
}

.container-component.instance-61 > .wrapper > .inner > :nth-child(2) {
	width: calc(80% + (var(--gutters) / 2));
}

.container-component.instance-9:not(:first-child) {
	margin-top: 2rem !important;
}

.container-component.instance-9 > .wrapper {
	display: inline-block;
	width: 40rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-9 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1rem;
	--padding-vertical: 2rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-9.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-9.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-9.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-9.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-9.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-9.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-9.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-9.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-9.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-9.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-9.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-9.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-9.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-9.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-9.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-9.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-9.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-9.columns > .wrapper > .inner > div:first-child, .container-component.instance-9.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-9.columns > .wrapper > .inner > div:last-child, .container-component.instance-9.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-9.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-9.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-9.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-9.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-9.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-30:not(:first-child) {
	margin-top: 2rem !important;
}

.container-component.instance-30:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-30 > .wrapper {
	display: inline-block;
	width: 40rem;
	background-color: #FFFFFF;
}

.container-component.instance-30 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1rem;
	--padding-vertical: 2rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-30.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-30.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-30.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-30.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-30.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-30.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-30.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-30.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-30.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-30.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-30.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-30.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-30.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-30.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-30.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-30.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-30.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-30.columns > .wrapper > .inner > div:first-child, .container-component.instance-30.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-30.columns > .wrapper > .inner > div:last-child, .container-component.instance-30.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-30.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-30.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-30.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-30.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-30.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.style-3:not(:first-child) {
	margin-top: 0rem !important;
}

.container-component.style-3 > .wrapper {
	display: inline-block;
	width: 40rem;
	background-color: #0C8389;
}

.container-component.style-3 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1rem;
	--padding-vertical: 2rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.style-3.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.style-3.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.style-3.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.style-3.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.style-3.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.style-3.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.style-3.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.style-3.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.style-3.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.style-3.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.style-3.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.style-3.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.style-3.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.style-3.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.style-3.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.style-3.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.style-3.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.style-3.columns > .wrapper > .inner > div:first-child, .container-component.style-3.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.style-3.columns > .wrapper > .inner > div:last-child, .container-component.style-3.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.style-3.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.style-3.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.style-3.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.style-3.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.style-3.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-27:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-27:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-27 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-27 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-27.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-27.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-27.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-27.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-27.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-27.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-27.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-27.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-27.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-27.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-27.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-27.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-27.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-27.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-27.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-27.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-27.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-27.columns > .wrapper > .inner > div:first-child, .container-component.instance-27.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-27.columns > .wrapper > .inner > div:last-child, .container-component.instance-27.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-27.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-27.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-27.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-27.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-27.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-17:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-17:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-17 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-17 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-17.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-17.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-17.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-17.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-17.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-17.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-17.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-17.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-17.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-17.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-17.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-17.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-17.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-17.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-17.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-17.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-17.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-17.columns > .wrapper > .inner > div:first-child, .container-component.instance-17.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-17.columns > .wrapper > .inner > div:last-child, .container-component.instance-17.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-17.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-17.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-17.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-17.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-17.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-72:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-72:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-72 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-72 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-72.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-72.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-72.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-72.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-72.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-72.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-72.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-72.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-72.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-72.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-72.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-72.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-72.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-72.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-72.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-72.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-72.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-72.columns > .wrapper > .inner > div:first-child, .container-component.instance-72.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-72.columns > .wrapper > .inner > div:last-child, .container-component.instance-72.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-72.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-72.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-72.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-72.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-72.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-40:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-40:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-40 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-40 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-40.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-40.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-40.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-40.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-40.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-40.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-40.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-40.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-40.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-40.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-40.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-40.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-40.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-40.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-40.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-40.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-40.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-40.columns > .wrapper > .inner > div:first-child, .container-component.instance-40.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-40.columns > .wrapper > .inner > div:last-child, .container-component.instance-40.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-40.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-40.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-40.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-40.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-40.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-10:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-10:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-10 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-10 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-10.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-10.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-10.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-10.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-10.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-10.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-10.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-10.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-10.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-10.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-10.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-10.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-10.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-10.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-10.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-10.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-10.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-10.columns > .wrapper > .inner > div:first-child, .container-component.instance-10.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-10.columns > .wrapper > .inner > div:last-child, .container-component.instance-10.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-10.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-10.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-10.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-10.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-10.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-59:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-59:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-59 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-59 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-59.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-59.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-59.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-59.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-59.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-59.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-59.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-59.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-59.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-59.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-59.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-59.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-59.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-59.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-59.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-59.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-59.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-59.columns > .wrapper > .inner > div:first-child, .container-component.instance-59.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-59.columns > .wrapper > .inner > div:last-child, .container-component.instance-59.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-59.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-59.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-59.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-59.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-59.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-22:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-22:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-22 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-22 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-22.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-22.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-22.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-22.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-22.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-22.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-22.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-22.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-22.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-22.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-22.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-22.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-22.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-22.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-22.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-22.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-22.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-22.columns > .wrapper > .inner > div:first-child, .container-component.instance-22.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-22.columns > .wrapper > .inner > div:last-child, .container-component.instance-22.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-22.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-22.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-22.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-22.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-22.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-62 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

.container-component.instance-62:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-62 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 26rem;
	background-color: #FFFFFF;
	box-shadow: 0.354rem 0.354rem 2rem 0.5rem #3D3E47;
}

.container-component.instance-62 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 3.375rem;
	--padding-vertical: 1rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-62.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-62.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-62.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-62.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-62.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-62.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-62.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-62.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-62.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-62.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-62.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-62.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-62.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-62.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-62.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-62.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-62.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-62.columns > .wrapper > .inner > div:first-child, .container-component.instance-62.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-62.columns > .wrapper > .inner > div:last-child, .container-component.instance-62.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-62.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-62.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-62.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-62.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-62.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-21:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-21:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-21 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-21 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-21.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-21.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-21.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-21.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-21.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-21.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-21.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-21.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-21.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-21.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-21.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-21.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-21.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-21.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-21.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-21.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-21.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-21.columns > .wrapper > .inner > div:first-child, .container-component.instance-21.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-21.columns > .wrapper > .inner > div:last-child, .container-component.instance-21.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-21.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-21.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-21.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-21.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-21.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-11:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-11:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-11 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-11 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-11.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-11.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-11.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-11.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-11.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-11.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-11.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-11.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-11.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-11.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-11.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-11.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-11.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-11.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-11.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-11.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-11.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-11.columns > .wrapper > .inner > div:first-child, .container-component.instance-11.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-11.columns > .wrapper > .inner > div:last-child, .container-component.instance-11.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-11.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-11.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-11.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-11.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-11.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-26:not(:first-child) {
	margin-top: 12rem !important;
}

.container-component.instance-26:not(:last-child) {
	margin-bottom: 12rem !important;
}

.container-component.instance-26 > .wrapper {
	display: inline-block;
	width: 91rem;
	background-color: transparent;
}

.container-component.instance-26 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1rem;
	--padding-vertical: 12rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-26.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-26.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-26.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-26.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-26.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-26.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-26.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-26.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-26.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-26.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-26.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-26.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-26.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-26.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-26.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-26.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-26.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-26.columns > .wrapper > .inner > div:first-child, .container-component.instance-26.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-26.columns > .wrapper > .inner > div:last-child, .container-component.instance-26.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-26.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-26.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-26.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-26.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-26.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-25:not(:first-child) {
	margin-top: 12rem !important;
}

.container-component.instance-25:not(:last-child) {
	margin-bottom: 12rem !important;
}

.container-component.instance-25 > .wrapper {
	display: inline-block;
	width: 91rem;
	background-color: transparent;
}

.container-component.instance-25 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1rem;
	--padding-vertical: 12rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-25.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-25.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-25.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-25.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-25.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-25.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-25.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-25.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-25.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-25.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-25.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-25.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-25.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-25.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-25.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-25.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-25.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-25.columns > .wrapper > .inner > div:first-child, .container-component.instance-25.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-25.columns > .wrapper > .inner > div:last-child, .container-component.instance-25.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-25.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-25.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-25.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-25.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-25.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-32 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

.container-component.instance-32:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-32 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 26rem;
	background-color: #FFFFFF;
	box-shadow: 0.354rem 0.354rem 2rem 0.5rem #3D3E47;
}

.container-component.instance-32 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 3.375rem;
	--padding-vertical: 1rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-32.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-32.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-32.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-32.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-32.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-32.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-32.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-32.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-32.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-32.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-32.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-32.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-32.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-32.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-32.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-32.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-32.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-32.columns > .wrapper > .inner > div:first-child, .container-component.instance-32.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-32.columns > .wrapper > .inner > div:last-child, .container-component.instance-32.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-32.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-32.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-32.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-32.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-32.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-73:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-73:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-73 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-73 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-73.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-73.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-73.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-73.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-73.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-73.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-73.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-73.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-73.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-73.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-73.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-73.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-73.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-73.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-73.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-73.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-73.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-73.columns > .wrapper > .inner > div:first-child, .container-component.instance-73.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-73.columns > .wrapper > .inner > div:last-child, .container-component.instance-73.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-73.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-73.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-73.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-73.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-73.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-77:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-77:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-77 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-77 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-77.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-77.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-77.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-77.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-77.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-77.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-77.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-77.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-77.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-77.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-77.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-77.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-77.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-77.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-77.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-77.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-77.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-77.columns > .wrapper > .inner > div:first-child, .container-component.instance-77.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-77.columns > .wrapper > .inner > div:last-child, .container-component.instance-77.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-77.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-77.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-77.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-77.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-77.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-77 > .wrapper > .inner > :nth-child(1) {
	width: calc(20% + (var(--gutters) / 2));
}

.container-component.instance-77 > .wrapper > .inner > :nth-child(2) {
	width: calc(80% + (var(--gutters) / 2));
}

.container-component.instance-75:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-75:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-75 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-75 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-75.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-75.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-75.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-75.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-75.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-75.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-75.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-75.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-75.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-75.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-75.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-75.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-75.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-75.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-75.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-75.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-75.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-75.columns > .wrapper > .inner > div:first-child, .container-component.instance-75.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-75.columns > .wrapper > .inner > div:last-child, .container-component.instance-75.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-75.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-75.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-75.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-75.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-75.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-75 > .wrapper > .inner > :nth-child(1) {
	width: calc(20% + (var(--gutters) / 2));
}

.container-component.instance-75 > .wrapper > .inner > :nth-child(2) {
	width: calc(80% + (var(--gutters) / 2));
}

.container-component.instance-76:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-76:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-76 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-76 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-76.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-76.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-76.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-76.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-76.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-76.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-76.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-76.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-76.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-76.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-76.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-76.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-76.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-76.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-76.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-76.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-76.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-76.columns > .wrapper > .inner > div:first-child, .container-component.instance-76.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-76.columns > .wrapper > .inner > div:last-child, .container-component.instance-76.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-76.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-76.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-76.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-76.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-76.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-76 > .wrapper > .inner > :nth-child(1) {
	width: calc(20% + (var(--gutters) / 2));
}

.container-component.instance-76 > .wrapper > .inner > :nth-child(2) {
	width: calc(80% + (var(--gutters) / 2));
}

.container-component.instance-48:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-48:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-48 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-48 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-48.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-48.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-48.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-48.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-48.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-48.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-48.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-48.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-48.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-48.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-48.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-48.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-48.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-48.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-48.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-48.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-48.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-48.columns > .wrapper > .inner > div:first-child, .container-component.instance-48.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-48.columns > .wrapper > .inner > div:last-child, .container-component.instance-48.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-48.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-48.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-48.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-48.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-48.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-48 > .wrapper > .inner > :nth-child(1) {
	width: calc(20% + (var(--gutters) / 2));
}

.container-component.instance-48 > .wrapper > .inner > :nth-child(2) {
	width: calc(80% + (var(--gutters) / 2));
}

.container-component.instance-45:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-45:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-45 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-45 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-45.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-45.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-45.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-45.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-45.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-45.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-45.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-45.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-45.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-45.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-45.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-45.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-45.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-45.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-45.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-45.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-45.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-45.columns > .wrapper > .inner > div:first-child, .container-component.instance-45.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-45.columns > .wrapper > .inner > div:last-child, .container-component.instance-45.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-45.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-45.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-45.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-45.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-45.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-49:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-49:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-49 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-49 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-49.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-49.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-49.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-49.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-49.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-49.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-49.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-49.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-49.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-49.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-49.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-49.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-49.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-49.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-49.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-49.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-49.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-49.columns > .wrapper > .inner > div:first-child, .container-component.instance-49.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-49.columns > .wrapper > .inner > div:last-child, .container-component.instance-49.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-49.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-49.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-49.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-49.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-49.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-47:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-47:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-47 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-47 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-47.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-47.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-47.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-47.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-47.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-47.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-47.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-47.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-47.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-47.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-47.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-47.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-47.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-47.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-47.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-47.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-47.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-47.columns > .wrapper > .inner > div:first-child, .container-component.instance-47.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-47.columns > .wrapper > .inner > div:last-child, .container-component.instance-47.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-47.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-47.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-47.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-47.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-47.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-50:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-50:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-50 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-50 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-50.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-50.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-50.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-50.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-50.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-50.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-50.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-50.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-50.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-50.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-50.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-50.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-50.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-50.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-50.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-50.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-50.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-50.columns > .wrapper > .inner > div:first-child, .container-component.instance-50.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-50.columns > .wrapper > .inner > div:last-child, .container-component.instance-50.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-50.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-50.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-50.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-50.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-50.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-51:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-51:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-51 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-51 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-51.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-51.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-51.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-51.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-51.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-51.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-51.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-51.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-51.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-51.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-51.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-51.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-51.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-51.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-51.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-51.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-51.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-51.columns > .wrapper > .inner > div:first-child, .container-component.instance-51.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-51.columns > .wrapper > .inner > div:last-child, .container-component.instance-51.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-51.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-51.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-51.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-51.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-51.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-74:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-74:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-74 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-74 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-74.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-74.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-74.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-74.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-74.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-74.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-74.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-74.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-74.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-74.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-74.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-74.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-74.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-74.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-74.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-74.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-74.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-74.columns > .wrapper > .inner > div:first-child, .container-component.instance-74.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-74.columns > .wrapper > .inner > div:last-child, .container-component.instance-74.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-74.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-74.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-74.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-74.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-74.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-78:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-78:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-78 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-78 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-78.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-78.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-78.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-78.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-78.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-78.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-78.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-78.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-78.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-78.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-78.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-78.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-78.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-78.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-78.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-78.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-78.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-78.columns > .wrapper > .inner > div:first-child, .container-component.instance-78.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-78.columns > .wrapper > .inner > div:last-child, .container-component.instance-78.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-78.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-78.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-78.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-78.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-78.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-52:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-52:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-52 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-52 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-52.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-52.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-52.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-52.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-52.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-52.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-52.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-52.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-52.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-52.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-52.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-52.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-52.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-52.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-52.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-52.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-52.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-52.columns > .wrapper > .inner > div:first-child, .container-component.instance-52.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-52.columns > .wrapper > .inner > div:last-child, .container-component.instance-52.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-52.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-52.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-52.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-52.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-52.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-41 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

.container-component.instance-41:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-41 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 26rem;
	background-color: #FFFFFF;
	box-shadow: 0.354rem 0.354rem 2rem 0.5rem #3D3E47;
}

.container-component.instance-41 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 3.375rem;
	--padding-vertical: 1rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-41.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-41.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-41.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-41.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-41.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-41.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-41.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-41.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-41.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-41.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-41.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-41.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-41.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-41.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-41.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-41.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-41.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-41.columns > .wrapper > .inner > div:first-child, .container-component.instance-41.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-41.columns > .wrapper > .inner > div:last-child, .container-component.instance-41.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-41.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-41.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-41.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-41.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-41.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-34:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-34:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-34 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-34 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-34.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-34.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-34.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-34.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-34.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-34.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-34.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-34.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-34.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-34.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-34.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-34.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-34.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-34.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-34.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-34.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-34.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-34.columns > .wrapper > .inner > div:first-child, .container-component.instance-34.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-34.columns > .wrapper > .inner > div:last-child, .container-component.instance-34.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-34.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-34.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-34.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-34.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-34.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-35:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-35:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-35 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-35 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-35.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-35.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-35.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-35.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-35.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-35.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-35.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-35.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-35.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-35.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-35.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-35.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-35.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-35.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-35.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-35.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-35.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-35.columns > .wrapper > .inner > div:first-child, .container-component.instance-35.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-35.columns > .wrapper > .inner > div:last-child, .container-component.instance-35.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-35.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-35.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-35.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-35.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-35.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-35 > .wrapper > .inner > :nth-child(1) {
	width: calc(20% + (var(--gutters) / 2));
}

.container-component.instance-35 > .wrapper > .inner > :nth-child(2) {
	width: calc(80% + (var(--gutters) / 2));
}

.container-component.instance-36:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-36:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-36 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-36 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-36.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-36.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-36.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-36.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-36.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-36.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-36.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-36.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-36.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-36.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-36.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-36.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-36.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-36.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-36.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-36.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-36.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-36.columns > .wrapper > .inner > div:first-child, .container-component.instance-36.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-36.columns > .wrapper > .inner > div:last-child, .container-component.instance-36.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-36.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-36.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-36.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-36.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-36.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-37:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-37:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-37 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-37 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-37.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-37.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-37.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-37.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-37.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-37.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-37.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-37.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-37.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-37.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-37.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-37.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-37.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-37.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-37.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-37.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-37.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-37.columns > .wrapper > .inner > div:first-child, .container-component.instance-37.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-37.columns > .wrapper > .inner > div:last-child, .container-component.instance-37.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-37.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-37.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-37.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-37.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-37.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-38:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-38:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-38 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-38 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-38.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-38.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-38.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-38.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-38.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-38.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-38.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-38.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-38.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-38.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-38.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-38.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-38.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-38.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-38.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-38.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-38.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-38.columns > .wrapper > .inner > div:first-child, .container-component.instance-38.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-38.columns > .wrapper > .inner > div:last-child, .container-component.instance-38.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-38.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-38.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-38.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-38.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-38.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-39:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-39:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-39 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-39 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-39.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-39.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-39.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-39.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-39.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-39.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-39.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-39.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-39.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-39.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-39.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-39.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-39.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-39.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-39.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-39.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-39.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-39.columns > .wrapper > .inner > div:first-child, .container-component.instance-39.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-39.columns > .wrapper > .inner > div:last-child, .container-component.instance-39.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-39.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-39.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-39.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-39.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-39.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-65 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

.container-component.instance-65:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-65 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 26rem;
	background-color: #FFFFFF;
	box-shadow: 0.354rem 0.354rem 2rem 0.5rem #3D3E47;
}

.container-component.instance-65 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 3.375rem;
	--padding-vertical: 1rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-65.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-65.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-65.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-65.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-65.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-65.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-65.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-65.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-65.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-65.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-65.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-65.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-65.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-65.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-65.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-65.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-65.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-65.columns > .wrapper > .inner > div:first-child, .container-component.instance-65.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-65.columns > .wrapper > .inner > div:last-child, .container-component.instance-65.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-65.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-65.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-65.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-65.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-65.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-13:not(:first-child) {
	margin-top: 1rem !important;
}

.container-component.instance-13:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-13 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: #FFFFFF;
	border-radius: 0.5rem;
}

.container-component.instance-13 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-13.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-13.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-13.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-13.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-13.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-13.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-13.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-13.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-13.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-13.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-13.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-13.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-13.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-13.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-13.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-13.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-13.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-13.columns > .wrapper > .inner > div:first-child, .container-component.instance-13.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-13.columns > .wrapper > .inner > div:last-child, .container-component.instance-13.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-13.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-13.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-13.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-13.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-13.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-33:not(:first-child) {
	margin-top: 0rem !important;
}

.container-component.instance-33:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-33 > .wrapper {
	display: inline-block;
	width: 64rem;
	background-color: rgba(27,27,27,0.878);
	border-radius: 0.5rem;
}

.container-component.instance-33 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.375rem;
	--padding-vertical: 1.75rem;
	--spacing: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.5rem - 0px);
}

.container-component.instance-33.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-33.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-33.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-33.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-33.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-33.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-33.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-33.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-33.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-33.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-33.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-33.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-33.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-33.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-33.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-33.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-33.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-33.columns > .wrapper > .inner > div:first-child, .container-component.instance-33.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-33.columns > .wrapper > .inner > div:last-child, .container-component.instance-33.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-33.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

.container-component.instance-33.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-33.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-33.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-33.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-68 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

.container-component.instance-68:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-68 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 26rem;
	background-color: #FFFFFF;
	box-shadow: 0.354rem 0.354rem 2rem 0.5rem #3D3E47;
}

.container-component.instance-68 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 3.375rem;
	--padding-vertical: 1rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-68.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-68.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-68.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-68.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-68.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-68.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-68.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-68.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-68.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-68.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-68.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-68.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-68.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-68.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-68.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-68.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-68.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-68.columns > .wrapper > .inner > div:first-child, .container-component.instance-68.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-68.columns > .wrapper > .inner > div:last-child, .container-component.instance-68.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-68.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-68.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-68.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-68.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-68.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-70 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

.container-component.instance-70:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-70 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 26rem;
	background-color: #FFFFFF;
	box-shadow: 0.354rem 0.354rem 2rem 0.5rem #3D3E47;
}

.container-component.instance-70 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 3.375rem;
	--padding-vertical: 1rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-70.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-70.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-70.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-70.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-70.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-70.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-70.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-70.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-70.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-70.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-70.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-70.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-70.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-70.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-70.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-70.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-70.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-70.columns > .wrapper > .inner > div:first-child, .container-component.instance-70.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-70.columns > .wrapper > .inner > div:last-child, .container-component.instance-70.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-70.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-70.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-70.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-70.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-70.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-19 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

.container-component.instance-19:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-19 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 26rem;
	background-color: #FFFFFF;
	box-shadow: 0.354rem 0.354rem 2rem 0.5rem #3D3E47;
}

.container-component.instance-19 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 3.375rem;
	--padding-vertical: 1rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-19.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-19.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-19.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-19.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-19.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-19.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-19.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-19.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-19.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-19.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-19.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-19.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-19.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-19.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-19.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-19.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-19.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-19.columns > .wrapper > .inner > div:first-child, .container-component.instance-19.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-19.columns > .wrapper > .inner > div:last-child, .container-component.instance-19.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-19.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-19.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-19.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-19.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-19.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-57 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

.container-component.instance-57:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-57 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 26rem;
	background-color: #FFFFFF;
	box-shadow: 0.354rem 0.354rem 2rem 0.5rem #3D3E47;
}

.container-component.instance-57 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 3.375rem;
	--padding-vertical: 1rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-57.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-57.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-57.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-57.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-57.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-57.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-57.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-57.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-57.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-57.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-57.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-57.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-57.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-57.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-57.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-57.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-57.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-57.columns > .wrapper > .inner > div:first-child, .container-component.instance-57.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-57.columns > .wrapper > .inner > div:last-child, .container-component.instance-57.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-57.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-57.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-57.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-57.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-57.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-56 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

.container-component.instance-56:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-56 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 26rem;
	background-color: #FFFFFF;
	box-shadow: 0.354rem 0.354rem 2rem 0.5rem #3D3E47;
}

.container-component.instance-56 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 3.375rem;
	--padding-vertical: 1rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-56.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-56.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-56.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-56.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-56.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-56.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-56.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-56.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-56.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-56.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-56.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-56.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-56.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-56.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-56.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-56.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-56.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-56.columns > .wrapper > .inner > div:first-child, .container-component.instance-56.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-56.columns > .wrapper > .inner > div:last-child, .container-component.instance-56.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-56.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-56.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-56.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-56.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-56.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-1 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

.container-component.instance-1:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.instance-1 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 26rem;
	background-color: #FFFFFF;
	box-shadow: 0.354rem 0.354rem 2rem 0.5rem #3D3E47;
}

.container-component.instance-1 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 3.375rem;
	--padding-vertical: 1rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-1.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-1.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-1.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-1.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-1.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-1.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-1.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-1.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-1.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-1.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-1.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-1.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-1.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-1.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-1.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-1.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-1.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-1.columns > .wrapper > .inner > div:first-child, .container-component.instance-1.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-1.columns > .wrapper > .inner > div:last-child, .container-component.instance-1.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-1.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-1.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-1.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-1.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-1.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.divider-component {
	align-items: center;
	border: 0;
	display: flex;
	justify-content: var(--flex-alignment);
	min-height: 1rem;
	padding: 0;
	position: relative;
	width: 100%;
}

.divider-component::before {
	content: '';
}

.divider-component.instance-1::before {
	width: 20rem;
	background-color: #FFFFFF;
	height: 1px;
	border-radius: 0px;
}

.divider-component.instance-2::before {
	width: 20rem;
	background-color: #FFFFFF;
	height: 1px;
	border-radius: 0px;
}

.divider-component.instance-25::before {
	width: 20rem;
	background-color: #FFFFFF;
	height: 1px;
	border-radius: 0px;
}

.divider-component.instance-27::before {
	width: 20rem;
	background-color: #FFFFFF;
	height: 1px;
	border-radius: 0px;
}

.divider-component.style-1:not(:first-child) {
	margin-top: 0.125rem !important;
}

.divider-component.style-1:not(:last-child) {
	margin-bottom: 0.125rem !important;
}

.divider-component.style-1::before {
	width: 48rem;
	background-color: #0C8389;
	height: 2px;
	border-radius: 0px;
}

.divider-component.instance-10::before {
	width: 55rem;
	background-color: #8A8C96;
	height: 2px;
	border-radius: 0px;
}

.divider-component.instance-40::before {
	width: 33rem;
	background-color: #25A0A4;
	height: 2px;
	border-radius: 0px;
}

.divider-component.instance-5::before {
	width: 20rem;
	background-color: #FFFFFF;
	height: 1px;
	border-radius: 0px;
}

.divider-component.instance-36::before {
	width: 20rem;
	background-color: #FFFFFF;
	height: 1px;
	border-radius: 0px;
}

.divider-component.instance-53::before {
	width: 33rem;
	background-color: #FFFFFF;
	height: 2px;
	border-radius: 0px;
}

.divider-component.instance-52::before {
	width: 33rem;
	background-color: #FFFFFF;
	height: 2px;
	border-radius: 0px;
}

.divider-component.instance-37::before {
	width: 33rem;
	background-color: #FFFFFF;
	height: 2px;
	border-radius: 0px;
}

.divider-component.instance-3::before {
	width: 33rem;
	background-color: #8A8C96;
	height: 2px;
	border-radius: 0px;
}

.divider-component.instance-14::before {
	width: 33rem;
	background-color: #FFFFFF;
	height: 2px;
	border-radius: 0px;
}

.divider-component.instance-38::before {
	width: 33rem;
	background-color: #FFFFFF;
	height: 2px;
	border-radius: 0px;
}

.divider-component.instance-39::before {
	width: 33rem;
	background-color: #FFFFFF;
	height: 2px;
	border-radius: 0px;
}

.buttons-component {
	cursor: default;
	display: flex;
	justify-content: var(--flex-alignment);
	letter-spacing: 0;
	padding: 0;
}

.buttons-component > li {
	max-width: 100%;
	text-align: var(--alignment);
}

.buttons-component > li > a {
	align-items: center;
	justify-content: center;
	max-width: 100%;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	white-space: nowrap;
}

.buttons-component.instance-24 {
	--flex-alignment: center;
	--alignment: center;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-24:not(:first-child) {
	margin-top: 1rem !important;
}

.buttons-component.instance-24:not(:last-child) {
	margin-bottom: 1rem !important;
}

.buttons-component.instance-24 > li > a {
	display: inline-block;
	width: auto;
	height: 3.75rem;
	line-height: calc(3.75rem - 2px);
	padding: 0 1.875rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 1.25em;
	font-weight: 700;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #FFFFFF;
	border: solid 1px #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-24 > li > a:hover {
	transform: scale(1.1125);
}

.buttons-component.instance-24 > li > a.n01 {
	color: #FFFFFF;
	border: solid 1px #FFFFFF;
	cursor: pointer;
}

.buttons-component.instance-32 {
	--flex-alignment: center;
	--alignment: center;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-32:not(:first-child) {
	margin-top: 1rem !important;
}

.buttons-component.instance-32:not(:last-child) {
	margin-bottom: 1rem !important;
}

.buttons-component.instance-32 > li > a {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #FFFFFF;
	border: solid 1px #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-32 > li > a:hover {
	transform: scale(1.1125);
}

.buttons-component.instance-50 {
	--flex-alignment: center;
	--alignment: center;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-50:not(:first-child) {
	margin-top: 1.25rem !important;
}

.buttons-component.instance-50:not(:last-child) {
	margin-bottom: 1.25rem !important;
}

.buttons-component.instance-50 > li > a {
	display: inline-block;
	width: auto;
	height: 3.75rem;
	line-height: calc(3.75rem - 2px);
	padding: 0 1.875rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 1.25em;
	font-weight: 700;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #FFFFFF;
	border: solid 1px #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-50 > li > a:hover {
	transform: scale(1.1125);
}

.buttons-component.instance-50 > li > a.n01 {
	color: #FFFFFF;
	border: solid 1px #FFFFFF;
}

.buttons-component.instance-126 {
	--flex-alignment: center;
	--alignment: center;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-126:not(:first-child) {
	margin-top: 1.25rem !important;
}

.buttons-component.instance-126:not(:last-child) {
	margin-bottom: 1.25rem !important;
}

.buttons-component.instance-126 > li > a {
	display: inline-block;
	width: auto;
	height: 2rem;
	line-height: calc(2rem - 2px);
	padding: 0 1rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 700;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #FFFFFF;
	border: solid 1px #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-126 > li > a:hover {
	transform: scale(1.1125);
}

.buttons-component.style-2 {
	--flex-alignment: center;
	--alignment: center;
	gap: 1.5rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.style-2:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.style-2:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.style-2 > li > a {
	display: inline-block;
	width: auto;
	height: 2rem;
	line-height: calc(2rem - 4px);
	padding: 0 1rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 700;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #666666;
	border: solid 2px #666666;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.style-2 > li > a:hover {
	border-color: #0C8389 !important;
	color: #0C8389 !important;
}

.buttons-component.style-3 {
	--flex-alignment: center;
	--alignment: center;
	gap: 1.5rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.style-3 > li > a {
	display: inline-block;
	width: auto;
	height: 1.75rem;
	line-height: calc(1.75rem - 2px);
	padding: 0 0.875rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 500;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #666666;
	border: solid 1px #666666;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.style-3 > li > a:hover {
	border-color: #0C8389 !important;
	color: #0C8389 !important;
}

.buttons-component.instance-9 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-9:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.instance-9:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.instance-9 > li > a {
	display: inline-block;
	width: 13.5rem;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #8A8C96;
	border: solid 1px #8A8C96;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.style-1 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.style-1:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.style-1:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.style-1 > li > a {
	display: inline-block;
	width: 13.5rem;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #0C8389;
	border: solid 1px #0C8389;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-11 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-11:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.instance-11:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.instance-11 > li > a {
	display: inline-block;
	width: 13.5rem;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #8A8C96;
	border: solid 1px #8A8C96;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-12 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-12:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.instance-12:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.instance-12 > li > a {
	display: inline-block;
	width: 13.5rem;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #8A8C96;
	border: solid 1px #8A8C96;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-15 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-15:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.instance-15:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.instance-15 > li > a {
	display: inline-block;
	width: 13.5rem;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #8A8C96;
	border: solid 1px #8A8C96;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-16 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-16:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.instance-16:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.instance-16 > li > a {
	display: inline-block;
	width: 13.5rem;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #8A8C96;
	border: solid 1px #8A8C96;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-18 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-18:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.instance-18:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.instance-18 > li > a {
	display: inline-block;
	width: 13.5rem;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #8A8C96;
	border: solid 1px #8A8C96;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-20 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-20:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.instance-20:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.instance-20 > li > a {
	display: inline-block;
	width: 13.5rem;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #8A8C96;
	border: solid 1px #8A8C96;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-21 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-21:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.instance-21:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.instance-21 > li > a {
	display: inline-block;
	width: 13.5rem;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #8A8C96;
	border: solid 1px #8A8C96;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-22 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-22:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.instance-22:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.instance-22 > li > a {
	display: inline-block;
	width: 13.5rem;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #8A8C96;
	border: solid 1px #8A8C96;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-25 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-25:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.instance-25:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.instance-25 > li > a {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #8A8C96;
	border: solid 1px #8A8C96;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-26 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-26:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.instance-26:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.instance-26 > li > a {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #8A8C96;
	border: solid 1px #8A8C96;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-27 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-27:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.instance-27:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.instance-27 > li > a {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #8A8C96;
	border: solid 1px #8A8C96;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-28 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-28:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.instance-28:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.instance-28 > li > a {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #8A8C96;
	border: solid 1px #8A8C96;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-38 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-38:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.instance-38:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.instance-38 > li > a {
	display: inline-block;
	width: 13.5rem;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #8A8C96;
	border: solid 1px #8A8C96;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-39 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-39:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.instance-39:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.instance-39 > li > a {
	display: inline-block;
	width: 13.5rem;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #8A8C96;
	border: solid 1px #8A8C96;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-40 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-40:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.instance-40:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.instance-40 > li > a {
	display: inline-block;
	width: 13.5rem;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #8A8C96;
	border: solid 1px #8A8C96;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-84 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-29 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-43 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.style-4 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 1.5rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.style-4 > li > a {
	display: inline-block;
	width: auto;
	height: 1.75rem;
	line-height: calc(1.75rem - 2px);
	padding: 0 0.875rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 500;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #666666;
	border: solid 1px #666666;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.style-4 > li > a:hover {
	border-color: #0C8389 !important;
	color: #0C8389 !important;
}

.buttons-component.instance-59 > li > a.n02 {
	cursor: pointer;
}

.buttons-component.style-5 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 1.5rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.style-5:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.style-5:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.style-5 > li > a {
	display: inline-block;
	width: auto;
	height: 2rem;
	line-height: calc(2rem - 4px);
	padding: 0 1rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 700;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #666666;
	border: solid 2px #666666;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.style-5 > li > a:hover {
	border-color: #0C8389 !important;
	color: #0C8389 !important;
}

.buttons-component.instance-52 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-37 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-97 {
	--flex-alignment: center;
	--alignment: center;
	gap: 1.5rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-97:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.instance-97:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.instance-97 > li > a {
	display: inline-block;
	width: auto;
	height: 2rem;
	line-height: calc(2rem - 4px);
	padding: 0 1rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 700;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #666666;
	border: solid 2px #666666;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-97 > li > a:hover {
	border-color: #0C8389 !important;
	color: #0C8389 !important;
}

.buttons-component.instance-100 {
	--flex-alignment: center;
	--alignment: center;
	gap: 1.5rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-100:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.instance-100:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.instance-100 > li > a {
	display: inline-block;
	width: auto;
	height: 2rem;
	line-height: calc(2rem - 4px);
	padding: 0 1rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 700;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #666666;
	border: solid 2px #666666;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-100 > li > a:hover {
	border-color: #0C8389 !important;
	color: #0C8389 !important;
}

.buttons-component.instance-7 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-13 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-75 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-67 > li > a.n02 {
	cursor: pointer;
}

.buttons-component.instance-53 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-82 > li > a.n02 {
	cursor: pointer;
}

.buttons-component.instance-77 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-51 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-68 > li > a.n02 {
	cursor: pointer;
}

.buttons-component.instance-54 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-108 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-64 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-83 > li > a.n02 {
	cursor: pointer;
}

.buttons-component.instance-78 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-69 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-55 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-86 > li > a.n02 {
	cursor: pointer;
}

.buttons-component.instance-79 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-89 > li > a.n02 {
	cursor: pointer;
}

.buttons-component.instance-96 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-104 {
	--flex-alignment: center;
	--alignment: center;
	gap: 1.5rem;
	flex-direction: column;
	flex-wrap: nowrap;
}

.buttons-component.instance-104:not(:first-child) {
	margin-top: 1.25rem !important;
}

.buttons-component.instance-104:not(:last-child) {
	margin-bottom: 1.25rem !important;
}

.buttons-component.instance-104 > li > a {
	display: inline-block;
	width: auto;
	height: 2.5rem;
	line-height: calc(2.5rem - 2px);
	padding: 0 1.25rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	font-weight: 700;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #FFFFFF;
	border: solid 1px #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-104 > li > a:hover {
	transform: scale(1.1125);
}

.buttons-component.instance-104 > li > a.n01 {
	color: #FFFFFF;
	border: solid 1px #FFFFFF;
	cursor: pointer;
}

.buttons-component.instance-70 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-42 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-85 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-85 > li > a.n02 {
	cursor: pointer;
}

.buttons-component.instance-80 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-47 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-103 {
	--flex-alignment: center;
	--alignment: center;
	gap: 1.5rem;
	flex-direction: column;
	flex-wrap: nowrap;
}

.buttons-component.instance-103:not(:first-child) {
	margin-top: 1.25rem !important;
}

.buttons-component.instance-103:not(:last-child) {
	margin-bottom: 1.25rem !important;
}

.buttons-component.instance-103 > li > a {
	display: inline-block;
	width: auto;
	height: 2.5rem;
	line-height: calc(2.5rem - 2px);
	padding: 0 1.25rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	font-weight: 700;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #FFFFFF;
	border: solid 1px #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-103 > li > a:hover {
	transform: scale(1.1125);
}

.buttons-component.instance-103 > li > a.n01 {
	color: #FFFFFF;
	border: solid 1px #FFFFFF;
	cursor: pointer;
}

.buttons-component.instance-114 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-117 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-120 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-93 > li > a.n02 {
	cursor: pointer;
}

.buttons-component.instance-94 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-122 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-123 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-109 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-110 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-111 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-112 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-45 {
	--flex-alignment: center;
	--alignment: center;
	gap: 1.5rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-45:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.instance-45:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.instance-45 > li > a {
	display: inline-block;
	width: auto;
	height: 2rem;
	line-height: calc(2rem - 4px);
	padding: 0 1rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 700;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #666666;
	border: solid 2px #666666;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-45 > li > a:hover {
	border-color: #0C8389 !important;
	color: #0C8389 !important;
}

.buttons-component.instance-46 {
	--flex-alignment: center;
	--alignment: center;
	gap: 1.5rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-46:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.instance-46:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.instance-46 > li > a {
	display: inline-block;
	width: auto;
	height: 2rem;
	line-height: calc(2rem - 4px);
	padding: 0 1rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 700;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #666666;
	border: solid 2px #666666;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-46 > li > a:hover {
	border-color: #0C8389 !important;
	color: #0C8389 !important;
}

.buttons-component.instance-90 {
	--flex-alignment: center;
	--alignment: center;
	gap: 1.5rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-90:not(:first-child) {
	margin-top: 2rem !important;
}

.buttons-component.instance-90:not(:last-child) {
	margin-bottom: 2rem !important;
}

.buttons-component.instance-90 > li > a {
	display: inline-block;
	width: auto;
	height: 2rem;
	line-height: calc(2rem - 4px);
	padding: 0 1rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 700;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #666666;
	border: solid 2px #666666;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-90 > li > a:hover {
	border-color: #0C8389 !important;
	color: #0C8389 !important;
}

.buttons-component.instance-61 {
	--flex-alignment: center;
	--alignment: center;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-61:not(:first-child) {
	margin-top: 1.25rem !important;
}

.buttons-component.instance-61:not(:last-child) {
	margin-bottom: 1.25rem !important;
}

.buttons-component.instance-61 > li > a {
	display: inline-block;
	width: auto;
	height: 3.75rem;
	line-height: calc(3.75rem - 2px);
	padding: 0 1.875rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 1.125em;
	font-weight: 700;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #FFFFFF;
	border: solid 1px #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-61 > li > a:hover {
	transform: scale(1.1125);
}

.buttons-component.instance-61 > li > a.n01 {
	color: #FFFFFF;
	border: solid 1px #FFFFFF;
}

.buttons-component.instance-125 {
	--flex-alignment: center;
	--alignment: center;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-125:not(:first-child) {
	margin-top: 1.25rem !important;
}

.buttons-component.instance-125:not(:last-child) {
	margin-bottom: 1.25rem !important;
}

.buttons-component.instance-125 > li > a {
	display: inline-block;
	width: auto;
	height: 2rem;
	line-height: calc(2rem - 2px);
	padding: 0 1rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 700;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #FFFFFF;
	border: solid 1px #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-125 > li > a:hover {
	transform: scale(1.1125);
}

.buttons-component.instance-66 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-106 {
	--flex-alignment: center;
	--alignment: center;
	gap: 1.5rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-106:not(:first-child) {
	margin-top: 1.25rem !important;
}

.buttons-component.instance-106:not(:last-child) {
	margin-bottom: 1.25rem !important;
}

.buttons-component.instance-106 > li > a {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #FFFFFF;
	border: solid 1px #FFFFFF;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-106 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-105 {
	--flex-alignment: center;
	--alignment: center;
	gap: 1.5rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-105:not(:first-child) {
	margin-top: 1.25rem !important;
}

.buttons-component.instance-105:not(:last-child) {
	margin-bottom: 1.25rem !important;
}

.buttons-component.instance-105 > li > a {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #FFFFFF;
	border: solid 1px #FFFFFF;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-105 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-60 {
	--flex-alignment: center;
	--alignment: center;
	gap: 1.5rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-60:not(:first-child) {
	margin-top: 1.25rem !important;
}

.buttons-component.instance-60:not(:last-child) {
	margin-bottom: 1.25rem !important;
}

.buttons-component.instance-60 > li > a {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #FFFFFF;
	border: solid 1px #FFFFFF;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-63 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-62 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-92 {
	--flex-alignment: center;
	--alignment: center;
	gap: 1.5rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-92:not(:first-child) {
	margin-top: 1.25rem !important;
}

.buttons-component.instance-92:not(:last-child) {
	margin-bottom: 1.25rem !important;
}

.buttons-component.instance-92 > li > a {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #FFFFFF;
	border: solid 1px #FFFFFF;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-88 {
	--flex-alignment: center;
	--alignment: center;
	gap: 1.5rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-88:not(:first-child) {
	margin-top: 1.5rem !important;
}

.buttons-component.instance-88:not(:last-child) {
	margin-bottom: 1.5rem !important;
}

.buttons-component.instance-88 > li > a {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #FFFFFF;
	border: solid 1px #FFFFFF;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-88 > li > a.n01 {
	cursor: pointer;
}

.buttons-component.instance-1 {
	--flex-alignment: center;
	--alignment: center;
	gap: 1.5rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-1:not(:first-child) {
	margin-top: 1.25rem !important;
}

.buttons-component.instance-1:not(:last-child) {
	margin-bottom: 1.25rem !important;
}

.buttons-component.instance-1 > li > a {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: calc(3.125rem - 2px);
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #FFFFFF;
	border: solid 1px #FFFFFF;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.list-component {
	display: block;
}

.list-component > ul, .list-component > ol {
	display: inline-block;
	max-width: 100%;
	text-align: var(--site-language-alignment);
	vertical-align: middle;
}

.list-component > ul > li, .list-component > ol > li {
	direction: var(--site-language-direction);
	display: flex;
	position: relative;
}

.list-component > ul > li::before, .list-component > ol > li::before {
	background-repeat: no-repeat;
	content: '';
	display: block;
	flex-grow: 0;
	flex-shrink: 0;
	font-variant: normal !important;
	letter-spacing: 0 !important;
	order: 1;
	position: relative;
}

.list-component > ul > li::after, .list-component > ol > li::after {
	content: '';
	display: block;
	flex-grow: 0;
	flex-shrink: 0;
	order: 2;
	pointer-events: none;
}

.list-component > ul > li > p, .list-component > ol > li > p {
	flex-grow: 1;
	flex-shrink: 1;
	order: 3;
}

.list-component > ul > li:first-child, .list-component > ol > li:first-child {
	margin-top: 0 !important;
}

.list-component.style-1:not(:first-child) {
	margin-top: 0.625rem !important;
}

.list-component.style-1:not(:last-child) {
	margin-bottom: 0.625rem !important;
}

.list-component.style-1 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 600;
}

.list-component.style-1 a {
	text-decoration: underline;
}

.list-component.style-1 a:hover {
	text-decoration: none;
}

.list-component.style-1 ul {
	width: 100%;
}

.list-component.style-1 ul > li {
	margin-top: 0.5rem;
}

.list-component.style-1 ul > li::after {
	width: 0.546875rem;
}

.list-component.style-1 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 1.3125rem;
	line-height: 1.3125rem;
	min-width: 0.615234375rem;
}

.list-component.instance-5:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-5:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-5 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.05rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-5 a {
	text-decoration: underline;
}

.list-component.instance-5 a:hover {
	text-decoration: none;
}

.list-component.instance-5 ul {
	width: 100%;
}

.list-component.instance-5 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-5 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-5 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-9:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-9:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-9 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.05rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-9 a {
	text-decoration: underline;
}

.list-component.instance-9 a:hover {
	text-decoration: none;
}

.list-component.instance-9 ul {
	width: 100%;
}

.list-component.instance-9 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-9 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-9 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-10:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-10:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-10 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.05rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-10 a {
	text-decoration: underline;
}

.list-component.instance-10 a:hover {
	text-decoration: none;
}

.list-component.instance-10 ul {
	width: 100%;
}

.list-component.instance-10 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-10 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-10 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-11:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-11:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-11 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-11 a {
	text-decoration: underline;
}

.list-component.instance-11 a:hover {
	text-decoration: none;
}

.list-component.instance-11 ul {
	width: 100%;
}

.list-component.instance-11 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-11 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-11 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-13:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-13:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-13 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-13 a {
	text-decoration: underline;
}

.list-component.instance-13 a:hover {
	text-decoration: none;
}

.list-component.instance-13 ul {
	width: 100%;
}

.list-component.instance-13 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-13 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-13 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-14:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-14:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-14 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-14 a {
	text-decoration: underline;
}

.list-component.instance-14 a:hover {
	text-decoration: none;
}

.list-component.instance-14 ul {
	width: 100%;
}

.list-component.instance-14 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-14 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-14 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-17:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-17:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-17 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-17 a {
	text-decoration: underline;
}

.list-component.instance-17 a:hover {
	text-decoration: none;
}

.list-component.instance-17 ul {
	width: 100%;
}

.list-component.instance-17 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-17 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-17 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-19:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-19:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-19 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.05rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-19 a {
	text-decoration: underline;
}

.list-component.instance-19 a:hover {
	text-decoration: none;
}

.list-component.instance-19 ul {
	width: 100%;
}

.list-component.instance-19 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-19 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-19 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-1:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-1:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-1 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-1 a {
	text-decoration: underline;
}

.list-component.instance-1 a:hover {
	text-decoration: none;
}

.list-component.instance-1 ul {
	width: 100%;
}

.list-component.instance-1 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-1 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-1 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-7:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-7:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-7 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-7 a {
	text-decoration: underline;
}

.list-component.instance-7 a:hover {
	text-decoration: none;
}

.list-component.instance-7 ul {
	width: 100%;
}

.list-component.instance-7 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-7 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-7 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-12:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-12:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-12 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-12 a {
	text-decoration: underline;
}

.list-component.instance-12 a:hover {
	text-decoration: none;
}

.list-component.instance-12 ul {
	width: 100%;
}

.list-component.instance-12 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-12 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-12 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-26:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-26:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-26 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-26 a {
	text-decoration: underline;
}

.list-component.instance-26 a:hover {
	text-decoration: none;
}

.list-component.instance-26 ul {
	width: 100%;
}

.list-component.instance-26 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-26 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-26 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-27:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-27:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-27 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-27 a {
	text-decoration: underline;
}

.list-component.instance-27 a:hover {
	text-decoration: none;
}

.list-component.instance-27 ul {
	width: 100%;
}

.list-component.instance-27 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-27 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-27 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-28:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-28:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-28 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-28 a {
	text-decoration: underline;
}

.list-component.instance-28 a:hover {
	text-decoration: none;
}

.list-component.instance-28 ul {
	width: 100%;
}

.list-component.instance-28 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-28 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-28 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-30:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-30:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-30 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-30 a {
	text-decoration: underline;
}

.list-component.instance-30 a:hover {
	text-decoration: none;
}

.list-component.instance-30 ul {
	width: 100%;
}

.list-component.instance-30 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-30 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-30 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-31:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-31:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-31 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-31 a {
	text-decoration: underline;
}

.list-component.instance-31 a:hover {
	text-decoration: none;
}

.list-component.instance-31 ul {
	width: 100%;
}

.list-component.instance-31 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-31 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-31 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-32:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-32:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-32 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-32 a {
	text-decoration: underline;
}

.list-component.instance-32 a:hover {
	text-decoration: none;
}

.list-component.instance-32 ul {
	width: 100%;
}

.list-component.instance-32 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-32 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-32 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-16:not(:first-child) {
	margin-top: 0.5rem !important;
}

.list-component.instance-16:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.list-component.instance-16 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-16 a {
	text-decoration: underline;
}

.list-component.instance-16 a:hover {
	text-decoration: none;
}

.list-component.instance-16 ul {
	width: 100%;
}

.list-component.instance-16 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-16 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-16 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-15:not(:first-child) {
	margin-top: 0.5rem !important;
}

.list-component.instance-15:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.list-component.instance-15 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-15 a {
	text-decoration: underline;
}

.list-component.instance-15 a:hover {
	text-decoration: none;
}

.list-component.instance-15 ul {
	width: 100%;
}

.list-component.instance-15 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-15 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-15 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-24:not(:first-child) {
	margin-top: 0.5rem !important;
}

.list-component.instance-24:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.list-component.instance-24 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-24 a {
	text-decoration: underline;
}

.list-component.instance-24 a:hover {
	text-decoration: none;
}

.list-component.instance-24 ul {
	width: 100%;
}

.list-component.instance-24 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-24 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-24 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-18:not(:first-child) {
	margin-top: 0.5rem !important;
}

.list-component.instance-18:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.list-component.instance-18 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-18 a {
	text-decoration: underline;
}

.list-component.instance-18 a:hover {
	text-decoration: none;
}

.list-component.instance-18 ul {
	width: 100%;
}

.list-component.instance-18 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-18 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-18 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-29:not(:first-child) {
	margin-top: 0.5rem !important;
}

.list-component.instance-29:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.list-component.instance-29 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-29 a {
	text-decoration: underline;
}

.list-component.instance-29 a:hover {
	text-decoration: none;
}

.list-component.instance-29 ul {
	width: 100%;
}

.list-component.instance-29 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-29 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-29 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-20:not(:first-child) {
	margin-top: 0.5rem !important;
}

.list-component.instance-20:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.list-component.instance-20 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-20 a {
	text-decoration: underline;
}

.list-component.instance-20 a:hover {
	text-decoration: none;
}

.list-component.instance-20 ul {
	width: 100%;
}

.list-component.instance-20 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-20 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-20 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-41:not(:first-child) {
	margin-top: 0.5rem !important;
}

.list-component.instance-41:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.list-component.instance-41 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-41 a {
	text-decoration: underline;
}

.list-component.instance-41 a:hover {
	text-decoration: none;
}

.list-component.instance-41 ul {
	width: 100%;
}

.list-component.instance-41 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-41 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-41 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-40:not(:first-child) {
	margin-top: 0.5rem !important;
}

.list-component.instance-40:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.list-component.instance-40 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-40 a {
	text-decoration: underline;
}

.list-component.instance-40 a:hover {
	text-decoration: none;
}

.list-component.instance-40 ul {
	width: 100%;
}

.list-component.instance-40 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-40 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-40 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-21:not(:first-child) {
	margin-top: 0.5rem !important;
}

.list-component.instance-21:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.list-component.instance-21 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-21 a {
	text-decoration: underline;
}

.list-component.instance-21 a:hover {
	text-decoration: none;
}

.list-component.instance-21 ul {
	width: 100%;
}

.list-component.instance-21 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-21 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-21 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-43:not(:first-child) {
	margin-top: 0.5rem !important;
}

.list-component.instance-43:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.list-component.instance-43 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-43 a {
	text-decoration: underline;
}

.list-component.instance-43 a:hover {
	text-decoration: none;
}

.list-component.instance-43 ul {
	width: 100%;
}

.list-component.instance-43 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-43 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-43 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-22:not(:first-child) {
	margin-top: 0.5rem !important;
}

.list-component.instance-22:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.list-component.instance-22 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-22 a {
	text-decoration: underline;
}

.list-component.instance-22 a:hover {
	text-decoration: none;
}

.list-component.instance-22 ul {
	width: 100%;
}

.list-component.instance-22 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-22 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-22 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-23:not(:first-child) {
	margin-top: 0.5rem !important;
}

.list-component.instance-23:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.list-component.instance-23 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-23 a {
	text-decoration: underline;
}

.list-component.instance-23 a:hover {
	text-decoration: none;
}

.list-component.instance-23 ul {
	width: 100%;
}

.list-component.instance-23 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-23 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-23 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-42:not(:first-child) {
	margin-top: 0.5rem !important;
}

.list-component.instance-42:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.list-component.instance-42 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-42 a {
	text-decoration: underline;
}

.list-component.instance-42 a:hover {
	text-decoration: none;
}

.list-component.instance-42 ul {
	width: 100%;
}

.list-component.instance-42 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-42 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-42 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-33:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-33:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-33 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-33 a {
	text-decoration: underline;
}

.list-component.instance-33 a:hover {
	text-decoration: none;
}

.list-component.instance-33 ul {
	width: 100%;
}

.list-component.instance-33 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-33 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-33 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-34:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-34:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-34 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.05rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-34 a {
	text-decoration: underline;
}

.list-component.instance-34 a:hover {
	text-decoration: none;
}

.list-component.instance-34 ul {
	width: 100%;
}

.list-component.instance-34 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-34 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-34 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-35:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-35:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-35 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-35 a {
	text-decoration: underline;
}

.list-component.instance-35 a:hover {
	text-decoration: none;
}

.list-component.instance-35 ul {
	width: 100%;
}

.list-component.instance-35 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-35 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-35 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-36:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-36:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-36 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.05rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-36 a {
	text-decoration: underline;
}

.list-component.instance-36 a:hover {
	text-decoration: none;
}

.list-component.instance-36 ul {
	width: 100%;
}

.list-component.instance-36 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-36 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-36 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-37:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-37:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-37 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-37 a {
	text-decoration: underline;
}

.list-component.instance-37 a:hover {
	text-decoration: none;
}

.list-component.instance-37 ul {
	width: 100%;
}

.list-component.instance-37 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-37 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-37 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-38:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-38:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-38 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.05rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-38 a {
	text-decoration: underline;
}

.list-component.instance-38 a:hover {
	text-decoration: none;
}

.list-component.instance-38 ul {
	width: 100%;
}

.list-component.instance-38 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-38 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-38 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-8:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-8:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-8 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-8 a {
	text-decoration: underline;
}

.list-component.instance-8 a:hover {
	text-decoration: none;
}

.list-component.instance-8 ul {
	width: 100%;
}

.list-component.instance-8 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-8 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-8 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-2:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-2:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-2 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-2 a {
	text-decoration: underline;
}

.list-component.instance-2 a:hover {
	text-decoration: none;
}

.list-component.instance-2 ul {
	width: 100%;
}

.list-component.instance-2 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-2 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-2 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.list-component.instance-6:not(:first-child) {
	margin-top: 0.25rem !important;
}

.list-component.instance-6:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.list-component.instance-6 {
	color: #8A8C96;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.05rem;
	font-size: 0.875em;
	line-height: 1;
	font-weight: 600;
}

.list-component.instance-6 a {
	text-decoration: underline;
}

.list-component.instance-6 a:hover {
	text-decoration: none;
}

.list-component.instance-6 ul {
	width: 100%;
}

.list-component.instance-6 ul > li {
	margin-top: 0.5rem;
}

.list-component.instance-6 ul > li::after {
	width: 0.546875rem;
}

.list-component.instance-6 ul > li::before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%238A8C96%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.41015625rem;
}

.form-component {
	display: flex;
	justify-content: var(--flex-alignment);
}

.form-component > .inner {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	max-width: 100%;
}

.form-component label {
	direction: var(--site-language-direction);
	display: block;
}

.form-component .field[data-type="label"] + div {
	margin-top: 0 !important;
}

.form-component .field button {
	align-items: center;
	background-color: transparent;
	border: 0;
	cursor: pointer;
	display: flex;
	justify-content: center;
	position: absolute;
}

.form-component .field button > svg {
	height: 50%;
	min-width: 100%;
}

.form-component input[type="text"], .form-component input[type="email"], .form-component input[type="tel"], .form-component input[type="number"], .form-component textarea, .form-component select, .form-component .file, .form-component .date {
	background-color: transparent;
	border: 0;
	direction: var(--site-language-direction);
	display: block;
	outline: 0;
	text-align: var(--site-language-alignment);
	width: 100%;
}

.form-component input[type="tel"] {
	-webkit-appearance: none;
}

.form-component textarea {
	height: 10rem;
	line-height: normal;
}

.form-component select {
	background-repeat: no-repeat;
	background-size: 1rem;
	text-overflow: ellipsis;
	-webkit-appearance: none;
}

.form-component select option {
	background-color: white;
	color: black;
}

.form-component select::-ms-expand {
	display: none;
}

.form-component p {
	display: block;
}

.form-component input[type="checkbox"] {
	-webkit-appearance: none;
	display: block;
	float: left;
	margin-right: -2rem;
	opacity: 0;
	width: 1rem;
	z-index: -1;
}

.form-component input[type="checkbox"] + label {
	align-items: center;
	display: inline-flex;
	line-height: 1.6;
	text-align: var(--site-language-alignment);
}

.form-component input[type="checkbox"] + label::before {
	background-position: center;
	background-repeat: no-repeat;
	content: '';
	cursor: pointer;
	display: inline-block;
	flex-grow: 0;
	flex-shrink: 0;
	vertical-align: middle;
}

.form-component input[type="number"] {
	-webkit-appearance: none;
	-moz-appearance: textfield;
}

.form-component input[type="number"]::-webkit-inner-spin-button, .form-component input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
}

.form-component .number {
	position: relative;
}

.form-component .number > input[type="number"] {
	text-align: center;
}

.form-component .field .number > button > svg {
	height: 40%;
}

.form-component .file {
	position: relative;
}

.form-component .file > input[type="file"] {
	cursor: pointer;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.form-component .file[data-filename]::before {
	background-repeat: no-repeat;
	content: attr(data-filename);
	display: block;
	height: 100%;
	overflow: hidden;
	position: absolute;
	text-overflow: ellipsis;
	top: 0;
	white-space: nowrap;
}

.form-component .file[data-filename=""]::before {
	background-image: none !important;
	content: attr(data-placeholder);
	padding-left: 0 !important;
}

.form-component .field .file > button > svg {
	height: 53%;
}

.form-component .date {
	overflow: hidden;
	position: relative;
}

.form-component .date input[type="date"] {
	cursor: pointer;
	display: block;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100vw;
}

.form-component .date[data-value]::before {
	background-repeat: no-repeat;
	display: block;
	height: 100%;
	overflow: hidden;
	position: absolute;
	text-overflow: ellipsis;
	top: 0;
	white-space: nowrap;
}

.form-component .date:not([data-value=""])::before {
	content: attr(data-value);
}

.form-component .date[data-value=""]::before {
	content: attr(data-placeholder);
}

.form-component .field .date > button > svg {
	height: 60%;
}

.form-component .actions {
	max-width: 100%;
}

.form-component .actions button {
	align-items: center;
	background-color: transparent;
	border: 0;
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	max-width: 100%;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
}

.form-component .actions button:disabled {
	cursor: default;
	opacity: 0.35;
	pointer-events: none;
}

@keyframes button-spinner {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.form-component.instance-8 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-8:not(:first-child) {
	margin-top: 0.75rem !important;
}

.form-component.instance-8:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

.form-component.instance-8 > .inner > * {
	margin: 0.75rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-8 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-8 > .inner {
	width: 25rem;
}

.form-component.instance-8 label:first-child {
	margin: 0.25rem 0 0.5625rem 0;
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-weight: 600;
	color: #666666;
}

.form-component.instance-8 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-8 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-8 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-8 input[type="text"], .form-component.instance-8 input[type="email"], .form-component.instance-8 input[type="tel"], .form-component.instance-8 input[type="number"], .form-component.instance-8 textarea, .form-component.instance-8 select, .form-component.instance-8 .file, .form-component.instance-8 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-8 input[type="text"]:focus, .form-component.instance-8 input[type="email"]:focus, .form-component.instance-8 input[type="tel"]:focus, .form-component.instance-8 input[type="number"]:focus, .form-component.instance-8 textarea:focus, .form-component.instance-8 select:focus, .form-component.instance-8 .file:focus, .form-component.instance-8 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-8 input[type="text"], .form-component.instance-8 input[type="email"], .form-component.instance-8 input[type="tel"], .form-component.instance-8 input[type="number"], .form-component.instance-8 select, .form-component.instance-8 .file, .form-component.instance-8 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-8 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-8 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-8 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-8 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-8 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-8 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-8 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-8 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-8 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-8 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-8 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-8 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-8 input[type="checkbox"] + label, .form-component.instance-8 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	color: #60626B;
}

.form-component.instance-8 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-8 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-8 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-8 > .inner .actions {
	margin: 1.03125rem 0 0 0;
}

.form-component.instance-8 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-8 .actions button.waiting {
	color: transparent;
}

.form-component.instance-8 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-8 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-8 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-8 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-8 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-8 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-8 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-8 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-8 .actions button {
	display: none;
}

.form-component.instance-9 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-9:not(:first-child) {
	margin-top: 0rem !important;
}

.form-component.instance-9:not(:last-child) {
	margin-bottom: 0rem !important;
}

.form-component.instance-9 > .inner > * {
	margin: 1rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-9 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-9 > .inner {
	width: 25rem;
}

.form-component.instance-9 label:first-child {
	margin: 0.25rem 0 0.75rem 0;
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #FFFFFF;
}

.form-component.instance-9 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.16rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-9 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-9 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-9 input[type="text"], .form-component.instance-9 input[type="email"], .form-component.instance-9 input[type="tel"], .form-component.instance-9 input[type="number"], .form-component.instance-9 textarea, .form-component.instance-9 select, .form-component.instance-9 .file, .form-component.instance-9 .date {
	font-size: 0.875em;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-weight: 500;
	border-radius: 0.25rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-9 input[type="text"]:focus, .form-component.instance-9 input[type="email"]:focus, .form-component.instance-9 input[type="tel"]:focus, .form-component.instance-9 input[type="number"]:focus, .form-component.instance-9 textarea:focus, .form-component.instance-9 select:focus, .form-component.instance-9 .file:focus, .form-component.instance-9 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-9 input[type="text"], .form-component.instance-9 input[type="email"], .form-component.instance-9 input[type="tel"], .form-component.instance-9 input[type="number"], .form-component.instance-9 select, .form-component.instance-9 .file, .form-component.instance-9 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-9 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-9 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-9 input[type="checkbox"] + label::before {
	border-radius: 0.25rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-9 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-9 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-9 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-9 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-9 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-9 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-9 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-9 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-9 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-9 input[type="checkbox"] + label, .form-component.instance-9 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-weight: 500;
	color: #60626B;
}

.form-component.instance-9 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-9 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-9 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-9 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-9 .actions button.waiting {
	color: transparent;
}

.form-component.instance-9 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-9 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-9 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-9 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-9 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-9 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-9 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-9 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-9 .actions button {
	display: none;
}

.form-component.instance-4 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-4:not(:first-child) {
	margin-top: 0.75rem !important;
}

.form-component.instance-4:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

.form-component.instance-4 > .inner > * {
	margin: 0.75rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-4 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-4 > .inner {
	width: 25rem;
}

.form-component.instance-4 label:first-child {
	margin: 0.25rem 0 0.5625rem 0;
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-weight: 500;
	color: #666666;
}

.form-component.instance-4 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-4 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-4 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-4 input[type="text"], .form-component.instance-4 input[type="email"], .form-component.instance-4 input[type="tel"], .form-component.instance-4 input[type="number"], .form-component.instance-4 textarea, .form-component.instance-4 select, .form-component.instance-4 .file, .form-component.instance-4 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-4 input[type="text"]:focus, .form-component.instance-4 input[type="email"]:focus, .form-component.instance-4 input[type="tel"]:focus, .form-component.instance-4 input[type="number"]:focus, .form-component.instance-4 textarea:focus, .form-component.instance-4 select:focus, .form-component.instance-4 .file:focus, .form-component.instance-4 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-4 input[type="text"], .form-component.instance-4 input[type="email"], .form-component.instance-4 input[type="tel"], .form-component.instance-4 input[type="number"], .form-component.instance-4 select, .form-component.instance-4 .file, .form-component.instance-4 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-4 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-4 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-4 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-4 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-4 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-4 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-4 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-4 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-4 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-4 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-4 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-4 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-4 input[type="checkbox"] + label, .form-component.instance-4 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	color: #60626B;
}

.form-component.instance-4 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-4 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-4 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-4 > .inner .actions {
	margin: 1.03125rem 0 0 0;
}

.form-component.instance-4 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-4 .actions button.waiting {
	color: transparent;
}

.form-component.instance-4 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-4 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-4 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-4 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-4 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-4 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-4 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-4 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-4 .actions button {
	display: none;
}

.form-component.instance-6 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-6:not(:first-child) {
	margin-top: 0.375rem !important;
}

.form-component.instance-6:not(:last-child) {
	margin-bottom: 0.375rem !important;
}

.form-component.instance-6 > .inner > * {
	margin: 0.75rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-6 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-6 > .inner {
	width: 15rem;
}

.form-component.instance-6 label:first-child {
	margin: 0.25rem 0 0.5625rem 0;
	text-align: left;
	font-size: 0.875em;
	line-height: 0.75;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-weight: 600;
	color: #0C8389;
}

.form-component.instance-6 .field button {
	background-size: 0.5rem;
	height: calc(1rem - 2px);
	width: calc(1rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-6 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-6 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-6 input[type="text"], .form-component.instance-6 input[type="email"], .form-component.instance-6 input[type="tel"], .form-component.instance-6 input[type="number"], .form-component.instance-6 textarea, .form-component.instance-6 select, .form-component.instance-6 .file, .form-component.instance-6 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-6 input[type="text"]:focus, .form-component.instance-6 input[type="email"]:focus, .form-component.instance-6 input[type="tel"]:focus, .form-component.instance-6 input[type="number"]:focus, .form-component.instance-6 textarea:focus, .form-component.instance-6 select:focus, .form-component.instance-6 .file:focus, .form-component.instance-6 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-6 input[type="text"], .form-component.instance-6 input[type="email"], .form-component.instance-6 input[type="tel"], .form-component.instance-6 input[type="number"], .form-component.instance-6 select, .form-component.instance-6 .file, .form-component.instance-6 .date {
	height: 1.25rem;
	padding: 0 0.4375rem;
	line-height: calc(1.25rem - 2px);
}

.form-component.instance-6 textarea {
	padding: 0.4375rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.175rem;
}

.form-component.instance-6 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.4375rem) center;
	padding-right: 1.6875rem;
}

.form-component.instance-6 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.53125rem;
	height: 0.9375rem;
	width: 0.9375rem;
	margin-right: 0.875rem;
}

.form-component.instance-6 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-6 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-6 .number > input[type="number"] {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.form-component.instance-6 .number > button.decrement {
	bottom: calc(0.125rem + 1px);
	left: calc(0.125rem + 1px);
}

.form-component.instance-6 .number > button.increment {
	bottom: calc(0.125rem + 1px);
	right: calc(0.125rem + 1px);
}

.form-component.instance-6 .file::before {
	width: calc(100% - 1.6875rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-6 .file > button {
	bottom: 0.125rem;
	right: 0.125rem;
}

.form-component.instance-6 .date::before {
	width: calc(100% - 1.6875rem);
}

.form-component.instance-6 .date > button {
	bottom: 0.125rem;
	right: 0.125rem;
}

.form-component.instance-6 input[type="checkbox"] + label, .form-component.instance-6 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	color: #60626B;
}

.form-component.instance-6 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-6 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-6 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-6 > .inner .actions {
	margin: 1.03125rem 0 0 0;
}

.form-component.instance-6 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-6 .actions button.waiting {
	color: transparent;
}

.form-component.instance-6 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-6 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-6 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-6 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-6 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-6 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-6 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-6 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-6 .actions button {
	display: none;
}

.form-component.instance-5 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-5:not(:first-child) {
	margin-top: 0.375rem !important;
}

.form-component.instance-5:not(:last-child) {
	margin-bottom: 0.375rem !important;
}

.form-component.instance-5 > .inner > * {
	margin: 0.75rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-5 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-5 > .inner {
	width: 15rem;
}

.form-component.instance-5 label:first-child {
	margin: 0.25rem 0 0.5625rem 0;
	text-align: left;
	font-size: 0.875em;
	line-height: 0.75;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-weight: 600;
	color: #0C8389;
}

.form-component.instance-5 .field button {
	background-size: 0.5rem;
	height: calc(1rem - 2px);
	width: calc(1rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-5 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-5 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-5 input[type="text"], .form-component.instance-5 input[type="email"], .form-component.instance-5 input[type="tel"], .form-component.instance-5 input[type="number"], .form-component.instance-5 textarea, .form-component.instance-5 select, .form-component.instance-5 .file, .form-component.instance-5 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-5 input[type="text"]:focus, .form-component.instance-5 input[type="email"]:focus, .form-component.instance-5 input[type="tel"]:focus, .form-component.instance-5 input[type="number"]:focus, .form-component.instance-5 textarea:focus, .form-component.instance-5 select:focus, .form-component.instance-5 .file:focus, .form-component.instance-5 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-5 input[type="text"], .form-component.instance-5 input[type="email"], .form-component.instance-5 input[type="tel"], .form-component.instance-5 input[type="number"], .form-component.instance-5 select, .form-component.instance-5 .file, .form-component.instance-5 .date {
	height: 1.25rem;
	padding: 0 0.4375rem;
	line-height: calc(1.25rem - 2px);
}

.form-component.instance-5 textarea {
	padding: 0.4375rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.175rem;
}

.form-component.instance-5 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.4375rem) center;
	padding-right: 1.6875rem;
}

.form-component.instance-5 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.53125rem;
	height: 0.9375rem;
	width: 0.9375rem;
	margin-right: 0.875rem;
}

.form-component.instance-5 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-5 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-5 .number > input[type="number"] {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.form-component.instance-5 .number > button.decrement {
	bottom: calc(0.125rem + 1px);
	left: calc(0.125rem + 1px);
}

.form-component.instance-5 .number > button.increment {
	bottom: calc(0.125rem + 1px);
	right: calc(0.125rem + 1px);
}

.form-component.instance-5 .file::before {
	width: calc(100% - 1.6875rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-5 .file > button {
	bottom: 0.125rem;
	right: 0.125rem;
}

.form-component.instance-5 .date::before {
	width: calc(100% - 1.6875rem);
}

.form-component.instance-5 .date > button {
	bottom: 0.125rem;
	right: 0.125rem;
}

.form-component.instance-5 input[type="checkbox"] + label, .form-component.instance-5 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	color: #60626B;
}

.form-component.instance-5 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-5 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-5 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-5 > .inner .actions {
	margin: 1.03125rem 0 0 0;
}

.form-component.instance-5 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-5 .actions button.waiting {
	color: transparent;
}

.form-component.instance-5 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-5 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-5 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-5 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-5 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-5 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-5 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-5 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-5 .actions button {
	display: none;
}

.form-component.instance-3 {
	justify-content: center;
	text-align: center;
}

.form-component.instance-3:not(:first-child) {
	margin-top: 0rem !important;
}

.form-component.instance-3:not(:last-child) {
	margin-bottom: 0rem !important;
}

.form-component.instance-3 > .inner > * {
	margin: 0 0 0 0.75rem;
}

.form-component.instance-3 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-3 > .inner {
	width: 45rem;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-end;
}

.form-component.instance-3 label:first-child {
	margin: 0.25rem 0 0.5625rem 0;
	text-align: center;
	font-size: 0.75em;
	line-height: 0.75;
	font-family: 'Source Sans Pro', sans-serif;
	letter-spacing: -0.025rem;
	font-weight: 400;
	color: #666666;
}

.form-component.instance-3 .field button {
	background-size: 0.5rem;
	height: calc(1rem - 2px);
	width: calc(1rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-3 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-3 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-3 input[type="text"], .form-component.instance-3 input[type="email"], .form-component.instance-3 input[type="tel"], .form-component.instance-3 input[type="number"], .form-component.instance-3 textarea, .form-component.instance-3 select, .form-component.instance-3 .file, .form-component.instance-3 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-3 input[type="text"]:focus, .form-component.instance-3 input[type="email"]:focus, .form-component.instance-3 input[type="tel"]:focus, .form-component.instance-3 input[type="number"]:focus, .form-component.instance-3 textarea:focus, .form-component.instance-3 select:focus, .form-component.instance-3 .file:focus, .form-component.instance-3 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-3 input[type="text"], .form-component.instance-3 input[type="email"], .form-component.instance-3 input[type="tel"], .form-component.instance-3 input[type="number"], .form-component.instance-3 select, .form-component.instance-3 .file, .form-component.instance-3 .date {
	height: 1.25rem;
	padding: 0 0.4375rem;
	line-height: calc(1.25rem - 2px);
}

.form-component.instance-3 textarea {
	padding: 0.4375rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.175rem;
}

.form-component.instance-3 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.4375rem) center;
	padding-right: 1.6875rem;
}

.form-component.instance-3 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.53125rem;
	height: 0.9375rem;
	width: 0.9375rem;
	margin-right: 0.875rem;
}

.form-component.instance-3 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-3 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-3 .number > input[type="number"] {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.form-component.instance-3 .number > button.decrement {
	bottom: calc(0.125rem + 1px);
	left: calc(0.125rem + 1px);
}

.form-component.instance-3 .number > button.increment {
	bottom: calc(0.125rem + 1px);
	right: calc(0.125rem + 1px);
}

.form-component.instance-3 .file::before {
	width: calc(100% - 1.6875rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-3 .file > button {
	bottom: 0.125rem;
	right: 0.125rem;
}

.form-component.instance-3 .date::before {
	width: calc(100% - 1.6875rem);
}

.form-component.instance-3 .date > button {
	bottom: 0.125rem;
	right: 0.125rem;
}

.form-component.instance-3 input[type="checkbox"] + label, .form-component.instance-3 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	color: #60626B;
}

.form-component.instance-3 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-3 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-3 > .inner .field {
	flex-grow: 1;
	flex-shrink: 1;
	width: 100%;
}

.form-component.instance-3 > .inner .actions {
	flex-grow: 0;
	flex-shrink: 0;
}

.form-component.instance-3 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-3 .actions button.waiting {
	color: transparent;
}

.form-component.instance-3 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-3 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-3 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-3 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-3 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-3 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-3 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-3 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-3 .actions button {
	display: none;
}

.form-component.instance-7 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-7:not(:first-child) {
	margin-top: 0rem !important;
}

.form-component.instance-7:not(:last-child) {
	margin-bottom: 0rem !important;
}

.form-component.instance-7 > .inner > * {
	margin: 0.375rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-7 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-7 > .inner {
	width: 28rem;
}

.form-component.instance-7 label:first-child {
	margin: 0.25rem 0 0.28125rem 0;
	font-size: 0.875em;
	line-height: 1;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-weight: 500;
	color: #666666;
}

.form-component.instance-7 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-7 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-7 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-7 input[type="text"], .form-component.instance-7 input[type="email"], .form-component.instance-7 input[type="tel"], .form-component.instance-7 input[type="number"], .form-component.instance-7 textarea, .form-component.instance-7 select, .form-component.instance-7 .file, .form-component.instance-7 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-7 input[type="text"]:focus, .form-component.instance-7 input[type="email"]:focus, .form-component.instance-7 input[type="tel"]:focus, .form-component.instance-7 input[type="number"]:focus, .form-component.instance-7 textarea:focus, .form-component.instance-7 select:focus, .form-component.instance-7 .file:focus, .form-component.instance-7 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-7 input[type="text"], .form-component.instance-7 input[type="email"], .form-component.instance-7 input[type="tel"], .form-component.instance-7 input[type="number"], .form-component.instance-7 select, .form-component.instance-7 .file, .form-component.instance-7 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-7 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-7 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-7 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-7 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-7 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-7 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-7 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-7 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-7 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-7 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-7 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-7 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-7 input[type="checkbox"] + label, .form-component.instance-7 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	color: #60626B;
}

.form-component.instance-7 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-7 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-7 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-7 > .inner .actions {
	margin: 0.515625rem 0 0 0;
}

.form-component.instance-7 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-7 .actions button.waiting {
	color: transparent;
}

.form-component.instance-7 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-7 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-7 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-7 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-7 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-7 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-7 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-7 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-7 .actions button {
	display: none;
}

.form-component.instance-27 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-27:not(:first-child) {
	margin-top: 0rem !important;
}

.form-component.instance-27:not(:last-child) {
	margin-bottom: 0rem !important;
}

.form-component.instance-27 > .inner > * {
	margin: 0.375rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-27 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-27 > .inner {
	width: 28rem;
}

.form-component.instance-27 label:first-child {
	margin: 0.25rem 0 0.28125rem 0;
	font-size: 0.875em;
	line-height: 1;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-weight: 500;
	color: #666666;
}

.form-component.instance-27 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-27 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-27 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-27 input[type="text"], .form-component.instance-27 input[type="email"], .form-component.instance-27 input[type="tel"], .form-component.instance-27 input[type="number"], .form-component.instance-27 textarea, .form-component.instance-27 select, .form-component.instance-27 .file, .form-component.instance-27 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-27 input[type="text"]:focus, .form-component.instance-27 input[type="email"]:focus, .form-component.instance-27 input[type="tel"]:focus, .form-component.instance-27 input[type="number"]:focus, .form-component.instance-27 textarea:focus, .form-component.instance-27 select:focus, .form-component.instance-27 .file:focus, .form-component.instance-27 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-27 input[type="text"], .form-component.instance-27 input[type="email"], .form-component.instance-27 input[type="tel"], .form-component.instance-27 input[type="number"], .form-component.instance-27 select, .form-component.instance-27 .file, .form-component.instance-27 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-27 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-27 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-27 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-27 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-27 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-27 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-27 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-27 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-27 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-27 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-27 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-27 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-27 input[type="checkbox"] + label, .form-component.instance-27 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	color: #60626B;
}

.form-component.instance-27 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-27 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-27 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-27 > .inner .actions {
	margin: 0.515625rem 0 0 0;
}

.form-component.instance-27 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-27 .actions button.waiting {
	color: transparent;
}

.form-component.instance-27 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-27 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-27 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-27 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-27 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-27 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-27 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-27 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-27 .actions button {
	display: none;
}

.form-component.instance-28 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-28:not(:first-child) {
	margin-top: 0rem !important;
}

.form-component.instance-28:not(:last-child) {
	margin-bottom: 0rem !important;
}

.form-component.instance-28 > .inner > * {
	margin: 0.375rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-28 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-28 > .inner {
	width: 28rem;
}

.form-component.instance-28 label:first-child {
	margin: 0.25rem 0 0.28125rem 0;
	font-size: 0.875em;
	line-height: 1;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-weight: 500;
	color: #666666;
}

.form-component.instance-28 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-28 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-28 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-28 input[type="text"], .form-component.instance-28 input[type="email"], .form-component.instance-28 input[type="tel"], .form-component.instance-28 input[type="number"], .form-component.instance-28 textarea, .form-component.instance-28 select, .form-component.instance-28 .file, .form-component.instance-28 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-28 input[type="text"]:focus, .form-component.instance-28 input[type="email"]:focus, .form-component.instance-28 input[type="tel"]:focus, .form-component.instance-28 input[type="number"]:focus, .form-component.instance-28 textarea:focus, .form-component.instance-28 select:focus, .form-component.instance-28 .file:focus, .form-component.instance-28 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-28 input[type="text"], .form-component.instance-28 input[type="email"], .form-component.instance-28 input[type="tel"], .form-component.instance-28 input[type="number"], .form-component.instance-28 select, .form-component.instance-28 .file, .form-component.instance-28 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-28 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-28 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-28 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-28 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-28 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-28 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-28 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-28 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-28 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-28 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-28 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-28 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-28 input[type="checkbox"] + label, .form-component.instance-28 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	color: #60626B;
}

.form-component.instance-28 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-28 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-28 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-28 > .inner .actions {
	margin: 0.515625rem 0 0 0;
}

.form-component.instance-28 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-28 .actions button.waiting {
	color: transparent;
}

.form-component.instance-28 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-28 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-28 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-28 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-28 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-28 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-28 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-28 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-28 .actions button {
	display: none;
}

.form-component.instance-29 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-29:not(:first-child) {
	margin-top: 0rem !important;
}

.form-component.instance-29:not(:last-child) {
	margin-bottom: 0rem !important;
}

.form-component.instance-29 > .inner > * {
	margin: 0.375rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-29 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-29 > .inner {
	width: 28rem;
}

.form-component.instance-29 label:first-child {
	margin: 0.25rem 0 0.28125rem 0;
	font-size: 0.875em;
	line-height: 1;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-weight: 500;
	color: #666666;
}

.form-component.instance-29 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-29 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-29 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-29 input[type="text"], .form-component.instance-29 input[type="email"], .form-component.instance-29 input[type="tel"], .form-component.instance-29 input[type="number"], .form-component.instance-29 textarea, .form-component.instance-29 select, .form-component.instance-29 .file, .form-component.instance-29 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-29 input[type="text"]:focus, .form-component.instance-29 input[type="email"]:focus, .form-component.instance-29 input[type="tel"]:focus, .form-component.instance-29 input[type="number"]:focus, .form-component.instance-29 textarea:focus, .form-component.instance-29 select:focus, .form-component.instance-29 .file:focus, .form-component.instance-29 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-29 input[type="text"], .form-component.instance-29 input[type="email"], .form-component.instance-29 input[type="tel"], .form-component.instance-29 input[type="number"], .form-component.instance-29 select, .form-component.instance-29 .file, .form-component.instance-29 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-29 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-29 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-29 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-29 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-29 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-29 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-29 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-29 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-29 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-29 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-29 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-29 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-29 input[type="checkbox"] + label, .form-component.instance-29 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	color: #60626B;
}

.form-component.instance-29 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-29 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-29 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-29 > .inner .actions {
	margin: 0.515625rem 0 0 0;
}

.form-component.instance-29 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-29 .actions button.waiting {
	color: transparent;
}

.form-component.instance-29 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-29 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-29 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-29 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-29 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-29 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-29 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-29 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-29 .actions button {
	display: none;
}

.form-component.instance-12 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-12:not(:first-child) {
	margin-top: 0rem !important;
}

.form-component.instance-12:not(:last-child) {
	margin-bottom: 0rem !important;
}

.form-component.instance-12 > .inner > * {
	margin: 1rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-12 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-12 > .inner {
	width: 25rem;
}

.form-component.instance-12 label:first-child {
	margin: 0.25rem 0 0.75rem 0;
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #FFFFFF;
}

.form-component.instance-12 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.16rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-12 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-12 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-12 input[type="text"], .form-component.instance-12 input[type="email"], .form-component.instance-12 input[type="tel"], .form-component.instance-12 input[type="number"], .form-component.instance-12 textarea, .form-component.instance-12 select, .form-component.instance-12 .file, .form-component.instance-12 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	letter-spacing: -0.025rem;
	font-weight: 400;
	border-radius: 0.25rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-12 input[type="text"]:focus, .form-component.instance-12 input[type="email"]:focus, .form-component.instance-12 input[type="tel"]:focus, .form-component.instance-12 input[type="number"]:focus, .form-component.instance-12 textarea:focus, .form-component.instance-12 select:focus, .form-component.instance-12 .file:focus, .form-component.instance-12 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-12 input[type="text"], .form-component.instance-12 input[type="email"], .form-component.instance-12 input[type="tel"], .form-component.instance-12 input[type="number"], .form-component.instance-12 select, .form-component.instance-12 .file, .form-component.instance-12 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-12 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-12 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-12 input[type="checkbox"] + label::before {
	border-radius: 0.25rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-12 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-12 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-12 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-12 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-12 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-12 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-12 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-12 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-12 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-12 input[type="checkbox"] + label, .form-component.instance-12 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	letter-spacing: -0.025rem;
	font-weight: 400;
	color: #60626B;
}

.form-component.instance-12 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-12 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-12 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-12 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-12 .actions button.waiting {
	color: transparent;
}

.form-component.instance-12 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-12 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-12 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-12 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-12 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-12 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-12 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-12 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-12 .actions button {
	display: none;
}

.form-component.instance-20 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-20:not(:first-child) {
	margin-top: 0.25rem !important;
}

.form-component.instance-20:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.form-component.instance-20 > .inner > * {
	margin: 1rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-20 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-20 > .inner {
	width: 25rem;
}

.form-component.instance-20 label:first-child {
	margin: 0.25rem 0 0.75rem 0;
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #FFFFFF;
}

.form-component.instance-20 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.16rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-20 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-20 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-20 input[type="text"], .form-component.instance-20 input[type="email"], .form-component.instance-20 input[type="tel"], .form-component.instance-20 input[type="number"], .form-component.instance-20 textarea, .form-component.instance-20 select, .form-component.instance-20 .file, .form-component.instance-20 .date {
	font-size: 0.875em;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-weight: 500;
	border-radius: 0.25rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-20 input[type="text"]:focus, .form-component.instance-20 input[type="email"]:focus, .form-component.instance-20 input[type="tel"]:focus, .form-component.instance-20 input[type="number"]:focus, .form-component.instance-20 textarea:focus, .form-component.instance-20 select:focus, .form-component.instance-20 .file:focus, .form-component.instance-20 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-20 input[type="text"], .form-component.instance-20 input[type="email"], .form-component.instance-20 input[type="tel"], .form-component.instance-20 input[type="number"], .form-component.instance-20 select, .form-component.instance-20 .file, .form-component.instance-20 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-20 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-20 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-20 input[type="checkbox"] + label::before {
	border-radius: 0.25rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-20 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-20 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-20 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-20 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-20 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-20 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-20 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-20 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-20 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-20 input[type="checkbox"] + label, .form-component.instance-20 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-weight: 500;
	color: #60626B;
}

.form-component.instance-20 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-20 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-20 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-20 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-20 .actions button.waiting {
	color: transparent;
}

.form-component.instance-20 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-20 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-20 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-20 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-20 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-20 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-20 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-20 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-20 .actions button {
	display: none;
}

.form-component.instance-14 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-14:not(:first-child) {
	margin-top: 0rem !important;
}

.form-component.instance-14:not(:last-child) {
	margin-bottom: 0rem !important;
}

.form-component.instance-14 > .inner > * {
	margin: 1rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-14 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-14 > .inner {
	width: 25rem;
}

.form-component.instance-14 label:first-child {
	margin: 0.25rem 0 0.75rem 0;
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #FFFFFF;
}

.form-component.instance-14 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.16rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-14 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-14 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-14 input[type="text"], .form-component.instance-14 input[type="email"], .form-component.instance-14 input[type="tel"], .form-component.instance-14 input[type="number"], .form-component.instance-14 textarea, .form-component.instance-14 select, .form-component.instance-14 .file, .form-component.instance-14 .date {
	font-size: 0.875em;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-weight: 500;
	border-radius: 0.25rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-14 input[type="text"]:focus, .form-component.instance-14 input[type="email"]:focus, .form-component.instance-14 input[type="tel"]:focus, .form-component.instance-14 input[type="number"]:focus, .form-component.instance-14 textarea:focus, .form-component.instance-14 select:focus, .form-component.instance-14 .file:focus, .form-component.instance-14 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-14 input[type="text"], .form-component.instance-14 input[type="email"], .form-component.instance-14 input[type="tel"], .form-component.instance-14 input[type="number"], .form-component.instance-14 select, .form-component.instance-14 .file, .form-component.instance-14 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-14 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-14 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-14 input[type="checkbox"] + label::before {
	border-radius: 0.25rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-14 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-14 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-14 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-14 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-14 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-14 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-14 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-14 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-14 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-14 input[type="checkbox"] + label, .form-component.instance-14 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-weight: 500;
	color: #60626B;
}

.form-component.instance-14 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-14 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-14 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-14 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-14 .actions button.waiting {
	color: transparent;
}

.form-component.instance-14 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-14 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-14 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-14 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-14 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-14 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-14 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-14 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-14 .actions button {
	display: none;
}

.form-component.instance-16 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-16:not(:first-child) {
	margin-top: 0rem !important;
}

.form-component.instance-16:not(:last-child) {
	margin-bottom: 0rem !important;
}

.form-component.instance-16 > .inner > * {
	margin: 1rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-16 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-16 > .inner {
	width: 25rem;
}

.form-component.instance-16 label:first-child {
	margin: 0.25rem 0 0.75rem 0;
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #FFFFFF;
}

.form-component.instance-16 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.16rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-16 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-16 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-16 input[type="text"], .form-component.instance-16 input[type="email"], .form-component.instance-16 input[type="tel"], .form-component.instance-16 input[type="number"], .form-component.instance-16 textarea, .form-component.instance-16 select, .form-component.instance-16 .file, .form-component.instance-16 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	letter-spacing: -0.025rem;
	font-weight: 400;
	border-radius: 0.25rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-16 input[type="text"]:focus, .form-component.instance-16 input[type="email"]:focus, .form-component.instance-16 input[type="tel"]:focus, .form-component.instance-16 input[type="number"]:focus, .form-component.instance-16 textarea:focus, .form-component.instance-16 select:focus, .form-component.instance-16 .file:focus, .form-component.instance-16 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-16 input[type="text"], .form-component.instance-16 input[type="email"], .form-component.instance-16 input[type="tel"], .form-component.instance-16 input[type="number"], .form-component.instance-16 select, .form-component.instance-16 .file, .form-component.instance-16 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-16 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-16 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-16 input[type="checkbox"] + label::before {
	border-radius: 0.25rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-16 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-16 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-16 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-16 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-16 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-16 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-16 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-16 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-16 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-16 input[type="checkbox"] + label, .form-component.instance-16 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	letter-spacing: -0.025rem;
	font-weight: 400;
	color: #60626B;
}

.form-component.instance-16 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-16 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-16 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-16 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-16 .actions button.waiting {
	color: transparent;
}

.form-component.instance-16 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-16 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-16 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-16 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-16 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-16 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-16 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-16 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-16 .actions button {
	display: none;
}

.form-component.instance-13 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-13:not(:first-child) {
	margin-top: 0.875rem !important;
}

.form-component.instance-13:not(:last-child) {
	margin-bottom: 0.875rem !important;
}

.form-component.instance-13 > .inner > * {
	margin: 1rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-13 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-13 > .inner {
	width: 30rem;
}

.form-component.instance-13 label:first-child {
	margin: 0.25rem 0 0.75rem 0;
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-weight: 400;
	color: #666666;
}

.form-component.instance-13 .field button {
	background-size: 0.9rem;
	height: calc(1.8rem - 2px);
	width: calc(1.8rem - 2px);
	border-radius: 0.16rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-13 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-13 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-13 input[type="text"], .form-component.instance-13 input[type="email"], .form-component.instance-13 input[type="tel"], .form-component.instance-13 input[type="number"], .form-component.instance-13 textarea, .form-component.instance-13 select, .form-component.instance-13 .file, .form-component.instance-13 .date {
	font-size: 1em;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-weight: 400;
	border-radius: 0.25rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-13 input[type="text"]:focus, .form-component.instance-13 input[type="email"]:focus, .form-component.instance-13 input[type="tel"]:focus, .form-component.instance-13 input[type="number"]:focus, .form-component.instance-13 textarea:focus, .form-component.instance-13 select:focus, .form-component.instance-13 .file:focus, .form-component.instance-13 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-13 input[type="text"], .form-component.instance-13 input[type="email"], .form-component.instance-13 input[type="tel"], .form-component.instance-13 input[type="number"], .form-component.instance-13 select, .form-component.instance-13 .file, .form-component.instance-13 .date {
	height: 2.25rem;
	padding: 0 0.7875rem;
	line-height: calc(2.25rem - 2px);
}

.form-component.instance-13 textarea {
	padding: 0.7875rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.525rem;
}

.form-component.instance-13 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.7875rem) center;
	padding-right: 2.4375rem;
}

.form-component.instance-13 input[type="checkbox"] + label::before {
	border-radius: 0.25rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.95625rem;
	height: 1.6875rem;
	width: 1.6875rem;
	margin-right: 0.875rem;
}

.form-component.instance-13 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-13 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-13 .number > input[type="number"] {
	padding-left: 2.3rem;
	padding-right: 2.3rem;
}

.form-component.instance-13 .number > button.decrement {
	bottom: calc(0.225rem + 1px);
	left: calc(0.225rem + 1px);
}

.form-component.instance-13 .number > button.increment {
	bottom: calc(0.225rem + 1px);
	right: calc(0.225rem + 1px);
}

.form-component.instance-13 .file::before {
	width: calc(100% - 3.0375rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 1rem;
	background-position: left;
	padding-left: 1.4rem;
}

.form-component.instance-13 .file > button {
	bottom: 0.225rem;
	right: 0.225rem;
}

.form-component.instance-13 .date::before {
	width: calc(100% - 3.0375rem);
}

.form-component.instance-13 .date > button {
	bottom: 0.225rem;
	right: 0.225rem;
}

.form-component.instance-13 input[type="checkbox"] + label, .form-component.instance-13 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-weight: 500;
	color: #60626B;
}

.form-component.instance-13 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-13 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-13 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-13 > .inner .actions {
	margin: 1.375rem 0 0 0;
}

.form-component.instance-13 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-13 .actions button.waiting {
	color: transparent;
}

.form-component.instance-13 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-13 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-13 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-13 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-13 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-13 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-13 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-13 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-13 .actions button {
	display: none;
}

.form-component.instance-15 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-15:not(:first-child) {
	margin-top: 0rem !important;
}

.form-component.instance-15:not(:last-child) {
	margin-bottom: 0rem !important;
}

.form-component.instance-15 > .inner > * {
	margin: 0.75rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-15 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-15 > .inner {
	width: 15rem;
}

.form-component.instance-15 label:first-child {
	margin: 0.25rem 0 0.5625rem 0;
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-weight: 500;
	color: #666666;
}

.form-component.instance-15 .field button {
	background-size: 0.75rem;
	height: calc(1.5rem - 2px);
	width: calc(1.5rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-15 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-15 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-15 input[type="text"], .form-component.instance-15 input[type="email"], .form-component.instance-15 input[type="tel"], .form-component.instance-15 input[type="number"], .form-component.instance-15 textarea, .form-component.instance-15 select, .form-component.instance-15 .file, .form-component.instance-15 .date {
	font-size: 0.875em;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-weight: 400;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-15 input[type="text"], .form-component.instance-15 input[type="email"], .form-component.instance-15 input[type="tel"], .form-component.instance-15 input[type="number"], .form-component.instance-15 select, .form-component.instance-15 .file, .form-component.instance-15 .date {
	height: 1.875rem;
	padding: 0 0.65625rem;
	line-height: calc(1.875rem - 2px);
}

.form-component.instance-15 textarea {
	padding: 0.65625rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.39375rem;
}

.form-component.instance-15 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.65625rem) center;
	padding-right: 2.15625rem;
}

.form-component.instance-15 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.796875rem;
	height: 1.40625rem;
	width: 1.40625rem;
	margin-right: 0.875rem;
}

.form-component.instance-15 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-15 .number > input[type="number"] {
	padding-left: 2rem;
	padding-right: 2rem;
}

.form-component.instance-15 .number > button.decrement {
	bottom: calc(0.1875rem + 1px);
	left: calc(0.1875rem + 1px);
}

.form-component.instance-15 .number > button.increment {
	bottom: calc(0.1875rem + 1px);
	right: calc(0.1875rem + 1px);
}

.form-component.instance-15 .file::before {
	width: calc(100% - 2.53125rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-15 .file > button {
	bottom: 0.1875rem;
	right: 0.1875rem;
}

.form-component.instance-15 .date::before {
	width: calc(100% - 2.53125rem);
}

.form-component.instance-15 .date > button {
	bottom: 0.1875rem;
	right: 0.1875rem;
}

.form-component.instance-15 input[type="checkbox"] + label, .form-component.instance-15 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-weight: 500;
	color: #60626B;
}

.form-component.instance-15 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-15 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-15 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-15 > .inner .actions {
	margin: 1.03125rem 0 0 0;
}

.form-component.instance-15 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-15 .actions button.waiting {
	color: transparent;
}

.form-component.instance-15 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-15 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-15 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-15 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-15 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-15 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-15 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-15 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-15 .actions button {
	display: none;
}

.form-component.instance-18 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-18:not(:first-child) {
	margin-top: 0.75rem !important;
}

.form-component.instance-18:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

.form-component.instance-18 > .inner > * {
	margin: 0.75rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-18 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-18 > .inner {
	width: 25rem;
}

.form-component.instance-18 label:first-child {
	margin: 0.25rem 0 0.5625rem 0;
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #FFFFFF;
}

.form-component.instance-18 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-18 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-18 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-18 input[type="text"], .form-component.instance-18 input[type="email"], .form-component.instance-18 input[type="tel"], .form-component.instance-18 input[type="number"], .form-component.instance-18 textarea, .form-component.instance-18 select, .form-component.instance-18 .file, .form-component.instance-18 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-18 input[type="text"]:focus, .form-component.instance-18 input[type="email"]:focus, .form-component.instance-18 input[type="tel"]:focus, .form-component.instance-18 input[type="number"]:focus, .form-component.instance-18 textarea:focus, .form-component.instance-18 select:focus, .form-component.instance-18 .file:focus, .form-component.instance-18 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-18 input[type="text"], .form-component.instance-18 input[type="email"], .form-component.instance-18 input[type="tel"], .form-component.instance-18 input[type="number"], .form-component.instance-18 select, .form-component.instance-18 .file, .form-component.instance-18 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-18 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-18 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-18 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-18 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-18 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-18 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-18 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-18 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-18 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-18 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-18 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-18 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-18 input[type="checkbox"] + label, .form-component.instance-18 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	color: #60626B;
}

.form-component.instance-18 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-18 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-18 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-18 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-18 .actions button.waiting {
	color: transparent;
}

.form-component.instance-18 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-18 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-18 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-18 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-18 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-18 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-18 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-18 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-18 .actions button {
	display: none;
}

.form-component.instance-34 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-34:not(:first-child) {
	margin-top: 0.75rem !important;
}

.form-component.instance-34:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

.form-component.instance-34 > .inner > * {
	margin: 0.75rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-34 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-34 > .inner {
	width: 25rem;
}

.form-component.instance-34 label:first-child {
	margin: 0.25rem 0 0.5625rem 0;
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #FFFFFF;
}

.form-component.instance-34 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-34 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-34 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-34 input[type="text"], .form-component.instance-34 input[type="email"], .form-component.instance-34 input[type="tel"], .form-component.instance-34 input[type="number"], .form-component.instance-34 textarea, .form-component.instance-34 select, .form-component.instance-34 .file, .form-component.instance-34 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-34 input[type="text"]:focus, .form-component.instance-34 input[type="email"]:focus, .form-component.instance-34 input[type="tel"]:focus, .form-component.instance-34 input[type="number"]:focus, .form-component.instance-34 textarea:focus, .form-component.instance-34 select:focus, .form-component.instance-34 .file:focus, .form-component.instance-34 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-34 input[type="text"], .form-component.instance-34 input[type="email"], .form-component.instance-34 input[type="tel"], .form-component.instance-34 input[type="number"], .form-component.instance-34 select, .form-component.instance-34 .file, .form-component.instance-34 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-34 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-34 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-34 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-34 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-34 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-34 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-34 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-34 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-34 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-34 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-34 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-34 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-34 input[type="checkbox"] + label, .form-component.instance-34 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	color: #60626B;
}

.form-component.instance-34 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-34 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-34 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-34 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-34 .actions button.waiting {
	color: transparent;
}

.form-component.instance-34 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-34 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-34 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-34 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-34 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-34 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-34 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-34 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-34 .actions button {
	display: none;
}

.form-component.instance-21 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-21:not(:first-child) {
	margin-top: 0.75rem !important;
}

.form-component.instance-21:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

.form-component.instance-21 > .inner > * {
	margin: 0.75rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-21 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-21 > .inner {
	width: 25rem;
}

.form-component.instance-21 label:first-child {
	margin: 0.25rem 0 0.5625rem 0;
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #FFFFFF;
}

.form-component.instance-21 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-21 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-21 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-21 input[type="text"], .form-component.instance-21 input[type="email"], .form-component.instance-21 input[type="tel"], .form-component.instance-21 input[type="number"], .form-component.instance-21 textarea, .form-component.instance-21 select, .form-component.instance-21 .file, .form-component.instance-21 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-21 input[type="text"]:focus, .form-component.instance-21 input[type="email"]:focus, .form-component.instance-21 input[type="tel"]:focus, .form-component.instance-21 input[type="number"]:focus, .form-component.instance-21 textarea:focus, .form-component.instance-21 select:focus, .form-component.instance-21 .file:focus, .form-component.instance-21 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-21 input[type="text"], .form-component.instance-21 input[type="email"], .form-component.instance-21 input[type="tel"], .form-component.instance-21 input[type="number"], .form-component.instance-21 select, .form-component.instance-21 .file, .form-component.instance-21 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-21 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-21 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-21 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-21 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-21 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-21 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-21 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-21 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-21 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-21 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-21 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-21 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-21 input[type="checkbox"] + label, .form-component.instance-21 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	color: #60626B;
}

.form-component.instance-21 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-21 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-21 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-21 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-21 .actions button.waiting {
	color: transparent;
}

.form-component.instance-21 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-21 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-21 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-21 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-21 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-21 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-21 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-21 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-21 .actions button {
	display: none;
}

.form-component.instance-17 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-17:not(:first-child) {
	margin-top: 0.5rem !important;
}

.form-component.instance-17:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.form-component.instance-17 > .inner > * {
	margin: 0.75rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-17 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-17 > .inner {
	width: 15rem;
}

.form-component.instance-17 label:first-child {
	margin: 0.25rem 0 0.5625rem 0;
	text-align: left;
	font-size: 0.875em;
	line-height: 0.75;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-weight: 600;
	color: #0C8389;
}

.form-component.instance-17 .field button {
	background-size: 0.5rem;
	height: calc(1rem - 2px);
	width: calc(1rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-17 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-17 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-17 input[type="text"], .form-component.instance-17 input[type="email"], .form-component.instance-17 input[type="tel"], .form-component.instance-17 input[type="number"], .form-component.instance-17 textarea, .form-component.instance-17 select, .form-component.instance-17 .file, .form-component.instance-17 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-17 input[type="text"]:focus, .form-component.instance-17 input[type="email"]:focus, .form-component.instance-17 input[type="tel"]:focus, .form-component.instance-17 input[type="number"]:focus, .form-component.instance-17 textarea:focus, .form-component.instance-17 select:focus, .form-component.instance-17 .file:focus, .form-component.instance-17 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-17 input[type="text"], .form-component.instance-17 input[type="email"], .form-component.instance-17 input[type="tel"], .form-component.instance-17 input[type="number"], .form-component.instance-17 select, .form-component.instance-17 .file, .form-component.instance-17 .date {
	height: 1.25rem;
	padding: 0 0.4375rem;
	line-height: calc(1.25rem - 2px);
}

.form-component.instance-17 textarea {
	padding: 0.4375rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.175rem;
}

.form-component.instance-17 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.4375rem) center;
	padding-right: 1.6875rem;
}

.form-component.instance-17 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.53125rem;
	height: 0.9375rem;
	width: 0.9375rem;
	margin-right: 0.875rem;
}

.form-component.instance-17 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-17 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-17 .number > input[type="number"] {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.form-component.instance-17 .number > button.decrement {
	bottom: calc(0.125rem + 1px);
	left: calc(0.125rem + 1px);
}

.form-component.instance-17 .number > button.increment {
	bottom: calc(0.125rem + 1px);
	right: calc(0.125rem + 1px);
}

.form-component.instance-17 .file::before {
	width: calc(100% - 1.6875rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-17 .file > button {
	bottom: 0.125rem;
	right: 0.125rem;
}

.form-component.instance-17 .date::before {
	width: calc(100% - 1.6875rem);
}

.form-component.instance-17 .date > button {
	bottom: 0.125rem;
	right: 0.125rem;
}

.form-component.instance-17 input[type="checkbox"] + label, .form-component.instance-17 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	color: #60626B;
}

.form-component.instance-17 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-17 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-17 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-17 > .inner .actions {
	margin: 1.03125rem 0 0 0;
}

.form-component.instance-17 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-17 .actions button.waiting {
	color: transparent;
}

.form-component.instance-17 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-17 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-17 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-17 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-17 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-17 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-17 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-17 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-17 .actions button {
	display: none;
}

.form-component.instance-24 {
	justify-content: center;
	text-align: center;
}

.form-component.instance-24:not(:first-child) {
	margin-top: 0rem !important;
}

.form-component.instance-24:not(:last-child) {
	margin-bottom: 0rem !important;
}

.form-component.instance-24 > .inner > * {
	margin: 0 0 0 0.75rem;
}

.form-component.instance-24 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-24 > .inner {
	width: 45rem;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-end;
}

.form-component.instance-24 label:first-child {
	margin: 0.25rem 0 0.5625rem 0;
	text-align: center;
	font-size: 0.75em;
	line-height: 0.75;
	font-family: 'Source Sans Pro', sans-serif;
	letter-spacing: -0.025rem;
	font-weight: 400;
	color: #666666;
}

.form-component.instance-24 .field button {
	background-size: 0.5rem;
	height: calc(1rem - 2px);
	width: calc(1rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-24 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-24 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-24 input[type="text"], .form-component.instance-24 input[type="email"], .form-component.instance-24 input[type="tel"], .form-component.instance-24 input[type="number"], .form-component.instance-24 textarea, .form-component.instance-24 select, .form-component.instance-24 .file, .form-component.instance-24 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-24 input[type="text"]:focus, .form-component.instance-24 input[type="email"]:focus, .form-component.instance-24 input[type="tel"]:focus, .form-component.instance-24 input[type="number"]:focus, .form-component.instance-24 textarea:focus, .form-component.instance-24 select:focus, .form-component.instance-24 .file:focus, .form-component.instance-24 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-24 input[type="text"], .form-component.instance-24 input[type="email"], .form-component.instance-24 input[type="tel"], .form-component.instance-24 input[type="number"], .form-component.instance-24 select, .form-component.instance-24 .file, .form-component.instance-24 .date {
	height: 1.25rem;
	padding: 0 0.4375rem;
	line-height: calc(1.25rem - 2px);
}

.form-component.instance-24 textarea {
	padding: 0.4375rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.175rem;
}

.form-component.instance-24 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.4375rem) center;
	padding-right: 1.6875rem;
}

.form-component.instance-24 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.53125rem;
	height: 0.9375rem;
	width: 0.9375rem;
	margin-right: 0.875rem;
}

.form-component.instance-24 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-24 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-24 .number > input[type="number"] {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.form-component.instance-24 .number > button.decrement {
	bottom: calc(0.125rem + 1px);
	left: calc(0.125rem + 1px);
}

.form-component.instance-24 .number > button.increment {
	bottom: calc(0.125rem + 1px);
	right: calc(0.125rem + 1px);
}

.form-component.instance-24 .file::before {
	width: calc(100% - 1.6875rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-24 .file > button {
	bottom: 0.125rem;
	right: 0.125rem;
}

.form-component.instance-24 .date::before {
	width: calc(100% - 1.6875rem);
}

.form-component.instance-24 .date > button {
	bottom: 0.125rem;
	right: 0.125rem;
}

.form-component.instance-24 input[type="checkbox"] + label, .form-component.instance-24 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	color: #60626B;
}

.form-component.instance-24 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-24 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-24 > .inner .field {
	flex-grow: 1;
	flex-shrink: 1;
	width: 100%;
}

.form-component.instance-24 > .inner .actions {
	flex-grow: 0;
	flex-shrink: 0;
}

.form-component.instance-24 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-24 .actions button.waiting {
	color: transparent;
}

.form-component.instance-24 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-24 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-24 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-24 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-24 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-24 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-24 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-24 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-24 .actions button {
	display: none;
}

.form-component.instance-31 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-31:not(:first-child) {
	margin-top: 0.75rem !important;
}

.form-component.instance-31:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

.form-component.instance-31 > .inner > * {
	margin: 0.75rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-31 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-31 > .inner {
	width: 40rem;
}

.form-component.instance-31 label:first-child {
	margin: 0.25rem 0 0.5625rem 0;
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #FFFFFF;
}

.form-component.instance-31 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-31 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-31 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-31 input[type="text"], .form-component.instance-31 input[type="email"], .form-component.instance-31 input[type="tel"], .form-component.instance-31 input[type="number"], .form-component.instance-31 textarea, .form-component.instance-31 select, .form-component.instance-31 .file, .form-component.instance-31 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-31 input[type="text"]:focus, .form-component.instance-31 input[type="email"]:focus, .form-component.instance-31 input[type="tel"]:focus, .form-component.instance-31 input[type="number"]:focus, .form-component.instance-31 textarea:focus, .form-component.instance-31 select:focus, .form-component.instance-31 .file:focus, .form-component.instance-31 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-31 input[type="text"], .form-component.instance-31 input[type="email"], .form-component.instance-31 input[type="tel"], .form-component.instance-31 input[type="number"], .form-component.instance-31 select, .form-component.instance-31 .file, .form-component.instance-31 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-31 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-31 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-31 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-31 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-31 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-31 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-31 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-31 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-31 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-31 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-31 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-31 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-31 input[type="checkbox"] + label, .form-component.instance-31 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	color: #60626B;
}

.form-component.instance-31 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-31 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-31 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-31 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-31 .actions button.waiting {
	color: transparent;
}

.form-component.instance-31 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-31 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-31 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-31 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-31 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-31 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-31 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-31 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-31 .actions button {
	display: none;
}

.form-component.instance-11 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-11:not(:first-child) {
	margin-top: 0.75rem !important;
}

.form-component.instance-11:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

.form-component.instance-11 > .inner > * {
	margin: 0.75rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-11 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-11 > .inner {
	width: 40rem;
}

.form-component.instance-11 label:first-child {
	margin: 0.25rem 0 0.5625rem 0;
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #FFFFFF;
}

.form-component.instance-11 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-11 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-11 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-11 input[type="text"], .form-component.instance-11 input[type="email"], .form-component.instance-11 input[type="tel"], .form-component.instance-11 input[type="number"], .form-component.instance-11 textarea, .form-component.instance-11 select, .form-component.instance-11 .file, .form-component.instance-11 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-11 input[type="text"]:focus, .form-component.instance-11 input[type="email"]:focus, .form-component.instance-11 input[type="tel"]:focus, .form-component.instance-11 input[type="number"]:focus, .form-component.instance-11 textarea:focus, .form-component.instance-11 select:focus, .form-component.instance-11 .file:focus, .form-component.instance-11 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-11 input[type="text"], .form-component.instance-11 input[type="email"], .form-component.instance-11 input[type="tel"], .form-component.instance-11 input[type="number"], .form-component.instance-11 select, .form-component.instance-11 .file, .form-component.instance-11 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-11 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-11 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-11 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-11 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-11 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-11 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-11 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-11 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-11 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-11 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-11 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-11 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-11 input[type="checkbox"] + label, .form-component.instance-11 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	color: #60626B;
}

.form-component.instance-11 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-11 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-11 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-11 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-11 .actions button.waiting {
	color: transparent;
}

.form-component.instance-11 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-11 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-11 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-11 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-11 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-11 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-11 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-11 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-11 .actions button {
	display: none;
}

.form-component.instance-30 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-30:not(:first-child) {
	margin-top: 0.75rem !important;
}

.form-component.instance-30:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

.form-component.instance-30 > .inner > * {
	margin: 0.75rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-30 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-30 > .inner {
	width: 40rem;
}

.form-component.instance-30 label:first-child {
	margin: 0.25rem 0 0.5625rem 0;
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #FFFFFF;
}

.form-component.instance-30 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-30 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-30 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-30 input[type="text"], .form-component.instance-30 input[type="email"], .form-component.instance-30 input[type="tel"], .form-component.instance-30 input[type="number"], .form-component.instance-30 textarea, .form-component.instance-30 select, .form-component.instance-30 .file, .form-component.instance-30 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-30 input[type="text"]:focus, .form-component.instance-30 input[type="email"]:focus, .form-component.instance-30 input[type="tel"]:focus, .form-component.instance-30 input[type="number"]:focus, .form-component.instance-30 textarea:focus, .form-component.instance-30 select:focus, .form-component.instance-30 .file:focus, .form-component.instance-30 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-30 input[type="text"], .form-component.instance-30 input[type="email"], .form-component.instance-30 input[type="tel"], .form-component.instance-30 input[type="number"], .form-component.instance-30 select, .form-component.instance-30 .file, .form-component.instance-30 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-30 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-30 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-30 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-30 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-30 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-30 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-30 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-30 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-30 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-30 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-30 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-30 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-30 input[type="checkbox"] + label, .form-component.instance-30 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	color: #60626B;
}

.form-component.instance-30 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-30 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-30 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-30 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-30 .actions button.waiting {
	color: transparent;
}

.form-component.instance-30 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-30 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-30 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-30 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-30 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-30 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-30 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-30 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-30 .actions button {
	display: none;
}

.form-component.instance-33 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-33:not(:first-child) {
	margin-top: 0.75rem !important;
}

.form-component.instance-33:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

.form-component.instance-33 > .inner > * {
	margin: 0.75rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-33 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-33 > .inner {
	width: 40rem;
}

.form-component.instance-33 label:first-child {
	margin: 0.25rem 0 0.5625rem 0;
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #FFFFFF;
}

.form-component.instance-33 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-33 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-33 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-33 input[type="text"], .form-component.instance-33 input[type="email"], .form-component.instance-33 input[type="tel"], .form-component.instance-33 input[type="number"], .form-component.instance-33 textarea, .form-component.instance-33 select, .form-component.instance-33 .file, .form-component.instance-33 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-33 input[type="text"]:focus, .form-component.instance-33 input[type="email"]:focus, .form-component.instance-33 input[type="tel"]:focus, .form-component.instance-33 input[type="number"]:focus, .form-component.instance-33 textarea:focus, .form-component.instance-33 select:focus, .form-component.instance-33 .file:focus, .form-component.instance-33 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-33 input[type="text"], .form-component.instance-33 input[type="email"], .form-component.instance-33 input[type="tel"], .form-component.instance-33 input[type="number"], .form-component.instance-33 select, .form-component.instance-33 .file, .form-component.instance-33 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-33 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-33 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-33 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-33 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-33 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-33 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-33 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-33 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-33 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-33 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-33 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-33 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-33 input[type="checkbox"] + label, .form-component.instance-33 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	color: #60626B;
}

.form-component.instance-33 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-33 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-33 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-33 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-33 .actions button.waiting {
	color: transparent;
}

.form-component.instance-33 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-33 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-33 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-33 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-33 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-33 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-33 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-33 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-33 .actions button {
	display: none;
}

.form-component.instance-32 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-32:not(:first-child) {
	margin-top: 0.75rem !important;
}

.form-component.instance-32:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

.form-component.instance-32 > .inner > * {
	margin: 0.75rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-32 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-32 > .inner {
	width: 40rem;
}

.form-component.instance-32 label:first-child {
	margin: 0.25rem 0 0.5625rem 0;
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #FFFFFF;
}

.form-component.instance-32 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-32 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-32 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-32 input[type="text"], .form-component.instance-32 input[type="email"], .form-component.instance-32 input[type="tel"], .form-component.instance-32 input[type="number"], .form-component.instance-32 textarea, .form-component.instance-32 select, .form-component.instance-32 .file, .form-component.instance-32 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-32 input[type="text"]:focus, .form-component.instance-32 input[type="email"]:focus, .form-component.instance-32 input[type="tel"]:focus, .form-component.instance-32 input[type="number"]:focus, .form-component.instance-32 textarea:focus, .form-component.instance-32 select:focus, .form-component.instance-32 .file:focus, .form-component.instance-32 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-32 input[type="text"], .form-component.instance-32 input[type="email"], .form-component.instance-32 input[type="tel"], .form-component.instance-32 input[type="number"], .form-component.instance-32 select, .form-component.instance-32 .file, .form-component.instance-32 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-32 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-32 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-32 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-32 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-32 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-32 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-32 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-32 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-32 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-32 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-32 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-32 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-32 input[type="checkbox"] + label, .form-component.instance-32 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	color: #60626B;
}

.form-component.instance-32 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-32 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-32 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-32 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-32 .actions button.waiting {
	color: transparent;
}

.form-component.instance-32 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-32 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-32 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-32 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-32 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-32 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-32 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-32 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-32 .actions button {
	display: none;
}

.form-component.instance-10 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-10:not(:first-child) {
	margin-top: 0.25rem !important;
}

.form-component.instance-10:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.form-component.instance-10 > .inner > * {
	margin: 1rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-10 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-10 > .inner {
	width: 25rem;
}

.form-component.instance-10 label:first-child {
	margin: 0.25rem 0 0.75rem 0;
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #FFFFFF;
}

.form-component.instance-10 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.16rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-10 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-10 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-10 input[type="text"], .form-component.instance-10 input[type="email"], .form-component.instance-10 input[type="tel"], .form-component.instance-10 input[type="number"], .form-component.instance-10 textarea, .form-component.instance-10 select, .form-component.instance-10 .file, .form-component.instance-10 .date {
	font-size: 0.875em;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-weight: 500;
	border-radius: 0.25rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-10 input[type="text"]:focus, .form-component.instance-10 input[type="email"]:focus, .form-component.instance-10 input[type="tel"]:focus, .form-component.instance-10 input[type="number"]:focus, .form-component.instance-10 textarea:focus, .form-component.instance-10 select:focus, .form-component.instance-10 .file:focus, .form-component.instance-10 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-10 input[type="text"], .form-component.instance-10 input[type="email"], .form-component.instance-10 input[type="tel"], .form-component.instance-10 input[type="number"], .form-component.instance-10 select, .form-component.instance-10 .file, .form-component.instance-10 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-10 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-10 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-10 input[type="checkbox"] + label::before {
	border-radius: 0.25rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-10 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-10 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-10 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-10 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-10 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-10 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-10 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-10 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-10 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-10 input[type="checkbox"] + label, .form-component.instance-10 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Saira Semi Condensed', sans-serif;
	letter-spacing: -0.025rem;
	font-weight: 500;
	color: #60626B;
}

.form-component.instance-10 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-10 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-10 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-10 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-10 .actions button.waiting {
	color: transparent;
}

.form-component.instance-10 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-10 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-10 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-10 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-10 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-10 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-10 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-10 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-10 .actions button {
	display: none;
}

.form-component.instance-26 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-26:not(:first-child) {
	margin-top: 0rem !important;
}

.form-component.instance-26:not(:last-child) {
	margin-bottom: 0rem !important;
}

.form-component.instance-26 > .inner > * {
	margin: 0.75rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-26 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-26 > .inner {
	width: 25rem;
}

.form-component.instance-26 label:first-child {
	margin: 0.25rem 0 0.5625rem 0;
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-weight: 500;
	color: #666666;
}

.form-component.instance-26 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-26 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-26 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-26 input[type="text"], .form-component.instance-26 input[type="email"], .form-component.instance-26 input[type="tel"], .form-component.instance-26 input[type="number"], .form-component.instance-26 textarea, .form-component.instance-26 select, .form-component.instance-26 .file, .form-component.instance-26 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-26 input[type="text"]:focus, .form-component.instance-26 input[type="email"]:focus, .form-component.instance-26 input[type="tel"]:focus, .form-component.instance-26 input[type="number"]:focus, .form-component.instance-26 textarea:focus, .form-component.instance-26 select:focus, .form-component.instance-26 .file:focus, .form-component.instance-26 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-26 input[type="text"], .form-component.instance-26 input[type="email"], .form-component.instance-26 input[type="tel"], .form-component.instance-26 input[type="number"], .form-component.instance-26 select, .form-component.instance-26 .file, .form-component.instance-26 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-26 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-26 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-26 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-26 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-26 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-26 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-26 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-26 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-26 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-26 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-26 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-26 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-26 input[type="checkbox"] + label, .form-component.instance-26 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	color: #60626B;
}

.form-component.instance-26 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-26 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-26 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-26 > .inner .actions {
	margin: 1.03125rem 0 0 0;
}

.form-component.instance-26 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-26 .actions button.waiting {
	color: transparent;
}

.form-component.instance-26 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-26 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-26 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-26 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-26 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-26 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-26 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-26 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-26 .actions button {
	display: none;
}

.form-component.instance-19 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-19:not(:first-child) {
	margin-top: 0.75rem !important;
}

.form-component.instance-19:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

.form-component.instance-19 > .inner > * {
	margin: 0.75rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-19 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-19 > .inner {
	width: 25rem;
}

.form-component.instance-19 label:first-child {
	margin: 0.25rem 0 0.5625rem 0;
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-weight: 600;
	color: #666666;
}

.form-component.instance-19 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-19 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-19 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-19 input[type="text"], .form-component.instance-19 input[type="email"], .form-component.instance-19 input[type="tel"], .form-component.instance-19 input[type="number"], .form-component.instance-19 textarea, .form-component.instance-19 select, .form-component.instance-19 .file, .form-component.instance-19 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-19 input[type="text"]:focus, .form-component.instance-19 input[type="email"]:focus, .form-component.instance-19 input[type="tel"]:focus, .form-component.instance-19 input[type="number"]:focus, .form-component.instance-19 textarea:focus, .form-component.instance-19 select:focus, .form-component.instance-19 .file:focus, .form-component.instance-19 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-19 input[type="text"], .form-component.instance-19 input[type="email"], .form-component.instance-19 input[type="tel"], .form-component.instance-19 input[type="number"], .form-component.instance-19 select, .form-component.instance-19 .file, .form-component.instance-19 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-19 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-19 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-19 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-19 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-19 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-19 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-19 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-19 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-19 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-19 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-19 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-19 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-19 input[type="checkbox"] + label, .form-component.instance-19 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	color: #60626B;
}

.form-component.instance-19 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-19 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-19 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-19 > .inner .actions {
	margin: 1.03125rem 0 0 0;
}

.form-component.instance-19 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-19 .actions button.waiting {
	color: transparent;
}

.form-component.instance-19 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-19 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-19 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-19 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-19 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-19 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-19 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-19 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-19 .actions button {
	display: none;
}

.form-component.instance-23 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-23:not(:first-child) {
	margin-top: 0rem !important;
}

.form-component.instance-23:not(:last-child) {
	margin-bottom: 0rem !important;
}

.form-component.instance-23 > .inner > * {
	margin: 0.75rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-23 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-23 > .inner {
	width: 25rem;
}

.form-component.instance-23 label:first-child {
	margin: 0.25rem 0 0.5625rem 0;
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-weight: 500;
	color: #666666;
}

.form-component.instance-23 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-23 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-23 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-23 input[type="text"], .form-component.instance-23 input[type="email"], .form-component.instance-23 input[type="tel"], .form-component.instance-23 input[type="number"], .form-component.instance-23 textarea, .form-component.instance-23 select, .form-component.instance-23 .file, .form-component.instance-23 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-23 input[type="text"]:focus, .form-component.instance-23 input[type="email"]:focus, .form-component.instance-23 input[type="tel"]:focus, .form-component.instance-23 input[type="number"]:focus, .form-component.instance-23 textarea:focus, .form-component.instance-23 select:focus, .form-component.instance-23 .file:focus, .form-component.instance-23 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-23 input[type="text"], .form-component.instance-23 input[type="email"], .form-component.instance-23 input[type="tel"], .form-component.instance-23 input[type="number"], .form-component.instance-23 select, .form-component.instance-23 .file, .form-component.instance-23 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-23 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-23 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-23 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-23 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-23 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-23 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-23 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-23 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-23 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-23 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-23 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-23 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-23 input[type="checkbox"] + label, .form-component.instance-23 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	color: #60626B;
}

.form-component.instance-23 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-23 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-23 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-23 > .inner .actions {
	margin: 1.03125rem 0 0 0;
}

.form-component.instance-23 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-23 .actions button.waiting {
	color: transparent;
}

.form-component.instance-23 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-23 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-23 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-23 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-23 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-23 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-23 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-23 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-23 .actions button {
	display: none;
}

.form-component.instance-25 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-25:not(:first-child) {
	margin-top: 0rem !important;
}

.form-component.instance-25:not(:last-child) {
	margin-bottom: 0rem !important;
}

.form-component.instance-25 > .inner > * {
	margin: 0.75rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-25 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-25 > .inner {
	width: 25rem;
}

.form-component.instance-25 label:first-child {
	margin: 0.25rem 0 0.5625rem 0;
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-weight: 500;
	color: #666666;
}

.form-component.instance-25 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-25 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-25 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-25 input[type="text"], .form-component.instance-25 input[type="email"], .form-component.instance-25 input[type="tel"], .form-component.instance-25 input[type="number"], .form-component.instance-25 textarea, .form-component.instance-25 select, .form-component.instance-25 .file, .form-component.instance-25 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-25 input[type="text"]:focus, .form-component.instance-25 input[type="email"]:focus, .form-component.instance-25 input[type="tel"]:focus, .form-component.instance-25 input[type="number"]:focus, .form-component.instance-25 textarea:focus, .form-component.instance-25 select:focus, .form-component.instance-25 .file:focus, .form-component.instance-25 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-25 input[type="text"], .form-component.instance-25 input[type="email"], .form-component.instance-25 input[type="tel"], .form-component.instance-25 input[type="number"], .form-component.instance-25 select, .form-component.instance-25 .file, .form-component.instance-25 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-25 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-25 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-25 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-25 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-25 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-25 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-25 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-25 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-25 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-25 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-25 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-25 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-25 input[type="checkbox"] + label, .form-component.instance-25 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	color: #60626B;
}

.form-component.instance-25 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-25 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-25 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-25 > .inner .actions {
	margin: 1.03125rem 0 0 0;
}

.form-component.instance-25 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-25 .actions button.waiting {
	color: transparent;
}

.form-component.instance-25 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-25 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-25 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-25 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-25 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-25 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-25 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-25 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-25 .actions button {
	display: none;
}

.form-component.instance-22 {
	justify-content: flex-start;
	text-align: left;
}

.form-component.instance-22:not(:first-child) {
	margin-top: 0rem !important;
}

.form-component.instance-22:not(:last-child) {
	margin-bottom: 0rem !important;
}

.form-component.instance-22 > .inner > * {
	margin: 0.75rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-22 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-22 > .inner {
	width: 25rem;
}

.form-component.instance-22 label:first-child {
	margin: 0.25rem 0 0.5625rem 0;
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Saira Semi Condensed', sans-serif;
	font-weight: 500;
	color: #666666;
}

.form-component.instance-22 .field button {
	background-size: 0.6rem;
	height: calc(1.2rem - 2px);
	width: calc(1.2rem - 2px);
	border-radius: 0.24rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-22 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-22 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-22 input[type="text"], .form-component.instance-22 input[type="email"], .form-component.instance-22 input[type="tel"], .form-component.instance-22 input[type="number"], .form-component.instance-22 textarea, .form-component.instance-22 select, .form-component.instance-22 .file, .form-component.instance-22 .date {
	font-size: 0.875em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
}

.form-component.instance-22 input[type="text"]:focus, .form-component.instance-22 input[type="email"]:focus, .form-component.instance-22 input[type="tel"]:focus, .form-component.instance-22 input[type="number"]:focus, .form-component.instance-22 textarea:focus, .form-component.instance-22 select:focus, .form-component.instance-22 .file:focus, .form-component.instance-22 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-22 input[type="text"], .form-component.instance-22 input[type="email"], .form-component.instance-22 input[type="tel"], .form-component.instance-22 input[type="number"], .form-component.instance-22 select, .form-component.instance-22 .file, .form-component.instance-22 .date {
	height: 1.5rem;
	padding: 0 0.525rem;
	line-height: calc(1.5rem - 2px);
}

.form-component.instance-22 textarea {
	padding: 0.525rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.2625rem;
}

.form-component.instance-22 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.525rem) center;
	padding-right: 1.875rem;
}

.form-component.instance-22 input[type="checkbox"] + label::before {
	border-radius: 0.375rem;
	color: #60626B;
	border: solid 1px #8A8C96;
	background-size: 0.6375rem;
	height: 1.125rem;
	width: 1.125rem;
	margin-right: 0.875rem;
}

.form-component.instance-22 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2360626B' /%3E%3C/svg%3E");
}

.form-component.instance-22 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-22 .number > input[type="number"] {
	padding-left: 1.7rem;
	padding-right: 1.7rem;
}

.form-component.instance-22 .number > button.decrement {
	bottom: calc(0.15rem + 1px);
	left: calc(0.15rem + 1px);
}

.form-component.instance-22 .number > button.increment {
	bottom: calc(0.15rem + 1px);
	right: calc(0.15rem + 1px);
}

.form-component.instance-22 .file::before {
	width: calc(100% - 2.025rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%2360626B' /%3E%3C/svg%3E");
	background-size: 0.875rem;
	background-position: left;
	padding-left: 1.225rem;
}

.form-component.instance-22 .file > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-22 .date::before {
	width: calc(100% - 2.025rem);
}

.form-component.instance-22 .date > button {
	bottom: 0.15rem;
	right: 0.15rem;
}

.form-component.instance-22 input[type="checkbox"] + label, .form-component.instance-22 p {
	font-size: 0.875em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	color: #60626B;
}

.form-component.instance-22 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-22 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-22 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-22 > .inner .actions {
	margin: 1.03125rem 0 0 0;
}

.form-component.instance-22 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-22 .actions button.waiting {
	color: transparent;
}

.form-component.instance-22 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-22 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-22 ::-webkit-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-22 :-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-22 ::-moz-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-22 :-ms-input-placeholder {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-22 .file[data-filename=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-22 .date[data-value=""]::before {
	color: #60626B;
	opacity: 0.55;
}

.form-component.instance-22 .actions button {
	display: none;
}

.form-component.instance-1 {
	justify-content: center;
	text-align: center;
}

.form-component.instance-1:not(:first-child) {
	margin-top: 1rem !important;
}

.form-component.instance-1:not(:last-child) {
	margin-bottom: 1rem !important;
}

.form-component.instance-1 > .inner > * {
	margin: 1rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-1 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-1 > .inner {
	width: 15rem;
}

.form-component.instance-1 label:first-child {
	margin: 0.25rem 0 0.75rem 0;
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #666666;
}

.form-component.instance-1 .field button {
	background-size: 2rem;
	height: calc(4rem - 4px);
	width: calc(4rem - 4px);
	border-radius: 0.16rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-1 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-1 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-1 input[type="text"], .form-component.instance-1 input[type="email"], .form-component.instance-1 input[type="tel"], .form-component.instance-1 input[type="number"], .form-component.instance-1 textarea, .form-component.instance-1 select, .form-component.instance-1 .file, .form-component.instance-1 .date {
	font-size: 2.875em;
	font-family: 'Roboto', sans-serif;
	letter-spacing: 0.3rem;
	padding-left: calc(0.3rem + 1.75rem);
	font-weight: 400;
	border-radius: 0.25rem;
	color: #8A8C96;
	border: solid 2px #8A8C96;
}

.form-component.instance-1 input[type="text"]:focus, .form-component.instance-1 input[type="email"]:focus, .form-component.instance-1 input[type="tel"]:focus, .form-component.instance-1 input[type="number"]:focus, .form-component.instance-1 textarea:focus, .form-component.instance-1 select:focus, .form-component.instance-1 .file:focus, .form-component.instance-1 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-1 input[type="text"], .form-component.instance-1 input[type="email"], .form-component.instance-1 input[type="tel"], .form-component.instance-1 input[type="number"], .form-component.instance-1 select, .form-component.instance-1 .file, .form-component.instance-1 .date {
	height: 5rem;
	padding: 0 1.75rem;
	line-height: calc(5rem - 4px);
}

.form-component.instance-1 textarea {
	padding: 1.75rem;
	height: 16rem;
	line-height: 1.5;
	padding-top: 1.4875rem;
}

.form-component.instance-1 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 1.75rem) center;
	padding-right: 4.5rem;
}

.form-component.instance-1 input[type="checkbox"] + label::before {
	border-radius: 0.25rem;
	color: #8A8C96;
	border: solid 2px #8A8C96;
	background-size: 2.125rem;
	height: 3.75rem;
	width: 3.75rem;
	margin-right: 1.875rem;
}

.form-component.instance-1 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%238A8C96' /%3E%3C/svg%3E");
}

.form-component.instance-1 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 2px #0C8389;
}

.form-component.instance-1 .number > input[type="number"] {
	padding-left: 4.5rem;
	padding-right: 4.5rem;
}

.form-component.instance-1 .number > button.decrement {
	bottom: calc(0.5rem + 2px);
	left: calc(0.5rem + 2px);
}

.form-component.instance-1 .number > button.increment {
	bottom: calc(0.5rem + 2px);
	right: calc(0.5rem + 2px);
}

.form-component.instance-1 .file::before {
	width: calc(100% - 6.75rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%238A8C96' /%3E%3C/svg%3E");
	background-size: 2.875rem;
	background-position: left;
	padding-left: 4.025rem;
}

.form-component.instance-1 .file > button {
	bottom: 0.5rem;
	right: 0.5rem;
}

.form-component.instance-1 .date::before {
	width: calc(100% - 6.75rem);
}

.form-component.instance-1 .date > button {
	bottom: 0.5rem;
	right: 0.5rem;
}

.form-component.instance-1 input[type="checkbox"] + label, .form-component.instance-1 p {
	font-size: 2.875em;
	line-height: 1.5;
	font-family: 'Roboto', sans-serif;
	letter-spacing: 0.3rem;
	padding-left: 0.3rem;
	font-weight: 400;
	color: #8A8C96;
}

.form-component.instance-1 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-1 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-1 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-1 > .inner .actions {
	margin: 1.375rem 0 0 0;
}

.form-component.instance-1 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-1 .actions button.waiting {
	color: transparent;
}

.form-component.instance-1 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-1 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-1 ::-webkit-input-placeholder {
	color: #8A8C96;
	opacity: 0.55;
}

.form-component.instance-1 :-moz-placeholder {
	color: #8A8C96;
	opacity: 0.55;
}

.form-component.instance-1 ::-moz-placeholder {
	color: #8A8C96;
	opacity: 0.55;
}

.form-component.instance-1 :-ms-input-placeholder {
	color: #8A8C96;
	opacity: 0.55;
}

.form-component.instance-1 .file[data-filename=""]::before {
	color: #8A8C96;
	opacity: 0.55;
}

.form-component.instance-1 .date[data-value=""]::before {
	color: #8A8C96;
	opacity: 0.55;
}

.form-component.instance-1 .actions button {
	display: none;
}

.form-component.instance-2:not(:first-child) {
	margin-top: 1.5rem !important;
}

.form-component.instance-2:not(:last-child) {
	margin-bottom: 1.5rem !important;
}

.form-component.instance-2 > .inner > * {
	margin: 1rem 0 0 0;
	max-width: 100%;
}

.form-component.instance-2 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-2 > .inner {
	width: 25rem;
}

.form-component.instance-2 label:first-child {
	margin: 0.25rem 0 0.75rem 0;
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #666666;
}

.form-component.instance-2 .field button {
	background-size: 1.25rem;
	height: calc(2.5rem - 2px);
	width: calc(2.5rem - 2px);
	border-radius: 0.16rem;
	background-color: #424141;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-2 .field button:hover {
	background-color: #1B1B1B;
}

.form-component.instance-2 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-2 input[type="text"], .form-component.instance-2 input[type="email"], .form-component.instance-2 input[type="tel"], .form-component.instance-2 input[type="number"], .form-component.instance-2 textarea, .form-component.instance-2 select, .form-component.instance-2 .file, .form-component.instance-2 .date {
	font-size: 1em;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	border-radius: 0.25rem;
	color: #8A8C96;
	border: solid 1px #8A8C96;
}

.form-component.instance-2 input[type="text"]:focus, .form-component.instance-2 input[type="email"]:focus, .form-component.instance-2 input[type="tel"]:focus, .form-component.instance-2 input[type="number"]:focus, .form-component.instance-2 textarea:focus, .form-component.instance-2 select:focus, .form-component.instance-2 .file:focus, .form-component.instance-2 .date.focus {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-2 input[type="text"], .form-component.instance-2 input[type="email"], .form-component.instance-2 input[type="tel"], .form-component.instance-2 input[type="number"], .form-component.instance-2 select, .form-component.instance-2 .file, .form-component.instance-2 .date {
	height: 3.125rem;
	padding: 0 1.09375rem;
	line-height: calc(3.125rem - 2px);
}

.form-component.instance-2 textarea {
	padding: 1.09375rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.83125rem;
}

.form-component.instance-2 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%238A8C96' /%3E%3C/svg%3E");
	background-position: calc(100% - 1.09375rem) center;
	padding-right: 3.09375rem;
}

.form-component.instance-2 input[type="checkbox"] + label::before {
	border-radius: 0.25rem;
	color: #8A8C96;
	border: solid 1px #8A8C96;
	background-size: 1.328125rem;
	height: 2.34375rem;
	width: 2.34375rem;
	margin-right: 1.171875rem;
}

.form-component.instance-2 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%238A8C96' /%3E%3C/svg%3E");
}

.form-component.instance-2 input[type="checkbox"]:focus + label::before {
	border-color: #0C8389;
	box-shadow: 0 0 0 1px #0C8389;
}

.form-component.instance-2 .number > input[type="number"] {
	padding-left: 3rem;
	padding-right: 3rem;
}

.form-component.instance-2 .number > button.decrement {
	bottom: calc(0.3125rem + 1px);
	left: calc(0.3125rem + 1px);
}

.form-component.instance-2 .number > button.increment {
	bottom: calc(0.3125rem + 1px);
	right: calc(0.3125rem + 1px);
}

.form-component.instance-2 .file::before {
	width: calc(100% - 4.21875rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%238A8C96' /%3E%3C/svg%3E");
	background-size: 1rem;
	background-position: left;
	padding-left: 1.4rem;
}

.form-component.instance-2 .file > button {
	bottom: 0.3125rem;
	right: 0.3125rem;
}

.form-component.instance-2 .date::before {
	width: calc(100% - 4.21875rem);
}

.form-component.instance-2 .date > button {
	bottom: 0.3125rem;
	right: 0.3125rem;
}

.form-component.instance-2 input[type="checkbox"] + label, .form-component.instance-2 p {
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #8A8C96;
}

.form-component.instance-2 .actions button {
	display: inline-block;
	width: auto;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.25rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #424141;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-2 .actions button:hover {
	background-color: #1B1B1B;
	transform: scale(1.1125);
}

.form-component.instance-2 > .inner > :first-child > label:first-child {
	margin-top: 0;
}

.form-component.instance-2 > .inner .actions {
	margin: 1.375rem 0 0 0;
}

.form-component.instance-2 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.34375rem;
	content: '';
	display: block;
	height: 2.34375rem;
	left: 50%;
	margin: -1.171875rem 0 0 -1.171875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.34375rem;
}

.form-component.instance-2 .actions button.waiting {
	color: transparent;
}

.form-component.instance-2 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-2 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-2 ::-webkit-input-placeholder {
	color: #8A8C96;
	opacity: 0.55;
}

.form-component.instance-2 :-moz-placeholder {
	color: #8A8C96;
	opacity: 0.55;
}

.form-component.instance-2 ::-moz-placeholder {
	color: #8A8C96;
	opacity: 0.55;
}

.form-component.instance-2 :-ms-input-placeholder {
	color: #8A8C96;
	opacity: 0.55;
}

.form-component.instance-2 .file[data-filename=""]::before {
	color: #8A8C96;
	opacity: 0.55;
}

.form-component.instance-2 .date[data-value=""]::before {
	color: #8A8C96;
	opacity: 0.55;
}

.form-component.instance-2 .actions button {
	display: none;
}

.links-component {
	display: flex;
	justify-content: var(--flex-alignment);
	letter-spacing: 0;
	line-height: 1.5;
	padding: 0;
}

.links-component > li {
	position: relative;
	text-align: var(--alignment);
}

.links-component > li > a {
	direction: var(--site-language-direction);
	display: block;
}

.links-component.style-1 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.5rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 0.875em;
	font-weight: 600;
}

.links-component.style-1:not(:first-child) {
	margin-top: 0rem !important;
}

.links-component.style-1:not(:last-child) {
	margin-bottom: 0rem !important;
}

.links-component.style-1 > li > a {
	color: #0C8389;
	text-decoration: underline;
}

.links-component.style-1 > li > a:hover {
	text-decoration: none;
}

.links-component.instance-4 > li.n01 > a {
	cursor: pointer;
}

.links-component.instance-6 > li.n01 > a {
	cursor: pointer;
}

.links-component.instance-12 > li.n01 > a {
	cursor: pointer;
}

.links-component.instance-8 > li.n01 > a {
	cursor: pointer;
}

.links-component.instance-10 > li.n01 > a {
	cursor: pointer;
}

.links-component.instance-1 > li.n01 > a {
	cursor: pointer;
}

.links-component.instance-2 > li.n01 > a {
	cursor: pointer;
}

@media (max-width: 1920px) {
	
}

@media (max-width: 1680px) {
	html {
		font-size: 13pt;
	}
}

@media (max-width: 1280px) {
	html {
		font-size: 13pt;
	}
}

@media (max-width: 1024px) {
	
}

@media (max-width: 980px) {
	html {
		font-size: 11pt;
	}
}

@media (max-width: 736px) {
	html {
		font-size: 11pt;
	}
	
	
	
	.site-main > .inner {
		--padding-horizontal: 2rem;
		--padding-vertical: 2.875rem;
		--spacing: 0.75rem;
	}
	
	.site-main > .inner > * > .full {
		margin-left: calc(-2rem);
		max-width: calc(100% + 4rem + 0.4725px);
		width: calc(100% + 4rem + 0.4725px);
	}
	
	.site-main > .inner > * > .full.screen {
		margin-left: -50vw;
	}
	
	.site-main > .inner > .active > .full:first-child {
		margin-top: -2.875rem !important;
	}
	
	.site-main > .inner > .active > .full:last-child {
		margin-bottom: -2.875rem !important;
	}
	
	.image-component.instance-8:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.image-component.instance-8:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.image-component.instance-8 > .frame {
		width: 10rem;
	}
	
	.image-component.instance-25:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.image-component.instance-25:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.image-component.instance-25 > .frame {
		width: 11.25rem;
	}
	
	.image-component.instance-15:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.image-component.instance-15:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.image-component.instance-15 > .frame {
		width: 11rem;
	}
	
	.image-component.instance-6:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.image-component.instance-6:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.image-component.instance-6 > .frame {
		width: 11.625rem;
	}
	
	.image-component.instance-7:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.image-component.instance-7:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.image-component.instance-7 > .frame {
		width: 11.625rem;
	}
	
	.image-component.instance-12:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.image-component.instance-12:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.image-component.instance-12 > .frame {
		width: 21.875rem;
	}
	
	.image-component.instance-16:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.image-component.instance-16:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.image-component.instance-16 > .frame {
		width: 21.875rem;
	}
	
	.image-component.instance-17:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.image-component.instance-17:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.image-component.instance-17 > .frame {
		width: 21.875rem;
	}
	
	.image-component.instance-19:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.image-component.instance-19:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.image-component.instance-19 > .frame {
		width: 9rem;
	}
	
	.image-component.instance-18:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.image-component.instance-18:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.image-component.instance-18 > .frame {
		width: 9rem;
	}
	
	.image-component.instance-22:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.image-component.instance-22:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.image-component.instance-22 > .frame {
		width: 21.875rem;
	}
	
	.image-component.instance-23:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.image-component.instance-23:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.image-component.instance-23 > .frame {
		width: 21.875rem;
	}
	
	.image-component.instance-24:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.image-component.instance-24:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.image-component.instance-24 > .frame {
		width: 21.875rem;
	}
	
	.image-component.instance-2:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.image-component.instance-2:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.image-component.instance-2 > .frame {
		width: 21.875rem;
	}
	
	.image-component.instance-4:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.image-component.instance-4:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.image-component.instance-4 > .frame {
		width: 21.875rem;
	}
	
	.image-component.instance-9:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.image-component.instance-9:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.image-component.instance-9 > .frame {
		width: 21.875rem;
	}
	
	.image-component.instance-1:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.image-component.instance-1:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.image-component.instance-1 > .frame {
		width: 21.875rem;
	}
	
	.image-component.instance-3:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.image-component.instance-3:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.image-component.instance-3 > .frame {
		width: 11rem;
	}
	
	.image-component.instance-10:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.image-component.instance-10:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.image-component.instance-10 > .frame {
		width: 11rem;
	}
	
	.image-component.instance-20:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.image-component.instance-20:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.image-component.instance-20 > .frame {
		width: 11rem;
	}
	
	.image-component.instance-21:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.image-component.instance-21:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.image-component.instance-21 > .frame {
		width: 11rem;
	}
	
	.image-component.instance-11:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.image-component.instance-11:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.image-component.instance-11 > .frame {
		width: 11rem;
	}
	
	.image-component.instance-5:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.image-component.instance-5:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.image-component.instance-5 > .frame {
		width: 21.875rem;
	}
	
	.image-component.instance-14:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.image-component.instance-14:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.image-component.instance-14 > .frame {
		width: 11rem;
	}
	
	.image-component.instance-13:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.image-component.instance-13:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.image-component.instance-13 > .frame {
		width: 11rem;
	}
	
	.text-component.style-6:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	.text-component.style-6:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	.text-component.style-6 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	.text-component.instance-20 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-114 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-6:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.text-component.instance-6:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.text-component.instance-6 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-7:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	.text-component.instance-7:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	.text-component.instance-7 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.375;
	}
	
	.text-component.instance-9 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-10:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.text-component.instance-10:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.text-component.instance-10 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-40 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-41 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.style-4:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.style-4:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.style-4 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.style-1:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.text-component.style-1:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.text-component.style-1 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.style-2:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.text-component.style-2:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.text-component.style-2 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.375em;
		line-height: 1.5;
	}
	
	.text-component.style-3:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.text-component.style-3:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.text-component.style-3 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-135:not(:first-child) {
		margin-top: 0.28125rem !important;
	}
	
	.text-component.instance-135:not(:last-child) {
		margin-bottom: 0.28125rem !important;
	}
	
	.text-component.instance-135 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-137:not(:first-child) {
		margin-top: 0.28125rem !important;
	}
	
	.text-component.instance-137:not(:last-child) {
		margin-bottom: 0.28125rem !important;
	}
	
	.text-component.instance-137 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.text-component.instance-138:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-138:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-138 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-58:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-58:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-58 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-13:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-13:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-13 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-11:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	.text-component.instance-11:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	.text-component.instance-11 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-166:not(:first-child) {
		margin-top: 0.28125rem !important;
	}
	
	.text-component.instance-166:not(:last-child) {
		margin-bottom: 0.28125rem !important;
	}
	
	.text-component.instance-166 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.text-component.instance-68:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-68:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-68 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-78:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-78:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-78 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-112:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-112:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-112 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-117:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.text-component.instance-117:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.text-component.instance-117 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-140:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-140:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-140 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-123:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-123:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-123 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-127:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.text-component.instance-127:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.text-component.instance-127 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-171:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-171:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-171 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-175:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.text-component.instance-175:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.text-component.instance-175 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-179:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-179:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-179 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-183:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.text-component.instance-183:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.text-component.instance-183 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-132:not(:first-child) {
		margin-top: 0.28125rem !important;
	}
	
	.text-component.instance-132:not(:last-child) {
		margin-bottom: 0.28125rem !important;
	}
	
	.text-component.instance-132 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-168:not(:first-child) {
		margin-top: 0.28125rem !important;
	}
	
	.text-component.instance-168:not(:last-child) {
		margin-bottom: 0.28125rem !important;
	}
	
	.text-component.instance-168 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.text-component.instance-36:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-36:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-36 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-71:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-71:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-71 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-60:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.text-component.instance-60:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.text-component.instance-60 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.text-component.instance-87:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	.text-component.instance-87:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	.text-component.instance-87 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.text-component.instance-63:not(:first-child) {
		margin-top: 0.9375rem !important;
	}
	
	.text-component.instance-63:not(:last-child) {
		margin-bottom: 0.9375rem !important;
	}
	
	.text-component.instance-63 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-62:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-62:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-62 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-67:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.text-component.instance-67:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.text-component.instance-67 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.625em;
		line-height: 1.5;
	}
	
	.text-component.instance-165:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.text-component.instance-165:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.text-component.instance-165 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.text-component.instance-37:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-37:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-37 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-93:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-93:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-93 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-94:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-94:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-94 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-146:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-146:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-146 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-147:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-147:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-147 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-85:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-85:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-85 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-86:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-86:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-86 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-49:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-49:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-49 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-96:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	.text-component.instance-96:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	.text-component.instance-96 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-69:not(:first-child) {
		margin-top: 0.28125rem !important;
	}
	
	.text-component.instance-69:not(:last-child) {
		margin-bottom: 0.28125rem !important;
	}
	
	.text-component.instance-69 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.text-component.instance-97:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-97:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-97 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-197:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-197:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-197 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-200:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-200:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-200 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-210:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-210:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-210 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-222:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.text-component.instance-222:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.text-component.instance-222 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.text-component.instance-38:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-38:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-38 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-106:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.text-component.instance-106:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.text-component.instance-106 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.text-component.instance-224:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-224:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-224 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-149:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-149:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-149 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-227:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.text-component.instance-227:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.text-component.instance-227 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.text-component.instance-99:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-99:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-99 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-100:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-100:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-100 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.text-component.instance-102:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.text-component.instance-102:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.text-component.instance-102 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.text-component.instance-103:not(:first-child) {
		margin-top: 0.9375rem !important;
	}
	
	.text-component.instance-103:not(:last-child) {
		margin-bottom: 0.9375rem !important;
	}
	
	.text-component.instance-103 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-152:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-152:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-152 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-153:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-153:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-153 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.text-component.instance-157:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	.text-component.instance-157:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	.text-component.instance-157 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.text-component.instance-158:not(:first-child) {
		margin-top: 0.9375rem !important;
	}
	
	.text-component.instance-158:not(:last-child) {
		margin-bottom: 0.9375rem !important;
	}
	
	.text-component.instance-158 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-27:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-27:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-27 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-163:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	.text-component.instance-163:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	.text-component.instance-163 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.text-component.instance-101:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-101:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-101 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-164:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.text-component.instance-164:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.text-component.instance-164 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.text-component.instance-194:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.text-component.instance-194:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.text-component.instance-194 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-120:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-120:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-120 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-105:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-105:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-105 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-177:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-177:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-177 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-119:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-119:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-119 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-129:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-129:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-129 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-2:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-2:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-2 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-162:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-162:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-162 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-206:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-206:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-206 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-161:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-161:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-161 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-121:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-121:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-121 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-130:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-130:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-130 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.style-5 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	.text-component.instance-187 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-64:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-64:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-64 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-223:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-223:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-223 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-144:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-144:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-144 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-80:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-80:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-80 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-185 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-201:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-201:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-201 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-212:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-212:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-212 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-216:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-216:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-216 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-74:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-74:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-74 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-76:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-76:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-76 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-167:not(:first-child) {
		margin-top: 0.28125rem !important;
	}
	
	.text-component.instance-167:not(:last-child) {
		margin-bottom: 0.28125rem !important;
	}
	
	.text-component.instance-167 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.text-component.instance-75:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-75:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-75 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-226:not(:first-child) {
		margin-top: 0.28125rem !important;
	}
	
	.text-component.instance-226:not(:last-child) {
		margin-bottom: 0.28125rem !important;
	}
	
	.text-component.instance-226 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-150:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.text-component.instance-150:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.text-component.instance-150 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.text-component.instance-225:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-225:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-225 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-199:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.text-component.instance-199:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.text-component.instance-199 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-203:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-203:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-203 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-128:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-128:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-128 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-205:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.text-component.instance-205:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.text-component.instance-205 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-208:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-208:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-208 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-83:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-83:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-83 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-35:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.text-component.instance-35:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.text-component.instance-35 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-54 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-118:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-118:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-118 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-108:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-108:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-108 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-190:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-190:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-190 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-65:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-65:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-65 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-195:not(:first-child) {
		margin-top: 0.9375rem !important;
	}
	
	.text-component.instance-195:not(:last-child) {
		margin-bottom: 0.9375rem !important;
	}
	
	.text-component.instance-195 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-107:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-107:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-107 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-57:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.text-component.instance-57:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.text-component.instance-57 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-176:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.text-component.instance-176:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.text-component.instance-176 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-193:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.text-component.instance-193:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.text-component.instance-193 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-88 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.375em;
		line-height: 1.5;
	}
	
	.text-component.instance-25 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-191 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	.text-component.instance-192:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.text-component.instance-192:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.text-component.instance-192 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-188 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	.text-component.instance-189:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.text-component.instance-189:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.text-component.instance-189 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-50 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	.text-component.instance-51:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.text-component.instance-51:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.text-component.instance-51 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-52:not(:first-child) {
		margin-top: 0.28125rem !important;
	}
	
	.text-component.instance-52:not(:last-child) {
		margin-bottom: 0.28125rem !important;
	}
	
	.text-component.instance-52 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.text-component.instance-44 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-47 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-45:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.text-component.instance-45:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.text-component.instance-45 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.5;
	}
	
	.text-component.instance-46 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.text-component.instance-28 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.text-component.instance-19 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-34:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.text-component.instance-34:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.text-component.instance-34 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	.text-component.instance-24 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	.text-component.instance-29:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.text-component.instance-29:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.text-component.instance-29 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-42:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.text-component.instance-42:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.text-component.instance-42 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-154 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	.text-component.instance-155:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	.text-component.instance-155:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	.text-component.instance-155 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.text-component.instance-159:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	.text-component.instance-159:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	.text-component.instance-159 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.text-component.instance-160:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	.text-component.instance-160:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	.text-component.instance-160 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.text-component.instance-3 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	.text-component.instance-4:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.text-component.instance-4:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.text-component.instance-4 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-5:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.text-component.instance-5:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.text-component.instance-5 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	
	
	.container-component.instance-14:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-14 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0rem;
	}
	
	.container-component.instance-14.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-14.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-14.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-14.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-14.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-14.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-14.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-14.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-14.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-14.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-14.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-14.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-14.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-14.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-14.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-14.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-14.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-14.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-14.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-14.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-14.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-14.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.style-1:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.container-component.style-1:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.style-1 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 0.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.style-1.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.style-1.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.style-1.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.style-1.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > div:first-of-type, .container-component.style-1.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > div:last-of-type, .container-component.style-1.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > div:first-of-type, .container-component.style-1.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > div:last-of-type, .container-component.style-1.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-28 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1rem;
		--padding-vertical: 2rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-28.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-28.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-28.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-28.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-28.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-28.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-28.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-28.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-28.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-28.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-28.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-28.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-28.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-28.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-28.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-28.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-28.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-28.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-28.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-28.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-28.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-28.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.style-2:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.style-2 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1rem;
		--spacing: 0.25rem;
	}
	
	.container-component.style-2.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.style-2.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.style-2.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.style-2.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.style-2.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.style-2.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.style-2.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.style-2.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.style-2.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.style-2.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.style-2.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.style-2.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.style-2.columns > .wrapper > .inner > div:first-of-type, .container-component.style-2.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.style-2.columns > .wrapper > .inner > div:last-of-type, .container-component.style-2.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.style-2.columns > .wrapper > .inner > div:first-of-type, .container-component.style-2.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.style-2.columns > .wrapper > .inner > div:last-of-type, .container-component.style-2.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.style-2.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.style-2.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container-component.instance-2 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-2 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-2 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container-component.instance-23:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.container-component.instance-23:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-23 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-23.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-23.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-23.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-23.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-23.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-23.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-23.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-23.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-23.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-23.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-23.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-23.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-23.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-23.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-23.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-23.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-23.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-23.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-23.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-23.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-23.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-23.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container-component.instance-23 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-23 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container-component.instance-58:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.container-component.instance-58 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-58.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-58.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-58.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-58.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-58.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-58.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-58.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-58.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-58.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-58.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-58.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-58.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-58.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-58.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-58.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-58.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-58.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-58.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-58.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-58.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-58.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-58.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-7 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1rem;
		--padding-vertical: 1rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-7.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-7.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-7.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-7.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-7.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-7.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-7.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-7.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-7.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-7.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-7.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-7.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-7.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-7.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-7.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-7.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-7.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-7.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-7.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-7.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-7.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-7.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container-component.instance-7 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-7 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-7 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container-component.instance-18 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1rem;
		--padding-vertical: 1rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-18.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-18.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-18.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-18.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-18.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-18.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-18.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-18.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-18.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-18.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-18.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-18.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-18.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-18.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-18.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-18.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-18.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-18.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-18.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-18.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-18.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-18.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container-component.instance-18 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-18 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-18 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container-component.instance-4 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1rem;
		--padding-vertical: 1rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-4.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-4.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-4.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-4.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container-component.instance-4 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-4 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-4 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container-component.instance-5 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1rem;
		--padding-vertical: 1rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-5.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-5.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-5.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-5.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-5.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-5.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-5.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-5.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-5.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-5.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-5.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-5.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-5.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-5.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-5.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-5.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-5.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-5.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-5.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-5.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-5.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-5.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container-component.instance-5 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-5 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-5 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container-component.instance-6 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1rem;
		--padding-vertical: 1rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-6.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-6.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-6.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-6.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container-component.instance-6 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-6 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-6 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container-component.instance-8:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-8:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-8 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-8.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-8.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-8.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-8.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-12:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-12:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-12 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-12.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-12.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-12.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-12.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-42:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-42:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-42 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-42.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-42.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-42.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-42.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-42.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-42.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-42.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-42.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-42.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-42.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-42.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-42.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-42.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-42.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-42.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-42.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-42.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-42.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-42.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-42.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-42.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-42.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container-component.instance-42 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-42 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container-component.instance-3:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-3:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-3 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-3.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-3.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-3.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-3.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container-component.instance-3 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-3 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container-component.instance-60:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-60:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-60 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-60.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-60.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-60.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-60.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-60.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-60.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-60.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-60.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-60.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-60.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-60.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-60.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-60.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-60.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-60.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-60.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-60.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-60.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-60.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-60.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-60.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-60.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container-component.instance-60 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-60 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container-component.instance-46:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-46:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-46 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-46.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-46.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-46.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-46.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-46.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-46.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-46.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-46.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-46.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-46.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-46.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-46.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-46.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-46.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-46.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-46.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-46.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-46.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-46.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-46.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-46.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-46.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container-component.instance-46 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-46 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container-component.instance-61:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-61:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-61 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-61.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-61.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-61.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-61.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-61.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-61.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-61.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-61.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-61.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-61.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-61.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-61.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-61.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-61.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-61.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-61.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-61.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-61.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-61.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-61.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-61.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-61.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container-component.instance-61 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-61 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container-component.instance-9:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.container-component.instance-9 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1rem;
		--padding-vertical: 2rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-9.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-9.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-9.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-9.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-30:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.container-component.instance-30:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-30 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1rem;
		--padding-vertical: 2rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-30.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-30.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-30.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-30.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-30.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-30.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-30.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-30.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-30.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-30.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-30.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-30.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-30.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-30.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-30.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-30.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-30.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-30.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-30.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-30.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-30.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-30.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.style-3:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.container-component.style-3 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1rem;
		--padding-vertical: 2rem;
		--spacing: 0.25rem;
	}
	
	.container-component.style-3.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.style-3.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.style-3.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.style-3.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.style-3.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.style-3.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.style-3.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.style-3.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.style-3.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.style-3.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.style-3.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.style-3.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.style-3.columns > .wrapper > .inner > div:first-of-type, .container-component.style-3.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.style-3.columns > .wrapper > .inner > div:last-of-type, .container-component.style-3.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.style-3.columns > .wrapper > .inner > div:first-of-type, .container-component.style-3.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.style-3.columns > .wrapper > .inner > div:last-of-type, .container-component.style-3.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.style-3.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.style-3.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-27:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-27:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-27 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-27.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-27.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-27.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-27.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-27.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-27.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-27.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-27.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-27.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-27.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-27.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-27.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-27.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-27.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-27.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-27.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-27.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-27.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-27.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-27.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-27.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-27.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-17:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-17:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-17 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-17.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-17.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-17.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-17.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-17.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-17.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-17.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-17.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-17.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-17.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-17.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-17.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-17.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-17.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-17.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-17.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-17.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-17.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-17.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-17.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-17.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-17.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-72:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-72:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-72 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-72.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-72.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-72.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-72.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-72.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-72.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-72.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-72.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-72.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-72.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-72.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-72.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-72.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-72.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-72.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-72.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-72.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-72.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-72.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-72.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-72.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-72.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-40:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-40:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-40 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-40.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-40.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-40.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-40.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-40.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-40.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-40.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-40.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-40.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-40.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-40.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-40.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-40.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-40.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-40.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-40.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-40.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-40.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-40.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-40.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-40.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-40.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-10:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-10:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-10 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-10.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-10.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-10.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-10.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-10.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-10.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-10.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-10.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-10.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-10.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-10.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-10.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-10.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-10.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-10.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-10.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-10.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-10.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-10.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-10.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-10.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-10.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-59:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-59:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-59 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-59.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-59.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-59.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-59.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-59.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-59.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-59.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-59.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-59.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-59.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-59.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-59.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-59.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-59.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-59.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-59.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-59.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-59.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-59.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-59.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-59.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-59.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-22:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-22:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-22 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-22.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-22.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-22.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-22.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-22.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-22.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-22.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-22.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-22.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-22.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-22.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-22.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-22.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-22.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-22.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-22.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-22.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-22.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-22.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-22.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-22.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-22.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-62:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-62 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0rem;
	}
	
	.container-component.instance-62.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-62.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-62.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-62.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-62.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-62.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-62.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-62.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-62.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-62.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-62.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-62.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-62.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-62.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-62.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-62.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-62.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-62.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-62.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-62.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-62.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-62.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-21:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-21:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-21 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-21.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-21.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-21.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-21.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-21.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-21.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-21.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-21.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-21.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-21.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-21.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-21.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-21.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-21.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-21.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-21.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-21.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-21.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-21.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-21.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-21.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-21.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-11:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-11:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-11 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-11.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-11.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-11.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-11.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-11.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-11.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-11.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-11.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-11.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-11.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-11.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-11.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-11.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-11.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-11.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-11.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-11.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-11.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-11.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-11.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-11.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-11.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-26:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.container-component.instance-26:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.container-component.instance-26 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1rem;
		--padding-vertical: 3.5rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-26.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-26.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-26.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-26.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-26.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-26.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-26.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-26.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-26.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-26.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-26.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-26.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-26.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-26.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-26.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-26.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-26.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-26.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-26.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-26.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-26.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-26.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-25:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.container-component.instance-25:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.container-component.instance-25 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1rem;
		--padding-vertical: 3.5rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-25.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-25.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-25.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-25.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-25.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-25.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-25.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-25.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-25.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-25.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-25.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-25.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-25.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-25.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-25.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-25.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-25.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-25.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-25.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-25.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-25.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-25.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-32:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-32 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0rem;
	}
	
	.container-component.instance-32.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-32.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-32.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-32.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-32.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-32.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-32.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-32.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-32.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-32.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-32.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-32.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-32.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-32.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-32.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-32.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-32.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-32.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-32.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-32.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-32.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-32.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-73:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-73:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-73 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-73.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-73.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-73.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-73.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-73.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-73.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-73.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-73.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-73.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-73.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-73.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-73.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-73.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-73.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-73.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-73.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-73.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-73.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-73.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-73.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-73.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-73.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-77:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-77:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-77 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-77.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-77.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-77.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-77.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-77.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-77.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-77.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-77.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-77.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-77.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-77.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-77.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-77.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-77.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-77.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-77.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-77.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-77.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-77.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-77.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-77.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-77.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container-component.instance-77 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-77 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container-component.instance-75:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-75:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-75 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-75.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-75.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-75.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-75.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-75.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-75.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-75.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-75.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-75.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-75.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-75.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-75.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-75.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-75.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-75.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-75.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-75.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-75.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-75.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-75.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-75.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-75.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container-component.instance-75 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-75 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container-component.instance-76:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-76:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-76 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-76.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-76.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-76.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-76.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-76.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-76.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-76.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-76.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-76.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-76.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-76.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-76.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-76.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-76.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-76.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-76.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-76.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-76.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-76.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-76.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-76.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-76.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container-component.instance-76 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-76 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container-component.instance-48:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-48:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-48 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-48.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-48.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-48.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-48.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-48.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-48.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-48.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-48.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-48.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-48.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-48.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-48.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-48.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-48.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-48.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-48.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-48.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-48.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-48.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-48.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-48.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-48.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container-component.instance-48 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-48 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container-component.instance-45:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-45:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-45 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-45.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-45.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-45.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-45.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-45.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-45.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-45.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-45.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-45.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-45.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-45.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-45.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-45.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-45.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-45.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-45.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-45.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-45.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-45.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-45.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-45.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-45.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-49:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-49:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-49 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-49.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-49.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-49.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-49.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-49.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-49.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-49.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-49.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-49.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-49.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-49.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-49.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-49.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-49.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-49.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-49.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-49.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-49.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-49.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-49.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-49.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-49.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-47:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-47:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-47 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-47.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-47.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-47.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-47.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-47.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-47.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-47.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-47.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-47.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-47.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-47.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-47.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-47.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-47.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-47.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-47.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-47.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-47.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-47.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-47.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-47.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-47.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-50:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-50:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-50 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-50.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-50.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-50.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-50.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-50.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-50.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-50.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-50.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-50.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-50.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-50.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-50.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-50.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-50.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-50.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-50.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-50.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-50.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-50.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-50.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-50.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-50.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-51:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-51:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-51 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-51.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-51.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-51.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-51.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-51.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-51.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-51.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-51.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-51.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-51.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-51.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-51.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-51.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-51.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-51.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-51.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-51.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-51.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-51.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-51.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-51.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-51.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-74:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-74:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-74 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-74.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-74.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-74.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-74.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-74.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-74.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-74.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-74.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-74.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-74.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-74.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-74.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-74.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-74.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-74.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-74.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-74.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-74.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-74.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-74.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-74.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-74.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-78:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-78:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-78 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-78.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-78.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-78.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-78.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-78.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-78.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-78.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-78.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-78.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-78.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-78.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-78.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-78.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-78.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-78.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-78.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-78.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-78.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-78.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-78.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-78.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-78.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-52:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-52:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-52 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-52.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-52.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-52.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-52.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-52.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-52.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-52.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-52.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-52.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-52.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-52.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-52.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-52.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-52.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-52.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-52.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-52.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-52.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-52.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-52.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-52.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-52.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-41:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-41 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0rem;
	}
	
	.container-component.instance-41.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-41.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-41.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-41.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-41.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-41.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-41.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-41.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-41.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-41.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-41.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-41.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-41.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-41.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-41.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-41.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-41.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-41.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-41.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-41.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-41.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-41.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-34:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-34:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-34 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-34.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-34.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-34.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-34.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-34.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-34.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-34.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-34.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-34.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-34.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-34.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-34.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-34.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-34.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-34.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-34.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-34.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-34.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-34.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-34.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-34.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-34.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-35:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-35:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-35 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-35.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-35.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-35.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-35.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-35.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-35.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-35.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-35.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-35.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-35.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-35.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-35.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-35.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-35.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-35.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-35.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-35.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-35.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-35.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-35.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-35.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-35.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container-component.instance-35 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-35 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container-component.instance-36:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-36:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-36 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-36.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-36.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-36.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-36.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-36.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-36.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-36.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-36.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-36.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-36.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-36.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-36.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-36.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-36.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-36.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-36.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-36.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-36.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-36.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-36.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-36.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-36.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-37:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-37:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-37 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-37.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-37.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-37.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-37.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-37.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-37.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-37.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-37.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-37.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-37.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-37.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-37.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-37.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-37.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-37.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-37.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-37.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-37.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-37.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-37.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-37.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-37.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-38:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-38:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-38 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-38.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-38.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-38.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-38.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-38.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-38.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-38.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-38.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-38.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-38.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-38.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-38.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-38.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-38.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-38.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-38.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-38.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-38.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-38.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-38.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-38.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-38.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-39:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-39:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-39 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-39.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-39.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-39.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-39.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-39.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-39.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-39.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-39.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-39.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-39.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-39.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-39.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-39.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-39.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-39.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-39.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-39.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-39.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-39.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-39.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-39.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-39.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-65:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-65 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0rem;
	}
	
	.container-component.instance-65.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-65.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-65.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-65.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-65.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-65.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-65.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-65.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-65.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-65.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-65.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-65.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-65.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-65.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-65.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-65.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-65.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-65.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-65.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-65.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-65.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-65.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-13:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.container-component.instance-13:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-13 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-13.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-13.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-13.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-13.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-13.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-13.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-13.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-13.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-13.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-13.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-13.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-13.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-13.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-13.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-13.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-13.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-13.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-13.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-13.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-13.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-13.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-13.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-33:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.container-component.instance-33:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-33 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.375rem;
		--padding-vertical: 1.75rem;
		--spacing: 0.25rem;
	}
	
	.container-component.instance-33.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-33.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-33.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-33.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-33.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-33.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-33.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-33.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-33.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-33.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-33.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-33.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-33.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-33.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-33.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-33.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-33.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-33.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-33.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-33.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-33.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-33.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-68:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-68 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0rem;
	}
	
	.container-component.instance-68.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-68.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-68.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-68.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-68.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-68.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-68.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-68.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-68.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-68.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-68.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-68.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-68.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-68.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-68.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-68.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-68.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-68.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-68.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-68.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-68.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-68.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-70:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-70 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0rem;
	}
	
	.container-component.instance-70.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-70.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-70.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-70.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-70.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-70.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-70.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-70.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-70.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-70.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-70.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-70.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-70.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-70.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-70.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-70.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-70.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-70.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-70.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-70.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-70.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-70.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-19:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-19 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0rem;
	}
	
	.container-component.instance-19.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-19.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-19.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-19.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-19.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-19.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-19.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-19.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-19.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-19.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-19.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-19.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-19.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-19.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-19.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-19.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-19.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-19.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-19.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-19.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-19.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-19.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-57:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-57 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0rem;
	}
	
	.container-component.instance-57.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-57.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-57.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-57.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-57.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-57.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-57.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-57.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-57.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-57.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-57.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-57.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-57.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-57.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-57.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-57.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-57.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-57.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-57.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-57.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-57.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-57.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-56:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-56 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0rem;
	}
	
	.container-component.instance-56.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-56.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-56.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-56.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-56.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-56.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-56.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-56.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-56.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-56.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-56.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-56.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-56.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-56.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-56.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-56.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-56.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-56.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-56.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-56.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-56.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-56.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-1:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-1 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
		--spacing: 0rem;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-1.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-1.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-1.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-1.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.divider-component.instance-1::before {
		width: 20rem;
	}
	
	.divider-component.instance-2::before {
		width: 20rem;
	}
	
	.divider-component.instance-25::before {
		width: 20rem;
	}
	
	.divider-component.instance-27::before {
		width: 20rem;
	}
	
	.divider-component.style-1:not(:first-child) {
		margin-top: 0.125rem !important;
	}
	
	.divider-component.style-1:not(:last-child) {
		margin-bottom: 0.125rem !important;
	}
	
	.divider-component.style-1::before {
		width: 48rem;
	}
	
	.divider-component.instance-10::before {
		width: 55rem;
	}
	
	.divider-component.instance-40::before {
		width: 33rem;
	}
	
	.divider-component.instance-5::before {
		width: 20rem;
	}
	
	.divider-component.instance-36::before {
		width: 20rem;
	}
	
	.divider-component.instance-53::before {
		width: 33rem;
	}
	
	.divider-component.instance-52::before {
		width: 33rem;
	}
	
	.divider-component.instance-37::before {
		width: 33rem;
	}
	
	.divider-component.instance-3::before {
		width: 33rem;
	}
	
	.divider-component.instance-14::before {
		width: 33rem;
	}
	
	.divider-component.instance-38::before {
		width: 33rem;
	}
	
	.divider-component.instance-39::before {
		width: 33rem;
	}
	
	.buttons-component.instance-24 {
		gap: 0.875rem;
	}
	
	.buttons-component.instance-24:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.buttons-component.instance-24:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.buttons-component.instance-24 > li > a {
		letter-spacing: 0rem;
		font-size: 1.25em;
	}
	
	.buttons-component.instance-32 {
		gap: 0.875rem;
	}
	
	.buttons-component.instance-32:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.buttons-component.instance-32:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.buttons-component.instance-32 > li > a {
		letter-spacing: 0rem;
		font-size: 1.125em;
	}
	
	.buttons-component.instance-50 {
		gap: 0.875rem;
	}
	
	.buttons-component.instance-50:not(:first-child) {
		margin-top: 0.9375rem !important;
	}
	
	.buttons-component.instance-50:not(:last-child) {
		margin-bottom: 0.9375rem !important;
	}
	
	.buttons-component.instance-50 > li > a {
		letter-spacing: 0rem;
		font-size: 1.25em;
	}
	
	.buttons-component.instance-126 {
		gap: 0.875rem;
	}
	
	.buttons-component.instance-126:not(:first-child) {
		margin-top: 0.9375rem !important;
	}
	
	.buttons-component.instance-126:not(:last-child) {
		margin-bottom: 0.9375rem !important;
	}
	
	.buttons-component.instance-126 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.style-2 {
		gap: 1.5rem;
	}
	
	.buttons-component.style-2:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.style-2:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.style-2 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.style-3 {
		gap: 1.5rem;
	}
	
	.buttons-component.style-3 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-9 {
		gap: 0.875rem;
	}
	
	.buttons-component.instance-9:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.instance-9:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.instance-9 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.style-1 {
		gap: 0.875rem;
	}
	
	.buttons-component.style-1:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.style-1:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.style-1 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-11 {
		gap: 0.875rem;
	}
	
	.buttons-component.instance-11:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.instance-11:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.instance-11 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-12 {
		gap: 0.875rem;
	}
	
	.buttons-component.instance-12:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.instance-12:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.instance-12 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-15 {
		gap: 0.875rem;
	}
	
	.buttons-component.instance-15:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.instance-15:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.instance-15 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-16 {
		gap: 0.875rem;
	}
	
	.buttons-component.instance-16:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.instance-16:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.instance-16 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-18 {
		gap: 0.875rem;
	}
	
	.buttons-component.instance-18:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.instance-18:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.instance-18 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-20 {
		gap: 0.875rem;
	}
	
	.buttons-component.instance-20:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.instance-20:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.instance-20 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-21 {
		gap: 0.875rem;
	}
	
	.buttons-component.instance-21:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.instance-21:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.instance-21 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-22 {
		gap: 0.875rem;
	}
	
	.buttons-component.instance-22:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.instance-22:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.instance-22 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-25 {
		gap: 0.875rem;
	}
	
	.buttons-component.instance-25:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.instance-25:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.instance-25 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-26 {
		gap: 0.875rem;
	}
	
	.buttons-component.instance-26:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.instance-26:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.instance-26 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-27 {
		gap: 0.875rem;
	}
	
	.buttons-component.instance-27:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.instance-27:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.instance-27 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-28 {
		gap: 0.875rem;
	}
	
	.buttons-component.instance-28:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.instance-28:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.instance-28 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-38 {
		gap: 0.875rem;
	}
	
	.buttons-component.instance-38:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.instance-38:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.instance-38 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-39 {
		gap: 0.875rem;
	}
	
	.buttons-component.instance-39:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.instance-39:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.instance-39 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-40 {
		gap: 0.875rem;
	}
	
	.buttons-component.instance-40:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.instance-40:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.instance-40 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.style-4 {
		gap: 1.5rem;
	}
	
	.buttons-component.style-4 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.style-5 {
		gap: 1.5rem;
	}
	
	.buttons-component.style-5:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.style-5:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.style-5 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-97 {
		gap: 1.5rem;
	}
	
	.buttons-component.instance-97:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.instance-97:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.instance-97 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-100 {
		gap: 1.5rem;
	}
	
	.buttons-component.instance-100:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.instance-100:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.instance-100 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-104 {
		gap: 1.5rem;
	}
	
	.buttons-component.instance-104:not(:first-child) {
		margin-top: 0.9375rem !important;
	}
	
	.buttons-component.instance-104:not(:last-child) {
		margin-bottom: 0.9375rem !important;
	}
	
	.buttons-component.instance-104 > li > a {
		letter-spacing: 0rem;
		font-size: 1.125em;
	}
	
	.buttons-component.instance-103 {
		gap: 1.5rem;
	}
	
	.buttons-component.instance-103:not(:first-child) {
		margin-top: 0.9375rem !important;
	}
	
	.buttons-component.instance-103:not(:last-child) {
		margin-bottom: 0.9375rem !important;
	}
	
	.buttons-component.instance-103 > li > a {
		letter-spacing: 0rem;
		font-size: 1.125em;
	}
	
	.buttons-component.instance-45 {
		gap: 1.5rem;
	}
	
	.buttons-component.instance-45:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.instance-45:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.instance-45 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-46 {
		gap: 1.5rem;
	}
	
	.buttons-component.instance-46:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.instance-46:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.instance-46 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-90 {
		gap: 1.5rem;
	}
	
	.buttons-component.instance-90:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.instance-90:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.instance-90 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-61 {
		gap: 0.875rem;
	}
	
	.buttons-component.instance-61:not(:first-child) {
		margin-top: 0.9375rem !important;
	}
	
	.buttons-component.instance-61:not(:last-child) {
		margin-bottom: 0.9375rem !important;
	}
	
	.buttons-component.instance-61 > li > a {
		letter-spacing: 0rem;
		font-size: 1.125em;
	}
	
	.buttons-component.instance-125 {
		gap: 0.875rem;
	}
	
	.buttons-component.instance-125:not(:first-child) {
		margin-top: 0.9375rem !important;
	}
	
	.buttons-component.instance-125:not(:last-child) {
		margin-bottom: 0.9375rem !important;
	}
	
	.buttons-component.instance-125 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-106 {
		gap: 1.5rem;
	}
	
	.buttons-component.instance-106:not(:first-child) {
		margin-top: 0.9375rem !important;
	}
	
	.buttons-component.instance-106:not(:last-child) {
		margin-bottom: 0.9375rem !important;
	}
	
	.buttons-component.instance-106 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-105 {
		gap: 1.5rem;
	}
	
	.buttons-component.instance-105:not(:first-child) {
		margin-top: 0.9375rem !important;
	}
	
	.buttons-component.instance-105:not(:last-child) {
		margin-bottom: 0.9375rem !important;
	}
	
	.buttons-component.instance-105 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-60 {
		gap: 1.5rem;
	}
	
	.buttons-component.instance-60:not(:first-child) {
		margin-top: 0.9375rem !important;
	}
	
	.buttons-component.instance-60:not(:last-child) {
		margin-bottom: 0.9375rem !important;
	}
	
	.buttons-component.instance-60 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-92 {
		gap: 1.5rem;
	}
	
	.buttons-component.instance-92:not(:first-child) {
		margin-top: 0.9375rem !important;
	}
	
	.buttons-component.instance-92:not(:last-child) {
		margin-bottom: 0.9375rem !important;
	}
	
	.buttons-component.instance-92 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-88 {
		gap: 1.5rem;
	}
	
	.buttons-component.instance-88:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	.buttons-component.instance-88:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	.buttons-component.instance-88 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.buttons-component.instance-1 {
		gap: 1.5rem;
	}
	
	.buttons-component.instance-1:not(:first-child) {
		margin-top: 0.9375rem !important;
	}
	
	.buttons-component.instance-1:not(:last-child) {
		margin-bottom: 0.9375rem !important;
	}
	
	.buttons-component.instance-1 > li > a {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.list-component.style-1:not(:first-child) {
		margin-top: 0.46875rem !important;
	}
	
	.list-component.style-1:not(:last-child) {
		margin-bottom: 0.46875rem !important;
	}
	
	.list-component.style-1 {
		letter-spacing: 0rem;
		font-size: 0.875em;
		line-height: 1.5;
	}
	
	.list-component.style-1 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.style-1 ul > li::before {
		height: 1.3125rem;
		line-height: 1.3125rem;
		min-width: 0.615234375rem;
	}
	
	.list-component.instance-5:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-5:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-5 {
		letter-spacing: -0.04375rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-5 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-5 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-9:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-9:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-9 {
		letter-spacing: -0.04375rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-9 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-9 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-10:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-10:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-10 {
		letter-spacing: -0.04375rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-10 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-10 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-11:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-11:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-11 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-11 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-11 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-13:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-13:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-13 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-13 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-13 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-14:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-14:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-14 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-14 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-14 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-17:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-17:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-17 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-17 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-17 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-19:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-19:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-19 {
		letter-spacing: -0.04375rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-19 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-19 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-1:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-1:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-1 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-1 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-1 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-7:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-7:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-7 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-7 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-7 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-12:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-12:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-12 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-12 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-12 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-26:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-26:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-26 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-26 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-26 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-27:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-27:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-27 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-27 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-27 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-28:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-28:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-28 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-28 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-28 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-30:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-30:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-30 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-30 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-30 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-31:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-31:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-31 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-31 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-31 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-32:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-32:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-32 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-32 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-32 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-16:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.list-component.instance-16:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.list-component.instance-16 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-16 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-16 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-15:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.list-component.instance-15:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.list-component.instance-15 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-15 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-15 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-24:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.list-component.instance-24:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.list-component.instance-24 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-24 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-24 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-18:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.list-component.instance-18:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.list-component.instance-18 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-18 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-18 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-29:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.list-component.instance-29:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.list-component.instance-29 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-29 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-29 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-20:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.list-component.instance-20:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.list-component.instance-20 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-20 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-20 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-41:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.list-component.instance-41:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.list-component.instance-41 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-41 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-41 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-40:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.list-component.instance-40:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.list-component.instance-40 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-40 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-40 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-21:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.list-component.instance-21:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.list-component.instance-21 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-21 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-21 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-43:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.list-component.instance-43:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.list-component.instance-43 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-43 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-43 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-22:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.list-component.instance-22:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.list-component.instance-22 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-22 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-22 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-23:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.list-component.instance-23:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.list-component.instance-23 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-23 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-23 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-42:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.list-component.instance-42:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.list-component.instance-42 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-42 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-42 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-33:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-33:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-33 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-33 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-33 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-34:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-34:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-34 {
		letter-spacing: -0.04375rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-34 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-34 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-35:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-35:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-35 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-35 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-35 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-36:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-36:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-36 {
		letter-spacing: -0.04375rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-36 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-36 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-37:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-37:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-37 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-37 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-37 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-38:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-38:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-38 {
		letter-spacing: -0.04375rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-38 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-38 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-8:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-8:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-8 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-8 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-8 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-2:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-2:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-2 {
		letter-spacing: -0.021875rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-2 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-2 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-6:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.list-component.instance-6:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.list-component.instance-6 {
		letter-spacing: -0.04375rem;
		font-size: 0.875em;
		line-height: 1;
	}
	
	.list-component.instance-6 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-6 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.form-component.instance-8:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	.form-component.instance-8:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	.form-component.instance-8 label:first-child {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-8 input[type="text"], .form-component.instance-8 input[type="email"], .form-component.instance-8 input[type="tel"], .form-component.instance-8 input[type="number"], .form-component.instance-8 textarea, .form-component.instance-8 select, .form-component.instance-8 .file, .form-component.instance-8 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-8 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-8 input[type="checkbox"] + label, .form-component.instance-8 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-8 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-9:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.form-component.instance-9:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.form-component.instance-9 label:first-child {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-9 input[type="text"], .form-component.instance-9 input[type="email"], .form-component.instance-9 input[type="tel"], .form-component.instance-9 input[type="number"], .form-component.instance-9 textarea, .form-component.instance-9 select, .form-component.instance-9 .file, .form-component.instance-9 .date {
		font-size: 0.875em;
		letter-spacing: -0.025rem;
	}
	
	.form-component.instance-9 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-9 input[type="checkbox"] + label, .form-component.instance-9 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: -0.025rem;
	}
	
	.form-component.instance-9 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-4:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	.form-component.instance-4:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	.form-component.instance-4 label:first-child {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-4 input[type="text"], .form-component.instance-4 input[type="email"], .form-component.instance-4 input[type="tel"], .form-component.instance-4 input[type="number"], .form-component.instance-4 textarea, .form-component.instance-4 select, .form-component.instance-4 .file, .form-component.instance-4 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-4 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-4 input[type="checkbox"] + label, .form-component.instance-4 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-4 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-6:not(:first-child) {
		margin-top: 0.28125rem !important;
	}
	
	.form-component.instance-6:not(:last-child) {
		margin-bottom: 0.28125rem !important;
	}
	
	.form-component.instance-6 label:first-child {
		font-size: 0.875em;
		line-height: 0.75;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-6 input[type="text"], .form-component.instance-6 input[type="email"], .form-component.instance-6 input[type="tel"], .form-component.instance-6 input[type="number"], .form-component.instance-6 textarea, .form-component.instance-6 select, .form-component.instance-6 .file, .form-component.instance-6 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-6 textarea {
		line-height: 1.5;
		padding-top: 0.175rem;
	}
	
	.form-component.instance-6 input[type="checkbox"] + label, .form-component.instance-6 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-6 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-5:not(:first-child) {
		margin-top: 0.28125rem !important;
	}
	
	.form-component.instance-5:not(:last-child) {
		margin-bottom: 0.28125rem !important;
	}
	
	.form-component.instance-5 label:first-child {
		font-size: 0.875em;
		line-height: 0.75;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-5 input[type="text"], .form-component.instance-5 input[type="email"], .form-component.instance-5 input[type="tel"], .form-component.instance-5 input[type="number"], .form-component.instance-5 textarea, .form-component.instance-5 select, .form-component.instance-5 .file, .form-component.instance-5 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-5 textarea {
		line-height: 1.5;
		padding-top: 0.175rem;
	}
	
	.form-component.instance-5 input[type="checkbox"] + label, .form-component.instance-5 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-5 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-3:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.form-component.instance-3:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.form-component.instance-3 label:first-child {
		font-size: 0.75em;
		line-height: 0.75;
		letter-spacing: -0.025rem;
	}
	
	.form-component.instance-3 input[type="text"], .form-component.instance-3 input[type="email"], .form-component.instance-3 input[type="tel"], .form-component.instance-3 input[type="number"], .form-component.instance-3 textarea, .form-component.instance-3 select, .form-component.instance-3 .file, .form-component.instance-3 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-3 textarea {
		line-height: 1.5;
		padding-top: 0.175rem;
	}
	
	.form-component.instance-3 input[type="checkbox"] + label, .form-component.instance-3 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-3 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-3 > .inner {
		flex-direction: column;
	}
	
	.form-component.instance-3 > .inner .field {
		flex-grow: 0;
	}
	
	.form-component.instance-3 > .inner > * {
		margin: 0.75rem 0 0 0;
	}
	
	.form-component.instance-3 > .inner > :first-child {
		margin: 0;
	}
	
	.form-component.instance-7:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.form-component.instance-7:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.form-component.instance-7 label:first-child {
		font-size: 0.875em;
		line-height: 1;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-7 input[type="text"], .form-component.instance-7 input[type="email"], .form-component.instance-7 input[type="tel"], .form-component.instance-7 input[type="number"], .form-component.instance-7 textarea, .form-component.instance-7 select, .form-component.instance-7 .file, .form-component.instance-7 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-7 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-7 input[type="checkbox"] + label, .form-component.instance-7 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-7 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-27:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.form-component.instance-27:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.form-component.instance-27 label:first-child {
		font-size: 0.875em;
		line-height: 1;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-27 input[type="text"], .form-component.instance-27 input[type="email"], .form-component.instance-27 input[type="tel"], .form-component.instance-27 input[type="number"], .form-component.instance-27 textarea, .form-component.instance-27 select, .form-component.instance-27 .file, .form-component.instance-27 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-27 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-27 input[type="checkbox"] + label, .form-component.instance-27 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-27 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-28:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.form-component.instance-28:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.form-component.instance-28 label:first-child {
		font-size: 0.875em;
		line-height: 1;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-28 input[type="text"], .form-component.instance-28 input[type="email"], .form-component.instance-28 input[type="tel"], .form-component.instance-28 input[type="number"], .form-component.instance-28 textarea, .form-component.instance-28 select, .form-component.instance-28 .file, .form-component.instance-28 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-28 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-28 input[type="checkbox"] + label, .form-component.instance-28 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-28 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-29:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.form-component.instance-29:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.form-component.instance-29 label:first-child {
		font-size: 0.875em;
		line-height: 1;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-29 input[type="text"], .form-component.instance-29 input[type="email"], .form-component.instance-29 input[type="tel"], .form-component.instance-29 input[type="number"], .form-component.instance-29 textarea, .form-component.instance-29 select, .form-component.instance-29 .file, .form-component.instance-29 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-29 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-29 input[type="checkbox"] + label, .form-component.instance-29 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-29 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-12:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.form-component.instance-12:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.form-component.instance-12 label:first-child {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-12 input[type="text"], .form-component.instance-12 input[type="email"], .form-component.instance-12 input[type="tel"], .form-component.instance-12 input[type="number"], .form-component.instance-12 textarea, .form-component.instance-12 select, .form-component.instance-12 .file, .form-component.instance-12 .date {
		font-size: 0.875em;
		letter-spacing: -0.025rem;
	}
	
	.form-component.instance-12 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-12 input[type="checkbox"] + label, .form-component.instance-12 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: -0.025rem;
	}
	
	.form-component.instance-12 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-20:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.form-component.instance-20:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.form-component.instance-20 label:first-child {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-20 input[type="text"], .form-component.instance-20 input[type="email"], .form-component.instance-20 input[type="tel"], .form-component.instance-20 input[type="number"], .form-component.instance-20 textarea, .form-component.instance-20 select, .form-component.instance-20 .file, .form-component.instance-20 .date {
		font-size: 0.875em;
		letter-spacing: -0.025rem;
	}
	
	.form-component.instance-20 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-20 input[type="checkbox"] + label, .form-component.instance-20 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: -0.025rem;
	}
	
	.form-component.instance-20 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-14:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.form-component.instance-14:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.form-component.instance-14 label:first-child {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-14 input[type="text"], .form-component.instance-14 input[type="email"], .form-component.instance-14 input[type="tel"], .form-component.instance-14 input[type="number"], .form-component.instance-14 textarea, .form-component.instance-14 select, .form-component.instance-14 .file, .form-component.instance-14 .date {
		font-size: 0.875em;
		letter-spacing: -0.025rem;
	}
	
	.form-component.instance-14 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-14 input[type="checkbox"] + label, .form-component.instance-14 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: -0.025rem;
	}
	
	.form-component.instance-14 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-16:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.form-component.instance-16:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.form-component.instance-16 label:first-child {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-16 input[type="text"], .form-component.instance-16 input[type="email"], .form-component.instance-16 input[type="tel"], .form-component.instance-16 input[type="number"], .form-component.instance-16 textarea, .form-component.instance-16 select, .form-component.instance-16 .file, .form-component.instance-16 .date {
		font-size: 0.875em;
		letter-spacing: -0.025rem;
	}
	
	.form-component.instance-16 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-16 input[type="checkbox"] + label, .form-component.instance-16 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: -0.025rem;
	}
	
	.form-component.instance-16 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-13:not(:first-child) {
		margin-top: 0.65625rem !important;
	}
	
	.form-component.instance-13:not(:last-child) {
		margin-bottom: 0.65625rem !important;
	}
	
	.form-component.instance-13 label:first-child {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-13 input[type="text"], .form-component.instance-13 input[type="email"], .form-component.instance-13 input[type="tel"], .form-component.instance-13 input[type="number"], .form-component.instance-13 textarea, .form-component.instance-13 select, .form-component.instance-13 .file, .form-component.instance-13 .date {
		font-size: 1em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-13 textarea {
		line-height: 1.5;
		padding-top: 0.525rem;
	}
	
	.form-component.instance-13 input[type="checkbox"] + label, .form-component.instance-13 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: -0.025rem;
	}
	
	.form-component.instance-13 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-15:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.form-component.instance-15:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.form-component.instance-15 label:first-child {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-15 input[type="text"], .form-component.instance-15 input[type="email"], .form-component.instance-15 input[type="tel"], .form-component.instance-15 input[type="number"], .form-component.instance-15 textarea, .form-component.instance-15 select, .form-component.instance-15 .file, .form-component.instance-15 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-15 textarea {
		line-height: 1.5;
		padding-top: 0.39375rem;
	}
	
	.form-component.instance-15 input[type="checkbox"] + label, .form-component.instance-15 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: -0.025rem;
	}
	
	.form-component.instance-15 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-18:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	.form-component.instance-18:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	.form-component.instance-18 label:first-child {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-18 input[type="text"], .form-component.instance-18 input[type="email"], .form-component.instance-18 input[type="tel"], .form-component.instance-18 input[type="number"], .form-component.instance-18 textarea, .form-component.instance-18 select, .form-component.instance-18 .file, .form-component.instance-18 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-18 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-18 input[type="checkbox"] + label, .form-component.instance-18 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-18 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-34:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	.form-component.instance-34:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	.form-component.instance-34 label:first-child {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-34 input[type="text"], .form-component.instance-34 input[type="email"], .form-component.instance-34 input[type="tel"], .form-component.instance-34 input[type="number"], .form-component.instance-34 textarea, .form-component.instance-34 select, .form-component.instance-34 .file, .form-component.instance-34 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-34 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-34 input[type="checkbox"] + label, .form-component.instance-34 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-34 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-21:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	.form-component.instance-21:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	.form-component.instance-21 label:first-child {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-21 input[type="text"], .form-component.instance-21 input[type="email"], .form-component.instance-21 input[type="tel"], .form-component.instance-21 input[type="number"], .form-component.instance-21 textarea, .form-component.instance-21 select, .form-component.instance-21 .file, .form-component.instance-21 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-21 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-21 input[type="checkbox"] + label, .form-component.instance-21 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-21 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-17:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.form-component.instance-17:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.form-component.instance-17 label:first-child {
		font-size: 0.875em;
		line-height: 0.75;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-17 input[type="text"], .form-component.instance-17 input[type="email"], .form-component.instance-17 input[type="tel"], .form-component.instance-17 input[type="number"], .form-component.instance-17 textarea, .form-component.instance-17 select, .form-component.instance-17 .file, .form-component.instance-17 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-17 textarea {
		line-height: 1.5;
		padding-top: 0.175rem;
	}
	
	.form-component.instance-17 input[type="checkbox"] + label, .form-component.instance-17 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-17 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-24:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.form-component.instance-24:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.form-component.instance-24 label:first-child {
		font-size: 0.75em;
		line-height: 0.75;
		letter-spacing: -0.025rem;
	}
	
	.form-component.instance-24 input[type="text"], .form-component.instance-24 input[type="email"], .form-component.instance-24 input[type="tel"], .form-component.instance-24 input[type="number"], .form-component.instance-24 textarea, .form-component.instance-24 select, .form-component.instance-24 .file, .form-component.instance-24 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-24 textarea {
		line-height: 1.5;
		padding-top: 0.175rem;
	}
	
	.form-component.instance-24 input[type="checkbox"] + label, .form-component.instance-24 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-24 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-24 > .inner {
		flex-direction: column;
	}
	
	.form-component.instance-24 > .inner .field {
		flex-grow: 0;
	}
	
	.form-component.instance-24 > .inner > * {
		margin: 0.75rem 0 0 0;
	}
	
	.form-component.instance-24 > .inner > :first-child {
		margin: 0;
	}
	
	.form-component.instance-31:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	.form-component.instance-31:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	.form-component.instance-31 label:first-child {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-31 input[type="text"], .form-component.instance-31 input[type="email"], .form-component.instance-31 input[type="tel"], .form-component.instance-31 input[type="number"], .form-component.instance-31 textarea, .form-component.instance-31 select, .form-component.instance-31 .file, .form-component.instance-31 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-31 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-31 input[type="checkbox"] + label, .form-component.instance-31 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-31 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-11:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	.form-component.instance-11:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	.form-component.instance-11 label:first-child {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-11 input[type="text"], .form-component.instance-11 input[type="email"], .form-component.instance-11 input[type="tel"], .form-component.instance-11 input[type="number"], .form-component.instance-11 textarea, .form-component.instance-11 select, .form-component.instance-11 .file, .form-component.instance-11 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-11 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-11 input[type="checkbox"] + label, .form-component.instance-11 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-11 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-30:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	.form-component.instance-30:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	.form-component.instance-30 label:first-child {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-30 input[type="text"], .form-component.instance-30 input[type="email"], .form-component.instance-30 input[type="tel"], .form-component.instance-30 input[type="number"], .form-component.instance-30 textarea, .form-component.instance-30 select, .form-component.instance-30 .file, .form-component.instance-30 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-30 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-30 input[type="checkbox"] + label, .form-component.instance-30 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-30 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-33:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	.form-component.instance-33:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	.form-component.instance-33 label:first-child {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-33 input[type="text"], .form-component.instance-33 input[type="email"], .form-component.instance-33 input[type="tel"], .form-component.instance-33 input[type="number"], .form-component.instance-33 textarea, .form-component.instance-33 select, .form-component.instance-33 .file, .form-component.instance-33 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-33 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-33 input[type="checkbox"] + label, .form-component.instance-33 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-33 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-32:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	.form-component.instance-32:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	.form-component.instance-32 label:first-child {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-32 input[type="text"], .form-component.instance-32 input[type="email"], .form-component.instance-32 input[type="tel"], .form-component.instance-32 input[type="number"], .form-component.instance-32 textarea, .form-component.instance-32 select, .form-component.instance-32 .file, .form-component.instance-32 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-32 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-32 input[type="checkbox"] + label, .form-component.instance-32 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-32 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-10:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	.form-component.instance-10:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	.form-component.instance-10 label:first-child {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-10 input[type="text"], .form-component.instance-10 input[type="email"], .form-component.instance-10 input[type="tel"], .form-component.instance-10 input[type="number"], .form-component.instance-10 textarea, .form-component.instance-10 select, .form-component.instance-10 .file, .form-component.instance-10 .date {
		font-size: 0.875em;
		letter-spacing: -0.025rem;
	}
	
	.form-component.instance-10 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-10 input[type="checkbox"] + label, .form-component.instance-10 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: -0.025rem;
	}
	
	.form-component.instance-10 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-26:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.form-component.instance-26:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.form-component.instance-26 label:first-child {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-26 input[type="text"], .form-component.instance-26 input[type="email"], .form-component.instance-26 input[type="tel"], .form-component.instance-26 input[type="number"], .form-component.instance-26 textarea, .form-component.instance-26 select, .form-component.instance-26 .file, .form-component.instance-26 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-26 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-26 input[type="checkbox"] + label, .form-component.instance-26 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-26 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-19:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	.form-component.instance-19:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	.form-component.instance-19 label:first-child {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-19 input[type="text"], .form-component.instance-19 input[type="email"], .form-component.instance-19 input[type="tel"], .form-component.instance-19 input[type="number"], .form-component.instance-19 textarea, .form-component.instance-19 select, .form-component.instance-19 .file, .form-component.instance-19 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-19 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-19 input[type="checkbox"] + label, .form-component.instance-19 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-19 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-23:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.form-component.instance-23:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.form-component.instance-23 label:first-child {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-23 input[type="text"], .form-component.instance-23 input[type="email"], .form-component.instance-23 input[type="tel"], .form-component.instance-23 input[type="number"], .form-component.instance-23 textarea, .form-component.instance-23 select, .form-component.instance-23 .file, .form-component.instance-23 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-23 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-23 input[type="checkbox"] + label, .form-component.instance-23 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-23 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-25:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.form-component.instance-25:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.form-component.instance-25 label:first-child {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-25 input[type="text"], .form-component.instance-25 input[type="email"], .form-component.instance-25 input[type="tel"], .form-component.instance-25 input[type="number"], .form-component.instance-25 textarea, .form-component.instance-25 select, .form-component.instance-25 .file, .form-component.instance-25 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-25 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-25 input[type="checkbox"] + label, .form-component.instance-25 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-25 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-22:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.form-component.instance-22:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.form-component.instance-22 label:first-child {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-22 input[type="text"], .form-component.instance-22 input[type="email"], .form-component.instance-22 input[type="tel"], .form-component.instance-22 input[type="number"], .form-component.instance-22 textarea, .form-component.instance-22 select, .form-component.instance-22 .file, .form-component.instance-22 .date {
		font-size: 0.875em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-22 textarea {
		line-height: 1.5;
		padding-top: 0.2625rem;
	}
	
	.form-component.instance-22 input[type="checkbox"] + label, .form-component.instance-22 p {
		font-size: 0.875em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-22 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-1:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.form-component.instance-1:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.form-component.instance-1 label:first-child {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-1 input[type="text"], .form-component.instance-1 input[type="email"], .form-component.instance-1 input[type="tel"], .form-component.instance-1 input[type="number"], .form-component.instance-1 textarea, .form-component.instance-1 select, .form-component.instance-1 .file, .form-component.instance-1 .date {
		font-size: 2.875em;
		letter-spacing: 0.3rem;
		padding-left: calc(0.3rem + 1.75rem);
	}
	
	.form-component.instance-1 textarea {
		line-height: 1.5;
		padding-top: 1.4875rem;
	}
	
	.form-component.instance-1 input[type="checkbox"] + label, .form-component.instance-1 p {
		font-size: 2.875em;
		line-height: 1.5;
		letter-spacing: 0.3rem;
		padding-left: 0.3rem;
	}
	
	.form-component.instance-1 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.form-component.instance-2:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	.form-component.instance-2:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	.form-component.instance-2 label:first-child {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-2 input[type="text"], .form-component.instance-2 input[type="email"], .form-component.instance-2 input[type="tel"], .form-component.instance-2 input[type="number"], .form-component.instance-2 textarea, .form-component.instance-2 select, .form-component.instance-2 .file, .form-component.instance-2 .date {
		font-size: 1em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-2 textarea {
		line-height: 1.5;
		padding-top: 0.83125rem;
	}
	
	.form-component.instance-2 input[type="checkbox"] + label, .form-component.instance-2 p {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-2 .actions button {
		letter-spacing: 0rem;
		font-size: 0.875em;
	}
	
	.links-component.style-1 {
		gap: 0.5rem;
		font-size: 0.875em;
	}
	
	.links-component.style-1:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.links-component.style-1:not(:last-child) {
		margin-bottom: 0rem !important;
	}
}

@media (max-width: 480px) {
	.site-main > .inner {
		--spacing: 0.65625rem;
	}
	
	.container-component.instance-14 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	.container-component.style-1 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-28 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.style-2 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-23 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-58 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-7 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-18 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-4 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-5 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-6 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-8 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-12 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-42 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-3 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-60 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-46 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-61 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-9 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-30 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.style-3 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-27 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-17 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-72 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-40 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-10 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-59 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-22 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-62 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	.container-component.instance-21 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-11 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-26 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-25 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-32 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	.container-component.instance-73 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-77 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-75 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-76 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-48 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-45 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-49 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-47 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-50 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-51 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-74 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-78 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-52 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-41 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	.container-component.instance-34 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-35 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-36 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-37 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-38 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-39 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-65 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	.container-component.instance-13 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-33 > .wrapper > .inner {
		--spacing: 0.21875rem;
	}
	
	.container-component.instance-68 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	.container-component.instance-70 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	.container-component.instance-19 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	.container-component.instance-57 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	.container-component.instance-56 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	.container-component.instance-1 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	.buttons-component.instance-24 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-24 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-50 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-50 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-126 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-126 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-9 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-9 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.style-1 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.style-1 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-11 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-11 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-12 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-12 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-15 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-15 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-16 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-16 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-18 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-18 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-20 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-20 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-21 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-21 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-22 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-22 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-25 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-25 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-26 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-26 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-27 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-27 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-28 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-28 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-38 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-38 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-39 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-39 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-40 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-40 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-104 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-103 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-61 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-61 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-125 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-125 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-106 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-106 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-105 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-105 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-60 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-60 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-92 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-92 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-88 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-88 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-1 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-1 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-8 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-9 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-4 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-6 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-5 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-3 > .inner .actions {
		width: 100%;
	}
	
	.form-component.instance-3 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-7 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-27 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-28 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-29 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-12 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-20 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-14 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-16 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-13 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-15 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-18 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-34 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-21 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-17 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-24 > .inner .actions {
		width: 100%;
	}
	
	.form-component.instance-24 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-31 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-11 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-30 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-33 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-32 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-10 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-26 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-19 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-23 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-25 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-22 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-1 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.form-component.instance-2 .actions button {
		max-width: 32rem;
		width: 100%;
	}
}

@media (max-width: 360px) {
	.site-main > .inner {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.15625rem;
		--spacing: 0.5625rem;
	}
	
	.site-main > .inner > * > .full {
		margin-left: calc(-1.5rem);
		max-width: calc(100% + 3rem + 0.4725px);
		width: calc(100% + 3rem + 0.4725px);
	}
	
	.site-main > .inner > * > .full.screen {
		margin-left: -50vw;
	}
	
	.site-main > .inner > .active > .full:first-child {
		margin-top: -2.15625rem !important;
	}
	
	.site-main > .inner > .active > .full:last-child {
		margin-bottom: -2.15625rem !important;
	}
	
	.text-component.style-6 {
		font-size: 1.125em;
	}
	
	.text-component.instance-20 {
		font-size: 0.875em;
	}
	
	.text-component.instance-114 {
		font-size: 1em;
	}
	
	.text-component.instance-6 {
		font-size: 0.875em;
	}
	
	.text-component.instance-7 {
		font-size: 1.5em;
	}
	
	.text-component.instance-9 {
		font-size: 0.875em;
	}
	
	.text-component.instance-10 {
		font-size: 0.875em;
	}
	
	.text-component.instance-40 {
		font-size: 0.875em;
	}
	
	.text-component.instance-41 {
		font-size: 0.875em;
	}
	
	.text-component.style-4 {
		font-size: 1em;
	}
	
	.text-component.style-1 {
		font-size: 0.875em;
	}
	
	.text-component.style-2 {
		font-size: 1.375em;
	}
	
	.text-component.style-3 {
		font-size: 0.875em;
	}
	
	.text-component.instance-135 {
		font-size: 0.875em;
	}
	
	.text-component.instance-137 {
		font-size: 0.75em;
	}
	
	.text-component.instance-138 {
		font-size: 1em;
	}
	
	.text-component.instance-58 {
		font-size: 0.875em;
	}
	
	.text-component.instance-13 {
		font-size: 0.875em;
	}
	
	.text-component.instance-11 {
		font-size: 0.875em;
	}
	
	.text-component.instance-166 {
		font-size: 0.75em;
	}
	
	.text-component.instance-68 {
		font-size: 1em;
	}
	
	.text-component.instance-78 {
		font-size: 0.875em;
	}
	
	.text-component.instance-112 {
		font-size: 1em;
	}
	
	.text-component.instance-117 {
		font-size: 0.875em;
	}
	
	.text-component.instance-140 {
		font-size: 1em;
	}
	
	.text-component.instance-123 {
		font-size: 1em;
	}
	
	.text-component.instance-127 {
		font-size: 0.875em;
	}
	
	.text-component.instance-171 {
		font-size: 1em;
	}
	
	.text-component.instance-175 {
		font-size: 0.875em;
	}
	
	.text-component.instance-179 {
		font-size: 1em;
	}
	
	.text-component.instance-183 {
		font-size: 0.875em;
	}
	
	.text-component.instance-132 {
		font-size: 0.875em;
	}
	
	.text-component.instance-168 {
		font-size: 0.75em;
	}
	
	.text-component.instance-36 {
		font-size: 1em;
	}
	
	.text-component.instance-71 {
		font-size: 0.875em;
	}
	
	.text-component.instance-60 {
		font-size: 0.75em;
	}
	
	.text-component.instance-87 {
		font-size: 0.75em;
	}
	
	.text-component.instance-63 {
		font-size: 1em;
	}
	
	.text-component.instance-62 {
		font-size: 0.875em;
	}
	
	.text-component.instance-67 {
		font-size: 0.625em;
	}
	
	.text-component.instance-165 {
		font-size: 0.75em;
	}
	
	.text-component.instance-37 {
		font-size: 1em;
	}
	
	.text-component.instance-93 {
		font-size: 0.875em;
	}
	
	.text-component.instance-94 {
		font-size: 1em;
	}
	
	.text-component.instance-146 {
		font-size: 0.875em;
	}
	
	.text-component.instance-147 {
		font-size: 1em;
	}
	
	.text-component.instance-85 {
		font-size: 0.875em;
	}
	
	.text-component.instance-86 {
		font-size: 1em;
	}
	
	.text-component.instance-49 {
		font-size: 0.875em;
	}
	
	.text-component.instance-96 {
		font-size: 0.875em;
	}
	
	.text-component.instance-69 {
		font-size: 0.75em;
	}
	
	.text-component.instance-97 {
		font-size: 1em;
	}
	
	.text-component.instance-197 {
		font-size: 0.875em;
	}
	
	.text-component.instance-200 {
		font-size: 1em;
	}
	
	.text-component.instance-210 {
		font-size: 0.875em;
	}
	
	.text-component.instance-222 {
		font-size: 0.75em;
	}
	
	.text-component.instance-38 {
		font-size: 0.875em;
	}
	
	.text-component.instance-106 {
		font-size: 0.75em;
	}
	
	.text-component.instance-224 {
		font-size: 1em;
	}
	
	.text-component.instance-149 {
		font-size: 0.875em;
	}
	
	.text-component.instance-227 {
		font-size: 0.75em;
	}
	
	.text-component.instance-99 {
		font-size: 0.875em;
	}
	
	.text-component.instance-100 {
		font-size: 0.75em;
	}
	
	.text-component.instance-102 {
		font-size: 0.75em;
	}
	
	.text-component.instance-103 {
		font-size: 1em;
	}
	
	.text-component.instance-152 {
		font-size: 0.875em;
	}
	
	.text-component.instance-153 {
		font-size: 0.75em;
	}
	
	.text-component.instance-157 {
		font-size: 0.75em;
	}
	
	.text-component.instance-158 {
		font-size: 1em;
	}
	
	.text-component.instance-27 {
		font-size: 0.875em;
	}
	
	.text-component.instance-163 {
		font-size: 0.75em;
	}
	
	.text-component.instance-101 {
		font-size: 0.875em;
	}
	
	.text-component.instance-164 {
		font-size: 0.75em;
	}
	
	.text-component.instance-194 {
		font-size: 1em;
	}
	
	.text-component.instance-120 {
		font-size: 0.875em;
	}
	
	.text-component.instance-105 {
		font-size: 0.875em;
	}
	
	.text-component.instance-177 {
		font-size: 0.875em;
	}
	
	.text-component.instance-119 {
		font-size: 0.875em;
	}
	
	.text-component.instance-129 {
		font-size: 0.875em;
	}
	
	.text-component.instance-2 {
		font-size: 0.875em;
	}
	
	.text-component.instance-162 {
		font-size: 0.875em;
	}
	
	.text-component.instance-206 {
		font-size: 0.875em;
	}
	
	.text-component.instance-161 {
		font-size: 0.875em;
	}
	
	.text-component.instance-121 {
		font-size: 0.875em;
	}
	
	.text-component.instance-130 {
		font-size: 0.875em;
	}
	
	.text-component.style-5 {
		font-size: 1.125em;
	}
	
	.text-component.instance-187 {
		font-size: 1em;
	}
	
	.text-component.instance-64 {
		font-size: 0.875em;
	}
	
	.text-component.instance-223 {
		font-size: 0.875em;
	}
	
	.text-component.instance-144 {
		font-size: 0.875em;
	}
	
	.text-component.instance-80 {
		font-size: 0.875em;
	}
	
	.text-component.instance-185 {
		font-size: 1em;
	}
	
	.text-component.instance-201 {
		font-size: 1em;
	}
	
	.text-component.instance-212 {
		font-size: 1em;
	}
	
	.text-component.instance-216 {
		font-size: 1em;
	}
	
	.text-component.instance-74 {
		font-size: 0.875em;
	}
	
	.text-component.instance-76 {
		font-size: 0.875em;
	}
	
	.text-component.instance-167 {
		font-size: 0.75em;
	}
	
	.text-component.instance-75 {
		font-size: 1em;
	}
	
	.text-component.instance-226 {
		font-size: 0.875em;
	}
	
	.text-component.instance-150 {
		font-size: 0.75em;
	}
	
	.text-component.instance-225 {
		font-size: 1em;
	}
	
	.text-component.instance-199 {
		font-size: 0.875em;
	}
	
	.text-component.instance-203 {
		font-size: 1em;
	}
	
	.text-component.instance-128 {
		font-size: 1em;
	}
	
	.text-component.instance-205 {
		font-size: 0.875em;
	}
	
	.text-component.instance-208 {
		font-size: 1em;
	}
	
	.text-component.instance-83 {
		font-size: 1em;
	}
	
	.text-component.instance-35 {
		font-size: 0.875em;
	}
	
	.text-component.instance-54 {
		font-size: 0.875em;
	}
	
	.text-component.instance-118 {
		font-size: 1em;
	}
	
	.text-component.instance-108 {
		font-size: 1em;
	}
	
	.text-component.instance-190 {
		font-size: 1em;
	}
	
	.text-component.instance-65 {
		font-size: 1em;
	}
	
	.text-component.instance-195 {
		font-size: 1em;
	}
	
	.text-component.instance-107 {
		font-size: 0.875em;
	}
	
	.text-component.instance-57 {
		font-size: 0.875em;
	}
	
	.text-component.instance-176 {
		font-size: 0.875em;
	}
	
	.text-component.instance-193 {
		font-size: 0.875em;
	}
	
	.text-component.instance-88 {
		font-size: 1.375em;
	}
	
	.text-component.instance-25 {
		font-size: 1em;
	}
	
	.text-component.instance-191 {
		font-size: 1.125em;
	}
	
	.text-component.instance-192 {
		font-size: 1em;
	}
	
	.text-component.instance-188 {
		font-size: 1.125em;
	}
	
	.text-component.instance-189 {
		font-size: 1em;
	}
	
	.text-component.instance-50 {
		font-size: 1.125em;
	}
	
	.text-component.instance-51 {
		font-size: 1em;
	}
	
	.text-component.instance-52 {
		font-size: 0.75em;
	}
	
	.text-component.instance-44 {
		font-size: 1em;
	}
	
	.text-component.instance-47 {
		font-size: 1em;
	}
	
	.text-component.instance-45 {
		font-size: 1.25em;
	}
	
	.text-component.instance-46 {
		font-size: 0.75em;
	}
	
	.text-component.instance-28 {
		font-size: 0.75em;
	}
	
	.text-component.instance-19 {
		font-size: 1em;
	}
	
	.text-component.instance-34 {
		font-size: 1.125em;
	}
	
	.text-component.instance-24 {
		font-size: 1.125em;
	}
	
	.text-component.instance-29 {
		font-size: 1em;
	}
	
	.text-component.instance-42 {
		font-size: 0.875em;
	}
	
	.text-component.instance-154 {
		font-size: 1.125em;
	}
	
	.text-component.instance-155 {
		font-size: 0.875em;
	}
	
	.text-component.instance-159 {
		font-size: 0.75em;
	}
	
	.text-component.instance-160 {
		font-size: 0.75em;
	}
	
	.text-component.instance-3 {
		font-size: 1.125em;
	}
	
	.text-component.instance-4 {
		font-size: 1em;
	}
	
	.text-component.instance-5 {
		font-size: 0.75em;
	}
	
	.container-component.instance-14 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	.container-component.style-1 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.5625rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-28 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 0.75rem;
		--padding-vertical: 1.5rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.style-2 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 0.75rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-23 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-58 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-7 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 0.75rem;
		--padding-vertical: 0.75rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-18 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 0.75rem;
		--padding-vertical: 0.75rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-4 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 0.75rem;
		--padding-vertical: 0.75rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-5 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 0.75rem;
		--padding-vertical: 0.75rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-6 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 0.75rem;
		--padding-vertical: 0.75rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-8 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-12 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-42 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-3 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-60 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-46 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-61 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-9 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 0.75rem;
		--padding-vertical: 1.5rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-30 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 0.75rem;
		--padding-vertical: 1.5rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.style-3 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 0.75rem;
		--padding-vertical: 1.5rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-27 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-17 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-72 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-40 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-10 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-59 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-22 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-62 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	.container-component.instance-21 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-11 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-26 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 0.75rem;
		--padding-vertical: 2.625rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-25 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 0.75rem;
		--padding-vertical: 2.625rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-32 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	.container-component.instance-73 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-77 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-75 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-76 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-48 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-45 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-49 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-47 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-50 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-51 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-74 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-78 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-52 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-41 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	.container-component.instance-34 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-35 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-36 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-37 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-38 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-39 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-65 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	.container-component.instance-13 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-33 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.03125rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0.1875rem;
	}
	
	.container-component.instance-68 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	.container-component.instance-70 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	.container-component.instance-19 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	.container-component.instance-57 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	.container-component.instance-56 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	.container-component.instance-1 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	.buttons-component.instance-24 {
		gap: 0.65625rem;
	}
	
	.buttons-component.instance-32 {
		gap: 0.65625rem;
	}
	
	.buttons-component.instance-50 {
		gap: 0.65625rem;
	}
	
	.buttons-component.instance-126 {
		gap: 0.65625rem;
	}
	
	.buttons-component.style-2 {
		gap: 1.125rem;
	}
	
	.buttons-component.style-3 {
		gap: 1.125rem;
	}
	
	.buttons-component.instance-9 {
		gap: 0.65625rem;
	}
	
	.buttons-component.style-1 {
		gap: 0.65625rem;
	}
	
	.buttons-component.instance-11 {
		gap: 0.65625rem;
	}
	
	.buttons-component.instance-12 {
		gap: 0.65625rem;
	}
	
	.buttons-component.instance-15 {
		gap: 0.65625rem;
	}
	
	.buttons-component.instance-16 {
		gap: 0.65625rem;
	}
	
	.buttons-component.instance-18 {
		gap: 0.65625rem;
	}
	
	.buttons-component.instance-20 {
		gap: 0.65625rem;
	}
	
	.buttons-component.instance-21 {
		gap: 0.65625rem;
	}
	
	.buttons-component.instance-22 {
		gap: 0.65625rem;
	}
	
	.buttons-component.instance-25 {
		gap: 0.65625rem;
	}
	
	.buttons-component.instance-26 {
		gap: 0.65625rem;
	}
	
	.buttons-component.instance-27 {
		gap: 0.65625rem;
	}
	
	.buttons-component.instance-28 {
		gap: 0.65625rem;
	}
	
	.buttons-component.instance-38 {
		gap: 0.65625rem;
	}
	
	.buttons-component.instance-39 {
		gap: 0.65625rem;
	}
	
	.buttons-component.instance-40 {
		gap: 0.65625rem;
	}
	
	.buttons-component.style-4 {
		gap: 1.125rem;
	}
	
	.buttons-component.style-5 {
		gap: 1.125rem;
	}
	
	.buttons-component.instance-97 {
		gap: 1.125rem;
	}
	
	.buttons-component.instance-100 {
		gap: 1.125rem;
	}
	
	.buttons-component.instance-104 {
		gap: 1.125rem;
	}
	
	.buttons-component.instance-103 {
		gap: 1.125rem;
	}
	
	.buttons-component.instance-45 {
		gap: 1.125rem;
	}
	
	.buttons-component.instance-46 {
		gap: 1.125rem;
	}
	
	.buttons-component.instance-90 {
		gap: 1.125rem;
	}
	
	.buttons-component.instance-61 {
		gap: 0.65625rem;
	}
	
	.buttons-component.instance-125 {
		gap: 0.65625rem;
	}
	
	.buttons-component.instance-106 {
		gap: 1.125rem;
	}
	
	.buttons-component.instance-105 {
		gap: 1.125rem;
	}
	
	.buttons-component.instance-60 {
		gap: 1.125rem;
	}
	
	.buttons-component.instance-92 {
		gap: 1.125rem;
	}
	
	.buttons-component.instance-88 {
		gap: 1.125rem;
	}
	
	.buttons-component.instance-1 {
		gap: 1.125rem;
	}
	
	.list-component.style-1 {
		font-size: 0.875em;
	}
	
	.list-component.style-1 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.style-1 ul > li::before {
		height: 1.3125rem;
		line-height: 1.3125rem;
		min-width: 0.615234375rem;
	}
	
	.list-component.instance-5 {
		font-size: 0.875em;
	}
	
	.list-component.instance-5 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-5 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-9 {
		font-size: 0.875em;
	}
	
	.list-component.instance-9 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-9 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-10 {
		font-size: 0.875em;
	}
	
	.list-component.instance-10 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-10 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-11 {
		font-size: 0.875em;
	}
	
	.list-component.instance-11 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-11 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-13 {
		font-size: 0.875em;
	}
	
	.list-component.instance-13 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-13 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-14 {
		font-size: 0.875em;
	}
	
	.list-component.instance-14 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-14 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-17 {
		font-size: 0.875em;
	}
	
	.list-component.instance-17 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-17 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-19 {
		font-size: 0.875em;
	}
	
	.list-component.instance-19 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-19 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-1 {
		font-size: 0.875em;
	}
	
	.list-component.instance-1 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-1 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-7 {
		font-size: 0.875em;
	}
	
	.list-component.instance-7 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-7 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-12 {
		font-size: 0.875em;
	}
	
	.list-component.instance-12 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-12 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-26 {
		font-size: 0.875em;
	}
	
	.list-component.instance-26 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-26 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-27 {
		font-size: 0.875em;
	}
	
	.list-component.instance-27 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-27 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-28 {
		font-size: 0.875em;
	}
	
	.list-component.instance-28 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-28 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-30 {
		font-size: 0.875em;
	}
	
	.list-component.instance-30 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-30 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-31 {
		font-size: 0.875em;
	}
	
	.list-component.instance-31 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-31 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-32 {
		font-size: 0.875em;
	}
	
	.list-component.instance-32 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-32 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-16 {
		font-size: 0.875em;
	}
	
	.list-component.instance-16 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-16 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-15 {
		font-size: 0.875em;
	}
	
	.list-component.instance-15 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-15 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-24 {
		font-size: 0.875em;
	}
	
	.list-component.instance-24 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-24 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-18 {
		font-size: 0.875em;
	}
	
	.list-component.instance-18 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-18 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-29 {
		font-size: 0.875em;
	}
	
	.list-component.instance-29 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-29 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-20 {
		font-size: 0.875em;
	}
	
	.list-component.instance-20 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-20 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-41 {
		font-size: 0.875em;
	}
	
	.list-component.instance-41 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-41 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-40 {
		font-size: 0.875em;
	}
	
	.list-component.instance-40 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-40 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-21 {
		font-size: 0.875em;
	}
	
	.list-component.instance-21 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-21 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-43 {
		font-size: 0.875em;
	}
	
	.list-component.instance-43 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-43 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-22 {
		font-size: 0.875em;
	}
	
	.list-component.instance-22 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-22 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-23 {
		font-size: 0.875em;
	}
	
	.list-component.instance-23 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-23 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-42 {
		font-size: 0.875em;
	}
	
	.list-component.instance-42 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-42 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-33 {
		font-size: 0.875em;
	}
	
	.list-component.instance-33 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-33 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-34 {
		font-size: 0.875em;
	}
	
	.list-component.instance-34 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-34 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-35 {
		font-size: 0.875em;
	}
	
	.list-component.instance-35 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-35 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-36 {
		font-size: 0.875em;
	}
	
	.list-component.instance-36 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-36 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-37 {
		font-size: 0.875em;
	}
	
	.list-component.instance-37 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-37 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-38 {
		font-size: 0.875em;
	}
	
	.list-component.instance-38 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-38 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-8 {
		font-size: 0.875em;
	}
	
	.list-component.instance-8 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-8 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-2 {
		font-size: 0.875em;
	}
	
	.list-component.instance-2 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-2 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.list-component.instance-6 {
		font-size: 0.875em;
	}
	
	.list-component.instance-6 ul > li::after {
		width: 0.546875rem;
	}
	
	.list-component.instance-6 ul > li::before {
		height: 0.875rem;
		line-height: 0.875rem;
		min-width: 0.41015625rem;
	}
	
	.links-component.style-1 {
		gap: 0.375rem;
		font-size: 0.875em;
	}
}