/**
 * CTA form modal — ported from uncoder-io-os-based CtaFormSection.
 */

html.sp-cta-form-modal-open,
html.sp-cta-form-modal-open body {
	overflow: hidden;
}

.sp-cta-form-modal {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	font-family: 'Inter', sans-serif;
	color: #f9f9f9;
	-webkit-font-smoothing: antialiased;
}

.sp-cta-form-modal *,
.sp-cta-form-modal *::before,
.sp-cta-form-modal *::after {
	box-sizing: border-box;
}

.sp-cta-form-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.sp-cta-form-modal[hidden] {
	display: none !important;
}

.sp-cta-form-modal.is-open[hidden] {
	display: flex !important;
}

.sp-cta-form-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 20, 26, 0.72);
	cursor: pointer;
}

.sp-cta-form-modal__dialog {
	position: relative;
	z-index: 1;
	width: 1400px;
	max-width: 100%;
	height: 704px;
	max-height: calc(100vh - 48px);
	border-radius: 16px;
	filter: drop-shadow(0px 8px 40px rgba(0, 0, 0, 0.5));
	overflow: hidden;
	box-sizing: border-box;
	transform: translateY(12px) scale(0.98);
	transition: transform 0.25s ease;
}

.sp-cta-form-modal.is-open .sp-cta-form-modal__dialog {
	transform: translateY(0) scale(1);
}

.sp-cta-form-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	border-radius: 8px;
	background: transparent;
	color: #f9f9f9;
	cursor: pointer;
	transition: background 0.15s ease;
}

.sp-cta-form-modal__close:hover,
.sp-cta-form-modal__close:focus-visible {
	background: rgba(33, 44, 57, 0.75);
	outline: none;
}

.sp-cta-form-modal__inner {
	display: flex;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 56px 48px 40px;
	box-sizing: border-box;
	background: #1f2232 url('../../images/cta-form/svg/bg.svg') no-repeat 0 0;
	background-size: cover;
	overflow: auto;
}

.sp-cta-form-modal__form-col {
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
}

.sp-cta-form-modal__form-wrapper {
	position: relative;
}

.sp-cta-form-modal__form-wrapper--submitted .sp-cta-form-modal__form>* {
	visibility: hidden;
	pointer-events: none;
}

.sp-cta-form-modal__form-wrapper--submitted .sp-cta-form-modal__success {
	opacity: 1;
	pointer-events: auto;
}

.sp-cta-form-modal__form {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: 520px;
	min-width: 505px;
	min-height: 560px;
	border: none;
	border-radius: 4px;
	padding: 62px 26px 62px 56px;
	background: rgba(33, 44, 57, 0.3);
	box-shadow:
		inset 0 -4px 4px rgba(15, 20, 26, 0.4),
		0 1px 3px rgba(0, 0, 0, 0.5),
		0 32px 64px rgba(0, 0, 0, 0.4);
	-webkit-backdrop-filter: blur(64px);
	backdrop-filter: blur(64px);
	overflow: hidden;
	isolation: isolate;
}

.sp-cta-form-modal__form::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 2;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(180deg,
			rgba(255, 255, 255, 0.16) 0%,
			rgba(255, 255, 255, 0.8) 34.76%,
			rgba(255, 255, 255, 0) 76.1%);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	mask-composite: exclude;
	pointer-events: none;
}

.sp-cta-form-modal__form>* {
	position: relative;
	z-index: 1;
}

.sp-cta-form-modal__title {
	margin: 0 0 12px;
	font-size: 32px;
	line-height: 36px;
	font-weight: 600;
	color: #f9f9f9;
}

.sp-cta-form-modal__form .form-title {
	font-weight: 600;
	font-size: 32px;
	line-height: 36px;
	letter-spacing: 0px;
	margin: 0 0 12px;
	text-transform: capitalize;
	color: #f9f9f9;
}

.sp-cta-form-modal__form .form-description {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0px;
	margin-bottom: 28px;
	text-align: left;
	color: #f9f9f9;
}

.sp-cta-form-modal__description {
	margin: 0 0 28px;
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
	color: #f9f9f9;
}

