@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

:root {
	--btn-text-valid: #fff;
	--btn-bg-valid: #4EB55C;
	--c-color: #000;
	--c-bg: #a9a9a9;
	--c-bg-desc: #ccc;
}

*,
:before,
:after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: 0;
}

html,
body {
	height: 100%;
}

body {
	background: #f8f8f8;
	color: #5A5A5A;
	font-family: 'Inter', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.18;
	text-align: center;
}
body.rtl-text {
	direction: rtl;
}

.main {
	max-width: 400px;
	margin: 0 auto;
	padding: 60px 24px 24px;
	position: relative;
}

.menu-btn {
	position: absolute;
	top: 20px;
	left: 24px;
	width: 32px;
	padding: 4px;
	margin-bottom: 20px;
	cursor: pointer;
}
.menu-btn div {
	height: 4px;
	background: #5A5A5A;
	border-radius: 2px;
}
.menu-btn div + div {
	margin-top: 4px;
}

.lang {
	position: absolute;
	top: 17px;
	right: 24px;
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
}
.lang span {
	display: inline-block;
	border: 2px solid transparent;
	border-radius: 4px;
	margin: 0 2px;
	padding: 2px 4px;
}
.lang span.active {
	border-color: #5A5A5A;
}

.nav {
	position: fixed;
	top: 0;
	left: -110%;
	bottom: 0;
	width: 100%;
	background: #000;
	padding: 48px 36px;
	text-align: center;
	transition: 0.5s ease;
	z-index: 999;
}
.nav.open {
	left: 0;
}
.nav-close {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 48px;
	height: 48px;
	color: #fff;
	font-size: 36px;
	line-height: 48px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
}
.nav-item {
	padding: 16px 0;
	font-size: 32px;
	font-weight: 700;
}
.nav-item a {
	color: #efefef;
	text-decoration: none;
}

.steps {
	color: #5A5A5A;
	font-size: 12px;
	line-height: 1.18;
	text-align: left;
	margin-bottom: 28px;
}
.steps:after {
	content: '';
	display: table;
	clear: both;
}
.step {
	float: left;
	width: calc(50% - 4px);
	height: 8px;
	background: #98f0a4;
	border-radius: 2px;
	overflow: hidden;
	margin-top: 8px;
}
.step + .step {
	margin-left: 8px;
}
.step:after {
	content: '';
	display: block;
	border-radius: 2px;
	width: 8px;
	height: 8px;
	background: #4EB55C;
	transition: 0.5s ease;
}
.step.filled:after {
	width: 100%;
}
.step + .step:after {
	content: none;
}
.step.filled + .step:after {
	content: '';
}
.rtl-text .steps {
	direction: rtl;
	text-align: right;
}
.rtl-text .step {
	float: right;
}
.rtl-text .step + .step {
	margin-left: 0;
	margin-right: 8px;
}

.title {
	color: #0d0d0d;
	font-size: 26px;
	line-height: 1.18;
	font-weight: 900;
	margin-bottom: 32px;
}
.progress-icon {
	width: 220px;
	height: 220px;
	margin: auto;
}
.progress-icon .track {
	stroke: #98f0a4;
	opacity: 0.8;
	stroke-width: 4.5px;
	fill: rgba(0, 0, 0, 0);
	transform: rotate(90deg) translate(0px, -80px);
}
.progress-icon .fill {
	stroke: #9DC08B;
	stroke-dasharray: 219.99078369140625;
	stroke-dashoffset: 0;
	
	-webkit-transition: stroke-dashoffset 1s;
	-moz-transition: stroke-dashoffset 1s;
	-ms-transition: stroke-dashoffset 1s;
	-o-transition: stroke-dashoffset 1s;
	transition: stroke-dashoffset 1s;
}
.progress-icon .track,
.progress-icon .fill {
	fill: rgba(0, 0, 0, 0);
	stroke-width: 5;
	
	-webkit-transform: rotate(90deg) translate(0px, -80px);
	-moz-transform: rotate(90deg) translate(0px, -80px);
	-ms-transform: rotate(90deg) translate(0px, -80px);
	-o-transform: rotate(90deg) translate(0px, -80px);
	transform: rotate(90deg) translate(0px, -80px);
}

.bg {
	stroke: #98f0a4;
}
.progress-icon .value {
	fill: #03da7d;
	color: #98f0a4;
	text-anchor: middle;
	font-weight: 600;
	transition: all 1s;
}
.progress_arrow {
	opacity: 0;
	transition: all 1s;
	-webkit-animation: bounceUpDown 2s ease-in-out infinite;
	-o-animation: bounceUpDown 2s ease-in-out infinite;
	animation: bounceUpDown 2s ease-in-out infinite;
}
@keyframes bounceUpDown {
	0% {
		-webkit-transform: translateY(0%);
		-moz-transform: translateY(0%);
		-ms-transform: translateY(0%);
		-o-transform: translateY(0%);
		transform: translateY(0%);
	}
	50% {
		-webkit-transform: translateY(-5%);
		-moz-transform: translateY(-5%);
		-ms-transform: translateY(-5%);
		-o-transform: translateY(-5%);
		transform: translateY(-5%);
	}
	100% {
		-webkit-transform: translateY(0%);
		-moz-transform: translateY(0%);
		-ms-transform: translateY(0%);
		-o-transform: translateY(0%);
		transform: translateY(0%);
	}
}

