@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(40px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes floatY {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-12px);
	}
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(108, 28, 211, 0.5);
	}

	50% {
		transform: scale(1.04);
		box-shadow: 0 0 0 10px rgba(108, 28, 211, 0);
	}
}

@keyframes shimmer {
	0% {
		background-position: -200% center;
	}

	100% {
		background-position: 200% center;
	}
}

@keyframes progressFill {
	from {
		width: 0;
	}
}

@keyframes scale {
	from {
		opacity: 0;
		transform: scale(0.85);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes rotateStar {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes plateGlow {

	0%,
	100% {
		box-shadow: 0px 2px 4px rgba(103, 59, 228, 0.15), 0px 8px 8px rgba(103, 59, 228, 0.13);
	}

	50% {
		box-shadow: 0px 4px 16px rgba(103, 59, 228, 0.5), 0px 8px 24px rgba(103, 59, 228, 0.35);
	}
}

.anim-hidden {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-hidden.anim-visible {
	opacity: 1;
	transform: translateY(0);
}

.anim-left {
	opacity: 0;
	transform: translateX(-40px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-left.anim-visible {
	opacity: 1;
	transform: translateX(0);
}

.anim-right {
	opacity: 0;
	transform: translateX(40px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-right.anim-visible {
	opacity: 1;
	transform: translateX(0);
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
		url('../fonts/Montserrat-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
		url('../fonts/Montserrat-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
		url('../fonts/Montserrat-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}


@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter18pt-ExtraBold.woff2') format('woff2'),
		url('../fonts/Inter18pt-ExtraBold.woff') format('woff');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter18pt-ExtraLight.woff2') format('woff2'),
		url('../fonts/Inter18pt-ExtraLight.woff') format('woff');
	font-weight: 200;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter18pt-SemiBold.woff2') format('woff2'),
		url('../fonts/Inter18pt-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter18pt-Medium.woff2') format('woff2'),
		url('../fonts/Inter18pt-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter18pt-Regular.woff2') format('woff2'),
		url('../fonts/Inter18pt-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

:root {
	--color-accent: #6C1CD3;
	--purple: #7c3aed;
	--white: #fff;
	--black: #000000;
	--light-green: #d9fdd3;
	--color-text: #8696A0;
}

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	font-family: 'Inter';
	font-weight: 400;
	font-size: 16px;
}

img {
	max-width: 100%;
	width: 100%;
}

a {
	text-decoration: none;
}

.container {
	max-width: 1320px;
	width: 100%;
	margin: 0 auto;
}

.btn {
	display: flex;
	align-items: center;
	gap: 15px;
	font-weight: 600;
	font-size: 36px;
	max-width: 300px;
	padding: 15px 25px;
	background-color: var(--color-accent);
	color: #fff;
	border: none;
	border-radius: 14px;
	animation: pulse 2.5s ease-in-out infinite;
	transition: transform 0.3s ease, filter 0.3s ease;
	cursor: pointer;
}

.btn:hover {
	transform: scale(1.05);
	filter: brightness(1.15);
}

.intro {
	margin: 74px 0 56px;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.header__palte {
	display: flex;
	align-items: center;
	max-width: 80px;
	gap: 4px;
	padding: 10px 20px;
	background: linear-gradient(180deg, #6C1CD3 0%, #000 100%);
	box-shadow: 0px 2px 4px rgba(103, 59, 228, 0.15), 0px 8px 8px rgba(103, 59, 228, 0.13), 0px 18px 11px rgba(103, 59, 228, 0.08), 0px 31px 13px rgba(103, 59, 228, 0.02);
	border-radius: 24px;
	outline: 1px #9D80F0 solid;
	outline-offset: -1px;
	animation: plateGlow 3s ease-in-out infinite;
}

.header__palte svg {
	flex-shrink: 0;
}

.header__palte p {
	font-weight: 500;
	font-size: 18px;
	color: #fff;
}

.intro__wrapper {
	padding: 20px 50px;
	background: linear-gradient(349deg, #E4E0E7 1%, white 100%);
	border-radius: 12px;
}

.intro__main {
	display: grid;
	grid-template-columns: 1fr 3px 1fr;
	gap: 30px;
	margin-bottom: 40px;
}

.intro__main-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.wrapper-left {
	animation: fadeInLeft 0.8s ease forwards;
}

.wrapper-right {
	animation: fadeInRight 0.8s ease forwards;
	animation-delay: 0.2s;
	opacity: 0;
}

.intro__img {
	animation: floatY 4s ease-in-out infinite;
}

.separator {
	width: 3px;
	height: 100%;
	background-color: var(--color-accent);
}

.intro__title {
	font-family: 'Montserrat';
	font-weight: 700;
	font-size: 52px;
	text-align: center;
	color: #000;
	margin-bottom: 40px;
}

.intro__title span {
	display: block;
	color: var(--color-accent);
	font-weight: inherit;
	font-size: 56px;
}

.intro__subtitle {
	font-family: 'Montserrat';
	font-weight: 600;
	font-size: 40px;
	text-align: center;
	margin-bottom: 40px;
}

.intro__subtitle span {
	font-family: 'Montserrat';
	font-weight: inherit;
	font-size: inherit;
	color: var(--color-accent);
}

.intro__descr {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1145px;
	margin: 0 auto;
}

.intro__descr p {
	max-width: 500px;
	color: var(--color-text);
	text-align: center;
}

.about {
	margin-bottom: 100px;
}

.about__wrapper {
	display: flex;
	flex-direction: column;
	padding: 0 80px;
}

.about__item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
	gap: 120px;
}

.about__item:nth-child(2) {
	align-items: center;
}

.about__item:nth-child(3) {
	align-items: flex-end;
}

.item__text {
	max-width: 500px;
}

.item__title {
	font-family: 'Montserrat';
	font-weight: 600;
	font-size: 40px;
	margin-bottom: 40px;
}

.item__title span {
	color: var(--color-accent);
	font-family: 'Montserrat';
	font-weight: 600;
	font-size: 40px;
}

.item__descr {
	font-size: 16px;
	color: var(--color-text);
	margin-bottom: 20px;
}

.item__descr:last-child {
	margin-bottom: 0;
}

.item__block {
	position: relative;
	max-width: 500px;
	width: 100%;
	padding: 30px 75px;
	border-radius: 12px;
	background: linear-gradient(0, #6C1CD3 10%, #fff 100%);
	overflow: hidden;
}

.about__item:first-child .item__block::after {
	content: '';
	position: absolute;
	top: 20px;
	left: 0;
	background-image: url('../images/chart.svg');
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.block__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 10px 12px;
	width: 100%;
	height: 60px;
	background: #fff;
	border-radius: 12px;
	margin-bottom: 4px;
	z-index: 3;
}

.block__row:last-child {
	margin-bottom: 0;
	background: linear-gradient(0, #6C1CD3 0%, #fff 50%)
}

.block__wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
}

.block__img {
	width: 24px;
	height: 24px;
}

.block__title {
	font-weight: 600;
	font-size: 12px;
}

.block__descr {
	font-size: 12px;
	color: var(--color-text);
}

.block__plate {
	border-radius: 24px;
	color: #25D366;
	background-color: #D9FDD3;
	font-weight: 600;
	font-size: 12px;
	padding: 5px 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.block__plate:hover {
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.about__item:nth-child(2) .item__block,
.about__item:last-child .item__block {
	padding: 25px 40px;
}

.item__block:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(108, 28, 211, 0.25);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.access__btn {
	animation: pulse 2.5s ease-in-out infinite, shimmer 3s linear infinite;
	background-size: 200% auto;
}

.access__wrapper {
	display: flex;
	justify-content: space-between;
}


.column__item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background: #fff;
	border-radius: 100%;
	margin-bottom: 10px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.column__item:hover {
	transform: scale(1.15) rotate(5deg);
	box-shadow: 0 4px 16px rgba(108, 28, 211, 0.3);
}

.column__item:last-child {
	margin-bottom: 0;
}

.column__item img {
	max-width: 22px;
}

.block__column.result {
	max-width: 260px;
	width: 100%;
}

.column__row {
	display: flex;
	justify-content: space-between;
	width: 100%;
	background: #fff;
	border-radius: 14px;
	padding: 12px 30px;
	margin-bottom: 20px;
}

.column__wrapper {
	text-align: center;
}

.week {
	font-weight: 200;
	font-size: 12px;
	margin-bottom: 12px;
}

.progress {
	position: relative;
	width: 100%;
	height: 6px;
	background: #D3D3D3;
	border-radius: 8px;
	margin-bottom: 6px;
}

.progress::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 30%;
	height: 6px;
	background: #00A884;
	border-radius: 8px;
	animation: progressFill 1.5s ease forwards;
}

.column__wrapper:last-child .progress::after {
	width: 100%;
}

.profit p {
	font-weight: 500;
	font-size: 12px;
	margin-bottom: 2px;
}

.profit__sum {
	font-weight: 500;
	font-size: 18px;
}

.column__row.row {
	position: relative;
	padding: 12px;
}

.column__row.row::after {
	content: '5 мин назад';
	position: absolute;
	top: 7px;
	right: 10px;
	font-weight: 200;
	font-size: 10px;
}

.row__img {
	max-width: 70px;
	width: 100%;
	margin-right: 16px;
}

.row__wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.row__title {
	font-weight: 500;
	font-size: 16px;
}

.row__accrued {
	font-weight: 500;
	font-size: 13px;
}

.access__wrapper {
	margin-bottom: 25px;
}

.access__title {
	font-weight: 600;
	font-size: 40px;
	color: #fff;
	text-align: center;
	margin-bottom: 30px;
}

.access__btn {
	padding: 8px 25px;
	justify-content: center;
	font-size: 28px;
	background: #fff;
	color: #6200A8;
	margin: 0 auto 35px;
	box-shadow: 0px 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.access__descr {
	font-size: 16px;
	text-align: center;
	color: #fff;
}

.text__logo {
	max-width: 100px;
	margin-bottom: 30px;
}

.text__btn {
	justify-content: center;
	font-size: 14px;
	border-radius: 120px;
}

.text__btn img {
	max-width: 15px;
}

.transactions__wrapper {
	display: flex;
	justify-content: space-between;
}

.transactions {
	max-width: 280px;
	width: 100%;
	padding: 20px 12px;
	background: #fff;
	border-radius: 12px;
	margin-bottom: 10px;
}

.transactions__title {
	font-size: 14px;
}

.transactions__descr {
	color: var(--color-text);
	font-size: 12px;
	margin-bottom: 20px;
}

.transactions__item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 15px;
	transition: transform 0.3s ease, background 0.3s ease;
	padding: 6px;
	border-radius: 8px;
}

.transactions__item:hover {
	transform: translateX(8px);
	background: rgba(108, 28, 211, 0.05);
}

.transactions__img {
	max-width: 25px;
}

.transactions__progress {
	width: 100%;
}

.transactions__info {
	display: flex;
	justify-content: space-between;
	width: 100%;
	font-weight: 500;
	font-size: 12px;
	margin-bottom: 5px;
}

.transactions__progressbar {
	position: relative;
	width: 100%;
	height: 5px;
	border-radius: 120px;
	background: #E0D5E5;
}

.transactions__progressbar::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	border-radius: 120px;
	animation: progressFill 1.5s ease forwards;
}

.transactions__item:nth-child(1) .transactions__progressbar::after {
	background: #000;
	width: 70%;
}

.transactions__item:nth-child(2) .transactions__progressbar::after {
	background: #34B7F1;
	width: 60%;
}

.transactions__item:nth-child(3) .transactions__progressbar::after {
	background: #EA0038;
	width: 55%;
}

.transactions__item:nth-child(4) .transactions__progressbar::after {
	background: #128C7E;
	width: 75%;
}

.logo__white {
	display: block;
	margin: 0 auto;
	max-width: 120px;
}

.footer {
	font-family: 'Montserrat';
	background: linear-gradient(358deg, #E5DDD5 1%, white 100%)
}

.footer__wrapper {
	text-align: center;
	padding: 60px 0 30px;
}

.footer__text {
	font-weight: 400;
	font-size: 20px;
	margin-bottom: 20px;
}

.footer__copyright {
	font-weight: 600;
	font-size: 20px;
}

.arrow {
	max-width: 18px;
	transition: transform 0.3s ease;
}

.arrow:hover {
	transform: translateX(5px) scale(1.2);
}

@media (max-width: 1024px) {

	.intro {
		margin: 0 0 40px;
	}

	.about {
		margin-bottom: 40px;
	}

	.intro__title {
		font-size: 30px;
	}

	.intro__title span {
		font-size: 34px;
	}

	.intro__subtitle {
		font-size: 24px;
	}

	.btn {
		font-size: 18px;
	}

	.header__logo img {
		max-width: 100px;
	}

	.intro__wrapper {
		padding: 20px 15px;
	}

	.about__wrapper {
		padding: 0 15px;
	}

	.item__title {
		font-size: 32px;
	}

	.item__title span {
		font-size: 32px;
	}

	.intro__main {
		grid-template-columns: 1fr;
	}

	.intro__descr {
		display: none;
	}

	.about__item:nth-child(2) .item__block,
	.about__item:last-child .item__block {
		padding: 15px;
	}

	.access__wrapper,
	.transactions__wrapper {
		gap: 15px;
	}

	.arrow {
		max-width: 10px;
	}

	.row__img {
		object-fit: contain;
		max-width: 30px;
		margin-right: 5px;
	}

	.access__title {
		font-size: 28px;
	}

	.column__row {
		padding: 12px;
	}

	.about__item {
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}

	.about__item:nth-child(2) .item__text {
		order: 1;
	}

	.about__item:nth-child(2) .item__block {
		order: 2;
	}

	.about__item:nth-child(3) {
		align-items: center;
	}

	.transactions__img {
		max-width: 20px;
	}

	.transactions__name,
	.transactions__profit {
		font-size: 12px;
	}

	.item__text {
		text-align: center;
	}

	.text__btn {
		margin: 0 auto;
	}

	.footer__wrapper {
		padding: 15px;
	}

	.footer__text,
	.footer__copyright {
		font-size: 14px;
	}
}



/* modal */
.modal-lead {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 4;
	padding: 40px 20px;
	overflow-y: scroll;
}

.modal-lead.active {
	display: grid;
}

.modal-lead__content {
	background: var(--purple);
	border-radius: 16px;
	padding: 60px 20px;
	width: 100%;
	max-width: 600px;
	position: relative;
	z-index: 6;
	animation: scale 0.7s ease-in-out;
}

.modal-lead__close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(0,0,0,0.2);
	border: none;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}

.modal-lead__close:hover {
	background: rgba(0,0,0,0.4);
}

.modal-lead__content-subtitle,
.modal-lead__content-title {
	color: #fff;
}

.modal-lead__content-title {
	font-family: "Montserrat", sans-serif;
	font-size: 28px;
	font-weight: 600;
	line-height: normal;
}

.modal-lead__content-subtitle {
	margin-top: 10px;
	font-size: 16px;
	line-height: 22px;
}

.modal-lead__content-banner {
	margin-top: 25px;
	padding: 25px 20px;
	background: #fff;
	border-radius: 12px;
}

.banner__top-title {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	font-weight: 700;
	line-height: normal;
}

.banner__top-id,
.banner__top-subtitle {
	font-size: 16px;
	line-height: 22px;
}

.banner__top-title img {
	max-width: 100px;
}

.modal-lead__content-subtitle,
.modal-lead__content-title,
.banner__top-title,
.banner__top-subtitle,
.banner__top-id,
.banner__description-title,
.modal-lead__content-note,
.banner__description-subtitle {
	text-align: center;
}

.banner__top-title,
.banner__top-subtitle {
	color: var(--black);
}

.banner__top-subtitle {
	margin-top: 15px;
}

.banner__top-id {
	margin-top: 10px;
	color: var(--purple);
}

.modal-lead__content-banner__description {
	margin-top: 40px;
}

.banner__description-title {
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
}

.banner__description-subtitle {
	margin-top: 10px;
	color: var(--grey);
	font-size: 14px;
	line-height: 20px;
}

.modal-lead__content-banner__note {
	margin-top: 25px;
	color: var(--purple);
	font-size: 10px;
	line-height: normal;
	background: var(--light-green);
	border-radius: 120px;
	width: fit-content;
	margin-left: auto;
	padding: 6px 10px;
}

.modal-lead__content-form {
	margin-top: 25px;
	display: none;
}

.modal-lead__content-form.active {
	display: block;
}

.modal-lead__content-button {
	display: flex;
	justify-content: center;
	margin-top: 25px;
}

.modal-lead__content-button .button {
	max-width: 270px;
}

.modal-lead__content-note {
	margin-top: 25px;
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	line-height: normal;
}

.modal-lead__overlay {
	animation: fadeIn 0.4s ease-in-out;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(146, 156, 196, 0.1);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	z-index: 5;
}

.black-btn {
	background: var(--black);
}

.button {
	display: flex;
	column-gap: 10px;
	width: 100%;
	height: 40px;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: var(--white);
	border-radius: 120px;
	font-size: 14px;
	line-height: 20px;
	position: relative;
	cursor: pointer;
}

.register-form {
	max-width: 350px;
	font-size: 18px;
	margin: 0 auto;
}

.form-input-main {
	margin: 16px 0;
}

.form-input-main input,
.form-input-main select {
	font-family: "Inter", sans-serif;
	height: 40px;
	width: 100%;
	padding-left: 10px;
	border-radius: 12px;
	background: #e6f9f6;
	color: #000;
	font-size: 1rem;
	line-height: 20px;
}

.form-input-main select {
	margin: 0;
	width: 100%;
}

.form-input-main input::placeholder,
.form-input-main select::placeholder {
	color: #3ca146;
	opacity: 1;
}

button[name="submitBtn"] {
	width: 100%;
	height: 45px;
	border: none;
	outline: none;
	margin: 0 auto;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	background: #000;
	color: #fff;
	font-size: 16px;
	line-height: 22px;
	position: relative;
}

button[name="submitBtn"]:after {
	content: "";
	position: absolute;
	background: url("../images/arrow-right.svg") no-repeat center/contain;
	width: 20px;
	height: 20px;
	right: 22%;
	top: 50%;
	transform: translate(-50%, -50%);
}

button[name="submitBtn"]:hover {
	background: transparent;
	border: 2px #000 solid;
	transition: background 0.3s ease-in-out;
}

.form-header-text,
.form-footer-text {
	color: #fff;
	font-size: 14px;
	text-align: center;
}

.form-header-text {
	margin-bottom: 20px;
}

.form-footer-text {
	margin-top: 20px;
}

.form-input-main label {
	display: flex;
	align-items: flex-start;
	flex-direction: column-reverse;
	gap: 10px;
	font-size: 16px;
	line-height: 100%;
	color: #fff;
}

.form-input-main label.checkbox--row {
	flex-direction: row;
	align-items: center;
}

.form-input-main label.checkbox--row span.checkbox--span {
	width: 100%;
}

.form-input-main label input[type="checkbox"] {
	width: 25px;
	height: 25px;
	padding: 0;
	margin: 0;
	accent-color: #3ca146;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type="tel"],
.iti--allow-dropdown input[type="text"],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type="tel"],
.iti--separate-dial-code input[type="text"] {
	width: 100%;
	/* padding-left: 96px !important; */
}

.iti__selected-dial-code,
.iti__arrow {
	color: #000 !important;
	border-top-color: #000 !important;
}

.iti {
	width: 100% !important;
}

.iti__country {
	color: #000 !important;
}

.form-input option {
	color: #000 !important;
}

/* Hide arrows */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="number"] {
	-moz-appearance: textfield;
}

@media screen and (max-width: 768px) {
	button[name="submitBtn"] {
		width: 100%;
	}
}

/* Default Form  */

/* End Form */

.error {
	background: rgba(255, 0, 0, 0.5) !important;
	color: #fff !important;
}

.error::placeholder {
	color: #fff !important;
}

.valid {
	background: rgba(0, 255, 0, 0.5) !important;
}

/* loader  */

.loader {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	background-color: rgba(37, 44, 51, 0.5);
}

.loader-element {
	display: block;
	position: relative;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #00faaa;
	-webkit-animation: 2s linear infinite spin;
	animation: 2s linear infinite spin;
}

.loader-element::before {
	position: absolute;
	content: "";
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #f70044;
	-webkit-animation: 3s linear infinite spin;
	animation: 3s linear infinite spin;
}

.loader-element::after {
	position: absolute;
	content: "";
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #00faaa;
	-webkit-animation: 1.5s linear infinite spin;
	animation: 1.5s linear infinite spin;
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* loader  */

/* modal  */

.modal_phone {
	opacity: 1;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 99999;
	display: none;
	outline: 0;
	padding-right: 15px;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.4);
	overflow-x: hidden;
	overflow-y: auto;
	color: #000;
}

.modal_phone.open_phone {
	display: flex;
}

.modal-open_phone {
	overflow: hidden;
}

.modal-dialog_phone {
	position: relative;
	width: 100%;
	max-width: 32rem;
	padding: 1rem;
	box-sizing: border-box;
}

.modal-content_phone {
	display: flex;
	flex-direction: column;
	pointer-events: auto;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0.3rem;
	outline: 0;
}

.modal-header_phone {
	display: flex;
	align-items: center;
	padding: 1rem 1rem;
}

.modal-header_phone {
	justify-content: space-between;
	border-top-left-radius: 0.3rem;
	border-top-right-radius: 0.3rem;
}

.modal-body_phone {
	position: relative;
	flex: 1 1 auto;
	padding: 1rem;
}

.modal-title_phone {
	font-size: 1.25rem;
	font-weight: 600;
}

.close-button_phone {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	opacity: 0.5;
	background-color: transparent;
	border: 0;
	cursor: pointer;
	padding: 1rem 1rem;
	margin: -1rem -1rem -1rem auto;
}

/* modal  */
input {
	width: 100%;

}

.form__wrapper,
.form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.form__wrapper {
	padding: 0 20px;
}

.phone-eror-mess {
	display: block;
	width: 100%;
	color: #fff;
	line-height: 2em;
	background-color: red;

}

.input-group .form-control {
	background-color: #fff;
	border: none;
	border-radius: 0px;
	padding: 10px 5px;
}

/* AIO template form styles inside modal */
#formArea form {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 0 20px;
}

#formArea form input,
#formArea form select,
#formArea form textarea {
	width: 100%;
	background-color: #fff;
	border: none;
	border-radius: 0px;
	padding: 10px 5px;
}

#formArea form input::placeholder,
#formArea form textarea::placeholder {
	opacity: 0.7;
}

#formArea form button,
#formArea form input[type="submit"] {
	display: flex;
	align-items: center;
	justify-content: center;
}

.input-group .form-control::placeholder {}

.iti__selected-flag {
	z-index: 10;
}

.form_error_msg {
	color: #ff0000;
	position: absolute;
	top: 42px;
	left: 0;
}

.form-error-content {
	margin-bottom: 10px;

	text-align: center;
	background: #cb0d0d;
	color: #fff;
	text-transform: uppercase;
	padding: 5px;
	display: none;

}

.form-error-content.active {
	display: block;
}

.form-preloader {
	display: none;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 100;
	background: rgba(0, 0, 0, .7);

	align-content: center;
	justify-content: center;
	height: 100%;


}

.form-preloader.active {
	display: flex;
}

.form-preloader__img {
	width: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

img {
	/* width: 100%; */
}

.top-form {
	font-weight: bold;
}

.reg-error {
	color: #ff0000;
}

.form_has_error {
	color: #ff0000;
}

.reg-form_error {
	text-align: center;
	margin: 25px 0 15px;
	color: #ff0000;
	position: absolute;
	bottom: 39px;
	width: 100%;
}

.reg-form .popup {
	box-sizing: border-box;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 101;
}

.reg-form .popup .overlay {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 95;
	width: 100%;
	height: 100%;
}

.reg-form .popup .container {
	display: block;
	width: 320px;
	padding: 20px;
	margin: 5% auto 0;
	position: relative;
	background: #fff;
	z-index: 100;
	box-sizing: border-box;
	-webkit-box-shadow: 2px 2px 3px 3px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 2px 2px 3px 3px rgba(0, 0, 0, 0.3);
	box-shadow: 2px 2px 3px 3px rgba(0, 0, 0, 0.3);
	text-align: center;
}

.buttonSend {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.loadBtn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 20px;
	max-height: 20px;
}

.btnFormText {
	margin: 0 !important;
	color: white !important;
	font-size: 18px;
	text-align: center !important;
	text-indent: 0.0892857143em;
	text-transform: uppercase;
	letter-spacing: .0073529412em !important;
}

.form-group {
	text-align: center;
	width: 100%;
	position: relative;
	margin-bottom: 0px !important;
}

.valid:-webkit-autofill {
	appearance: none;
	border: 1px solid green;
	position: relative;
}

.isValid:-webkit-autofill {
	appearance: none;
	border: 1px solid red !important;
	position: relative;
}


.iti {
	width: 100%;
}

.fa__err,
.fa__checked {
	display: none;
	cursor: pointer;
}

.fa__errInfo {
	display: none;
	max-width: 180px;
	padding: 4px;
	line-height: 1;
	text-align: start;
}

.form-group .btn {}

.form-group .btn img {
	margin-right: 10px;
}

.valid {
	border: 1px solid green;
	position: relative;
}

.isValid {
	border: 1px solid red !important;
	position: relative;
}

.isValid+span {
	display: block;
}

.isValid+.fa__err,
.valid+i {
	display: block;
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 600;
	font-size: 16px;
	top: 50%;
	right: 10px;
	transform: translate(0, -50%);
	z-index: 100;
	color: #fff;
	font-style: normal;
	color: #e74c3c;
	visibility: visible;
}

.valid+i {
	color: #2ecc71;
}

.isValid+.fa__err::before {
	content: "\f06a";
}

.valid+i::before {
	content: "\f058";
}

.isValid+.fa__err+.fa__errInfo {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 5px;
	top: -54%;
	padding: 5px;
	color: RED;
	font-size: 10px;
	background: #fff;
	border: 1px solid red !important;
	border-radius: 8px !important;
	z-index: 200;
}

.notvalidphone {
	background-color: rgb(253, 164, 164) !important;
	border: 1px solid red !important;
}

.initial {
	border: 1px solid gray !important;
}

@media(max-width:400px) {
	.fa__errInfo {
		max-width: 150px;
	}
}


/* PRELOADER */

.preloaderWrapperForm {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #000000d4;
	z-index: 9999;
	text-align: center;
	margin-top: 50px;
	margin: 0 !important;
}

.preloaderWrapperForm span {
	width: 5px;
	height: 50px;
	background: linear-gradient(180deg, #7F4095, #FB3393);
	display: inline-block;
	margin: 0 1px;
	border-radius: 50px;
	animation: animade 1.5s infinite ease-in-out;
	margin-right: 4px !important;
}

@keyframes animade {

	0%,
	50%,
	100% {
		transform: scaleY(0.5);
	}

	20% {
		transform: scaleY(1.0);
	}
}

.preloaderWrapperForm span:nth-child(1) {
	animation-delay: 1.1s;
}

.preloaderWrapperForm span:nth-child(2) {
	animation-delay: 1.2s;
}

.preloaderWrapperForm span:nth-child(3) {
	animation-delay: 1.3s;
}

.preloaderWrapperForm span:nth-child(4) {
	animation-delay: 1.4s;
}

.preloaderWrapperForm span:nth-child(5) {
	animation-delay: 1.5s;
}