.sp-cta-form-modal__success {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #292c3d;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #f9f9f9;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	padding: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	border-radius: 4px;
	z-index: 10;
	box-sizing: border-box;
}

.sp-cta-form-modal__success p {
	margin: 0 0 12px;
	font-weight: 600;
	font-size: 24px;
	line-height: 32px;
	color: #f9f9f9;
}

.sp-cta-form-modal__success-icon {
	width: 136px;
	height: 136px;
	margin-bottom: 32px;
}

/* Contact Form 7 inside modal */
.sp-cta-form-modal__cf7 .wpcf7 {
	margin: 0;
}

.sp-cta-form-modal__cf7 .hidden-fields-container,
.sp-cta-form-modal__cf7 fieldset.hidden-fields-container {
	display: none !important;
}

.sp-cta-form-modal__cf7 .wpcf7-form {
	max-width: none;
	width: 100%;
	text-align: left;
}

.sp-cta-form-modal__cf7 .wpcf7-form > *:not(.form-title):not(.form-description):not(fieldset) {
	max-width: 393px;
}

.sp-cta-form-modal__cf7 .wpcf7-form .form-title,
.sp-cta-form-modal__cf7 .wpcf7-form .form-description {
	max-width: none;
	width: 100%;
}

.sp-cta-form-modal__cf7 .wpcf7-form p {
	margin: 0;
}

.sp-cta-form-modal__cf7 .wpcf7-form p.form-policy {
	font-weight: 400;
	font-size: 12px;
	line-height: 140%;
	letter-spacing: 0px;
	text-align: left;
	margin-bottom: 40px;
}

.sp-cta-form-modal__cf7 .wpcf7-form p.form-footer {
	text-align: left;
	font-weight: 400;
	font-size: 12px;
	line-height: 140%;
	letter-spacing: 0px;
}

.sp-cta-form-modal__cf7 label,
.sp-cta-form-modal__cf7 .wpcf7-form>label,
.sp-cta-form-modal__cf7 .wpcf7-form p>label {
	display: block;
	font-weight: 400;
	font-size: 14px;
	line-height: 180%;
	color: #cfd0d3;
	margin-bottom: 3px;
}