.label {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 24px;
	color: #5A5A5A;
	text-align: center;
	margin-top: 20px;
}
.rtl-text .label {
	text-align: right;
}
.field {
	position: relative;
	margin-bottom: 32px;
	-webkit-animation: heartbeat 1.75s ease-in-out infinite both;
	animation: heartbeat 1.75s ease-in-out infinite both;
}
@keyframes heartbeat {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	10% {
		-webkit-transform: scale(0.91);
		transform: scale(0.91);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	17% {
		-webkit-transform: scale(0.98);
		transform: scale(0.98);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	33% {
		-webkit-transform: scale(0.87);
		transform: scale(0.87);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	45% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
}
.field-input {
	display: block;
	width: 100%;
	height: 64px;
	background: #f8f8f8;
	border: 2px solid #d2d2d2;
	border-radius: 8px;
	padding: 0 38px 0 38px;
	direction: ltr;
	color: #0D0D0D;
	font-family: 'Inter', Arial, sans-serif;
	font-size: 24px;
	letter-spacing: 2px;
	transition: 0.5s ease;
}
.field-input.pin {
	height: 82px;
	padding-left: 26px;
	text-align: center;
	letter-spacing: 16px;
}
.field-input__prefix {
	position: absolute;
	top: 2px;
	left: 0;
	padding-left: 40px;
	color: #0D0D0D;
	font-size: 24px;
	line-height: 60px;
	letter-spacing: 2px;
	animation: shake 3s;
	-webkit-animation: shake 3s;
}
@keyframes shake {
	10%, 90% {
		transform: translate3d(-1px, 0, 0);
		-webkit-transform: translate3d(-1px, 0, 0);
	}
	20%, 80% {
		transform: translate3d(2px, 0, 0);
		-webkit-transform: translate3d(2px, 0, 0);
	}
	30%, 50%, 70% {
		transform: translate3d(-4px, 0, 0);
		-webkit-transform: translate3d(-4px, 0, 0);
	}
	40%, 60% {
		transform: translate3d(4px, 0, 0);
		-webkit-transform: translate3d(4px, 0, 0);
	}
}
.field-icon {
	position: absolute;
	top: 18px;
	left: 14px;
	fill: #0D0D0D;
	pointer-events: none;
	transition: 0.5s ease;
}
.field-label {
	position: absolute;
	top: 20px;
	left: 40px;
	font-size: 24px;
	line-height: 1;
	pointer-events: none;
	transition: 0.5s ease;
}
.rtl-text .field-label {
	left: auto;
	right: 40px;
}
.field-error {
	color: #ed4700;
	text-align: left;
	margin-top: 8px;
	display: none;
}
.rtl-text .field-error {
	text-align: right;
}

.field-input:focus,
.field-input.focus {
	border-color: #d2d2d2;
}
.field-input:focus ~ .field-input__prefix .field-icon,
.focus .field-icon {
	fill: #4EB55C;
}
.field-input:focus ~ .field-label,
.focus ~ .field-label {
	top: -9px;
	left: 32px;
	background: #f8f8f8;
	padding: 2px 8px;
	color: #0d0d0d;
	font-size: 14px;
}
.rtl-text .field-input:focus ~ .field-label,
.rtl-text .focus ~ .field-label {
	left: auto;
	right: 32px;
}

.field-input.has-error {
	border-color: #ed4700;
}
.has-error ~ .field-icon {
	fill: #ed4700 !important;
}
.has-error ~ .field-label {
	top: -9px;
	left: 32px;
	background: #f8f8f8;
	padding: 2px 8px;
	font-size: 14px;
	color: #ed4700 !important;
}
.rtl-text .has-error ~ .field-label {
	left: auto;
	right: 32px;
}
.has-error ~ .field-error {
	display: block;
}

.btn {
	display: block;
	width: 100%;
	height: 80px;
	background: #4EB55C;
	border: none;
	border-radius: 8px;
	color: #fff;
	font-family: 'Inter', Arial, sans-serif;
	font-size: 24px;
	font-weight: 700;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.btn[disabled],
.btn.disabled {
	background: #98f0a4;
	color: rgba(255,255,255,.6);
	box-shadow: none;
}

.form-bottom {
	margin-top: 24px;
	color: #5a5a5a;
}
.form-bottom a {
	color: inherit;
	text-decoration: underline;
}
.rtl-text .form-bottom {
	text-align: right;
}

.text {
	display: block;
	color: #5A5A5A;
	text-decoration: none;
}
.text span {
	display: block;
	padding: 8px 0;
	color: #4EB55C;
	font-size: 24px;
	font-weight: 700;
}

.footer {
	margin-top: 86px;
	padding: 0 12px 12px 12px;
	font-size: 10px;
}
.footer.hidden {
	padding-top: 50vh;
}
.footer a {
	color: inherit;
}

.footer-wrap {
	max-width: 450px;
	margin: 0 auto;
	background: #b8b8b8;
	border: 1px solid rgba(30,30,30,.1);
	border-radius: 3px;
	padding: 5px;
	text-rendering: optimizeLegibility;
	color: rgb(76, 76, 76);
	font-size: 11px;
	text-align: left;
}
.footer-head {
	display: inline-block;
	padding: 5px;
	background: rgba(0,0,0,.3);
	color: #ccc;
	font-size: 13px;
	line-height: 18px;
	font-weight: 700;
}
.footer-head span {
	width: 16px;
	height: 16px;
	text-align: center;
	display: inline-block;
	margin-right: 5px;
	background-color: #21f360;
	color: #000;
	border-radius: 8px;
}
.footer-tb tr td:first-child {
	padding-right: 7px;
}
.footer-tb tr td:last-child {
	display: block;
	background: #cccccc;
	border: 1px solid rgba(30,30,30,.1);
	border-radius: 3px;
	padding: 5px;
	margin: 4px auto;
	color: #4c4c4c;
}
.footer-tb a {
	color: rgb(25, 118, 210);
}

.d-none {
	display: none;
}

.loading {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('../img/loading.svg') center center no-repeat rgba(0, 0, 0, 0.8);
	display: none;
}
.loading.show {
	display: block;
}


.webt-icon {
	width: 220px;
	height: 220px;
	margin: 0 auto 32px;
	position: relative;
}
.webt-icon .progress_arrow {
	width: 135px;
	height: auto;
}
.webt-icon .value {
	fill: #98f0a4;
	text-anchor: middle;
	font-weight: 600;
	font-size: 42px;
	transition: all 1s;
}
.webt-icon__value {
	color: #98f0a4;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: absolute;
	font-size: 46px;
	font-weight: 600;
	top: 0;
	left: 0;
}
.icon-progress {
	width: 100%;
	height: 100%;
	position: relative;
}
.meter-1 {
	stroke-dasharray: 800;
	stroke-dashoffset: 0;
	stroke: #4EB55C;
	/*stroke: #0b3834;*/
	stroke-width: 14px;
	animation: progress-1 1.3s ease-out;
}
@keyframes progress-1 {
	from {
		stroke-dashoffset: 800;
	}
	to {
		stroke-dashoffset: 0;
	}
}

.checkbox {
	position: relative;
	margin-top: 16px;
	padding-left: 44px;
	color: #5a5a5a;
	font-size: 10px;
	text-align: left;
}
.checkbox-switcher {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 24px;
	padding: 4px;
	border-radius: 12px;
	background: #d2d2d2;
}
.checkbox-switcher:after {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #4EB55C;
}
.checkbox-switcher.checked:after {
	float: right;
}
.checkbox a {
	color: inherit;
	text-decoration: underline;
}


.content {
	width: 100%;
	max-width: 648px;
	margin: 20px auto;
	padding: 0 16px;
	text-align: left;
}

.accordion {
	margin-bottom: 20px;
}

.accordion-item {
	padding-bottom: 10px;
}

.accordion-title {
	padding: 10px 50px 10px 10px;
	position: relative;
	font-size: 20px;
	font-weight: bold;
	color: var(--c-color);
	background-color: var(--c-bg);
	cursor: pointer;
}

.accordion-title::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	display: block;
	width: 30px;
	height: 30px;
	background-image: url(../img/cross.svg);
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 1;
	transition: transform 0.2s ease-out;
}

.rtl-text .accordion-title {
	padding: 10px 10px 10px 50px;
}
.rtl-text .accordion-title::before {
	right: auto;
	left: 10px;
}

.active.accordion-title::before {
	transform: translateY(-50%) rotate(45deg);
}

.accordion-wrap {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.2s ease-in-out;
}
.accordion-wrap > div {
	overflow: hidden;
}
.active + .accordion-wrap {
	grid-template-rows: 1fr;
}

.accordion-desc {
	padding: 10px;
	font-size: 16px;
	background-color: var(--c-bg-desc);
}

.reasons-title {
	font-size: 20px;
	color: var(--c-color);
	font-weight: bold;
	margin-bottom: 5px;
}

.reasons-wrap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.reasons-item {
	padding: 10px;
	border-radius: 4px;
	background-color: var(--c-bg-desc);
	display: flex;
	flex-direction: column;
}

.reasons-item img {
	display: block;
	width: 30px;
	height: 30px;
	object-fit: contain;
	margin-left: auto;
	margin-top: auto;
}

.reasons-name {
	font-size: 16px;
	margin-bottom: 5px;
}

.reason-desc {
	font-size: 14px;
}

.sticky-btn {
	display: block;
	margin-top: 50px;
	padding: 10px;
	font-size: 15px;
	text-align: center;
	text-decoration: none;
	color: var(--btn-text-valid);
	background-color: var(--btn-bg-valid);
	position: sticky;
	z-index: 10;
	bottom: 0;
}