.sp-cta-form-modal__cf7 input[type='text'],
.sp-cta-form-modal__cf7 input[type='email'],
.sp-cta-form-modal__cf7 input[type='tel'],
.sp-cta-form-modal__cf7 input[type='url'],
.sp-cta-form-modal__cf7 textarea,
.sp-cta-form-modal__cf7 select {
	display: block;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 8px 12px;
	font-size: 14px;
	line-height: 140%;
	border: 1px solid transparent;
	border-radius: 8px;
	background: rgba(207, 208, 211, 0.2);
	color: #292c3d;
	caret-color: #292c3d;
	margin-bottom: 20px;
	font-family: 'Inter', sans-serif;
	outline: none;
	box-shadow: none;
	appearance: none;
	-webkit-appearance: none;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.sp-cta-form-modal__cf7 input::placeholder,
.sp-cta-form-modal__cf7 textarea::placeholder {
	color: rgba(41, 44, 57, 0.7);
	-webkit-text-fill-color: rgba(41, 44, 57, 0.7);
	opacity: 1;
	font-size: 14px;
	font-family: 'Inter', sans-serif;
}

.sp-cta-form-modal__cf7 input:focus,
.sp-cta-form-modal__cf7 textarea:focus,
.sp-cta-form-modal__cf7 select:focus {
	border-color: #4ac18e;
	background: #cfd0d3;
}

.sp-cta-form-modal__cf7 input:-webkit-autofill,
.sp-cta-form-modal__cf7 input:-webkit-autofill:hover,
.sp-cta-form-modal__cf7 input:-webkit-autofill:focus,
.sp-cta-form-modal__cf7 textarea:-webkit-autofill,
.sp-cta-form-modal__cf7 textarea:-webkit-autofill:hover,
.sp-cta-form-modal__cf7 textarea:-webkit-autofill:focus {
	-webkit-text-fill-color: #292c3d !important;
	caret-color: #292c3d !important;
	color: #292c3d !important;
	background-color: transparent !important;
	-webkit-box-shadow: 0 0 0 1000px rgba(207, 208, 211, 0.2) inset !important;
	box-shadow: 0 0 0 1000px rgba(207, 208, 211, 0.2) inset !important;
	transition: background-color 9999s ease-out 0s;
}

.sp-cta-form-modal__cf7 input:-webkit-autofill:focus,
.sp-cta-form-modal__cf7 textarea:-webkit-autofill:focus {
	border-color: #4ac18e !important;
	-webkit-box-shadow: 0 0 0 1000px #cfd0d3 inset !important;
	box-shadow: 0 0 0 1000px #cfd0d3 inset !important;
}

.sp-cta-form-modal__cf7 .wpcf7-not-valid {
	border-color: #ff6b6b !important;
	margin-bottom: 16px;
}

.sp-cta-form-modal__cf7 .wpcf7-not-valid:focus {
	border-color: #ff6b6b !important;
	background: rgba(207, 208, 211, 0.2);
	box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

.sp-cta-form-modal__cf7 .wpcf7-not-valid-tip {
	display: flex !important;
	align-items: flex-start;
	justify-content: flex-start;
	color: #ff6b6b;
	font-size: 12px;
	font-weight: 500;
	margin-top: -16px;
	margin-bottom: 12px;
	line-height: 1.3;
	position: absolute;
	left: 0 !important;
	right: auto;
	width: 100% !important;
	text-align: left !important;
}

.sp-cta-form-modal__cf7 .screen-reader-response {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.sp-cta-form-modal__cf7 .wpcf7-form span {
	margin-bottom: 24px;
}

.sp-cta-form-modal__cf7 .wpcf7-response-output {
	display: none !important;
}

.sp-cta-form-modal__cf7 a {
	color: #4ac18e;
}

.sp-cta-form-modal__cf7 a:hover {
	text-decoration: underline;
}

/* Policy / acceptance text */
.sp-cta-form-modal__cf7 .wpcf7-acceptance,
.sp-cta-form-modal__cf7 .wpcf7-list-item-label,
.sp-cta-form-modal__cf7 p:has(.wpcf7-acceptance),
.sp-cta-form-modal__cf7 .sp-cta-form-policy {
	font-size: 12px;
	line-height: 140%;
	font-weight: 400;
	color: #f9f9f9;
	margin-bottom: 40px;
}

.sp-cta-form-modal__cf7 .wpcf7-submit {
	position: relative;
	isolation: isolate;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 48px;
	padding: 0 20px;
	border: 1px solid transparent;
	border-radius: 40px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 130%;
	text-transform: none;
	letter-spacing: 0;
	color: #1a1e2f;
	background: linear-gradient(90deg, #49e0a0 0%, #50e9ff 100%);
	background-image: linear-gradient(90deg, #49e0a0 0%, #50e9ff 100%);
	cursor: pointer;
	box-shadow: none;
	appearance: none;
	-webkit-appearance: none;
	transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
	margin-bottom: 24px;
}

.sp-cta-form-modal__cf7 .wpcf7-submit:hover {
	color: #1a1e2f;
	background: linear-gradient(90deg, #66f7ff 0%, #5cf2b8 100%);
	border: 1px solid #ffffff;
	box-shadow: 0px 4px 24px 0px #66ffb64d;
}

.sp-cta-form-modal__cf7 .wpcf7-spinner {
	display: none;
}

.sp-cta-form-modal__cf7 p:has(.wpcf7-submit),
.sp-cta-form-modal__cf7 .submit-container,
.sp-cta-form-modal__cf7 .sp-cta-form-modal__submit {
	position: relative;
}

.sp-cta-form-modal__cf7 p:has(.wpcf7-submit)::before,
.sp-cta-form-modal__submit--loading::before {
	content: '';
	position: absolute;
	width: 18px;
	height: 18px;
	z-index: 2;
	border: 2px solid rgba(41, 44, 61, 0.3);
	border-top-color: #292c3d;
	border-radius: 50%;
	top: 15px;
	left: calc(50% - 9px);
	opacity: 0;
	display: none;
	animation: sp-cta-form-spin 0.8s linear infinite;
}

.sp-cta-form-modal__submit--loading::before,
.sp-cta-form-modal__cf7 p.sp-cta-form-modal__submit--loading:has(.wpcf7-submit)::before {
	opacity: 1;
	display: block;
}

.sp-cta-form-modal__submit--loading .wpcf7-submit,
.sp-cta-form-modal__cf7 .wpcf7-submit.is-loading {
	pointer-events: none;
	cursor: not-allowed;
	color: transparent;
	opacity: 0.85;
}

.sp-cta-form-modal__cf7 .wpcf7-submit.is-loading:hover {
	background: linear-gradient(90deg, #49e0a0 0%, #50e9ff 100%);
	background-image: linear-gradient(90deg, #49e0a0 0%, #50e9ff 100%);
	border-color: transparent;
	box-shadow: none;
}

/* Footer note under submit — style free HTML from CF7 */
.sp-cta-form-modal__cf7 .wpcf7-form>p:last-child:not(:has(.wpcf7-submit)):not(:has(input)):not(:has(textarea)) {
	color: #f9f9f9;
	font-weight: 400;
	font-size: 12px;
	line-height: 140%;
	margin: 0;
}

.sp-cta-form-modal__stats {
	position: relative;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 45px;
	min-width: 0;
	min-height: 608px;
}

.sp-cta-form-modal__map {
	position: absolute;
	display: block;
	top: 4%;
	left: -4%;
	z-index: 0;
	max-width: 110%;
	height: auto;
	pointer-events: none;
}

.sp-cta-form-modal__stat {
	box-sizing: border-box;
	position: absolute;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 88px;
	padding: 10px 16px;
	border: none;
	border-radius: 4px;
	background: rgba(33, 44, 57, 0.3);
	box-shadow: inset 0 -4px 4px rgba(15, 20, 26, 0.4);
	-webkit-backdrop-filter: blur(64px);
	backdrop-filter: blur(64px);
	text-align: center;
	overflow: hidden;
	isolation: isolate;
}

.sp-cta-form-modal__stat::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 2;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(180deg,
			rgba(255, 255, 255, 0.16) 0%,
			rgba(255, 255, 255, 0.8) 34.76%,
			rgba(255, 255, 255, 0) 76.1%);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	mask-composite: exclude;
	pointer-events: none;
}

.sp-cta-form-modal__stat--countries {
	padding-left: 30px;
	padding-right: 30px;
	right: 22%;
	top: 12%;
	left: auto;
}

.sp-cta-form-modal__stat--organizations {
	padding-left: 20px;
	padding-right: 20px;
	left: 18%;
	top: 22%;
	right: auto;
}

.sp-cta-form-modal__stat--users {
	padding-left: 16px;
	padding-right: 16px;
	left: 46%;
	top: 35%;
}

.sp-cta-form-modal__stat-label {
	position: relative;
	z-index: 1;
	color: #999baa;
	font-size: 12px;
	font-weight: 600;
	line-height: 120%;
	text-transform: uppercase;
}

.sp-cta-form-modal__stat-number {
	position: relative;
	z-index: 1;
	color: #f9f9f9;
	font-size: 38px;
	font-weight: 600;
	line-height: 120%;
}

.sp-cta-form-modal__logos {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	margin-top: auto;
	transform: translateY(-5px);
	min-height: 133px;
	border-radius: 0 2px 2px 0;
	isolation: isolate;
	overflow: hidden;
}

/* Frame stroke — no left edge */
.sp-cta-form-modal__logos::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	border-radius: 0 2px 2px 0;
	padding: 1px 1px 1px 0;
	opacity: 0.35;
	background: linear-gradient(90deg, #4ac18e 0%, #68ecff 100%);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

.sp-cta-form-modal__logos-title {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	min-height: 32px;
	margin: 0;
	padding: 0 32px;
	color: #f9f9f9;
	font-size: 16px;
	font-weight: 600;
	line-height: 120%;
	white-space: nowrap;
	background: rgba(74, 193, 142, 0.175);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.sp-cta-form-modal__logos-list {
	position: relative;
	z-index: 1;
	flex: 1;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	align-items: center;
	justify-items: center;
	gap: 8px 12px;
	margin: 0;
	padding: 16px 10px 20px;
}

.sp-cta-form-modal__logo-item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-width: 0;
}

.sp-cta-form-modal__logo-item img {
	max-width: 100%;
	width: 112px;
	height: auto;
	opacity: 0.7;
}

@keyframes sp-cta-form-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 1200px) {
	.sp-cta-form-modal__dialog {
		height: auto;
		max-height: calc(100vh - 32px);
		max-height: calc(100dvh - 32px);
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
	}

	.sp-cta-form-modal__inner {
		flex-direction: column;
		align-items: center;
		height: auto;
		min-height: 0;
		overflow: visible;
		padding: 48px 24px 32px;
	}

	.sp-cta-form-modal__form {
		min-width: 0;
		max-width: 520px;
	}

	.sp-cta-form-modal__map {
		position: relative;
		right: 0;
		width: 100%;
		max-width: 100%;
		margin: 24px 0 16px;
	}

	.sp-cta-form-modal__stats {
		width: 100%;
		padding-bottom: 0;
		min-height: 420px;
	}

	.sp-cta-form-modal__logos-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.sp-cta-form-modal {
		padding: 12px;
		align-items: flex-start;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
	}

	.sp-cta-form-modal__close {
		top: 0;
		right: 0;
	}

	.sp-cta-form-modal__dialog {
		border-radius: 12px;
		height: auto;
		max-height: calc(100vh - 24px);
		max-height: calc(100dvh - 24px);
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
	}

	.sp-cta-form-modal__inner {
		height: auto;
		min-height: 0;
		overflow: visible;
		padding: 40px 16px 24px;
		background-image: url('../../images/cta-form/svg/bg-mobile.svg');
	}

	.sp-cta-form-modal__form {
		min-height: unset;
		padding: 32px 24px;
		-webkit-backdrop-filter: blur(32px);
		backdrop-filter: blur(32px);
	}

	.sp-cta-form-modal__title {
		font-size: 24px;
		line-height: 28px;
	}

	.sp-cta-form-modal__description {
		font-size: 14px;
		line-height: 20px;
	}

	.sp-cta-form-modal__cf7 .wpcf7-form {
		max-width: none;
		padding-right: 0;
	}

	.sp-cta-form-modal__cf7 .wpcf7-form span,
	.sp-cta-form-modal__cf7 .wpcf7-form div {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.sp-cta-form-modal__stat {
		height: 62px;
		-webkit-backdrop-filter: blur(32px);
		backdrop-filter: blur(32px);
	}

	.sp-cta-form-modal__stat--countries {
		padding-left: 24px;
		padding-right: 24px;
		right: 12%;
		top: 4%;
	}

	.sp-cta-form-modal__stat--organizations {
		padding-left: 16px;
		padding-right: 16px;
		left: 7%;
		top: 14%;
	}

	.sp-cta-form-modal__stat--users {
		padding-left: 12px;
		padding-right: 12px;
		right: 19%;
		top: 31%;
	}

	.sp-cta-form-modal__stat-label {
		font-size: 10px;
	}

	.sp-cta-form-modal__stat-number {
		font-size: 26px;
	}

	.sp-cta-form-modal__logos {
		min-height: 0;
		width: calc(100% + 32px);
		max-width: none;
		margin: 8px -16px 0;
		overflow: hidden;
		border-radius: 0;
	}

	.sp-cta-form-modal__logos::after {
		inset: auto 0 0;
		height: 1px;
		border-radius: 0;
		padding: 0;
		opacity: 0.5;
		background: linear-gradient(90deg, #4ac18e 0%, #68ecff 100%);
		-webkit-mask: none;
		mask: none;
	}

	.sp-cta-form-modal__logos-title {
		justify-content: center;
		text-align: center;
		font-size: 12px;
		line-height: 1.3;
		padding: 8px 16px;
		white-space: normal;
		background: rgba(74, 193, 142, 0.25);
	}

	.sp-cta-form-modal__logos-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 20px 12px;
		padding: 24px 12px 28px;
	}

	.sp-cta-form-modal__logo-item img {
		width: 96px;
	}

	.sp-cta-form-modal__map {
		margin-bottom: 0px;
	}
}