@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

*,
:before,
:after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: 0;
}

html,
/* body {
	height: 100%;
	
} */

body {
	background: #f3f3f3;
	color: #000;
	font-family: 'Roboto';
	font-size: 14px;
	line-height: 1.18;
	text-align: start;
	animation: gradientAnimation 10s ease infinite;
}

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: #000000;
	border-radius: 2px;
}

.menu-btn div+div {
	margin-top: 4px;
}

.m1 {
	background-color: #e7e7e7;

}

.m1 .creativeArea {
	margin-top: -35px;
	position: relative;
	display: flex;
	/* margin: 0 auto; */
	padding: 32px 0;
	width: 100%;
	align-items: center;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .16), 0 1px 0 rgba(0, 0, 0, .16);
	justify-content: center;
	text-align: center;
}

.m1 .creativeArea .file {
	position: relative;
	display: flex;
	align-items: end;
	cursor: pointer;
	gap: 8px;
}

.m1 .creativeArea .file .file_image {
	width: auto;
	height: 64px;
}

.file_details_message {
	color: #333;
	font-size: 16px;
	font-weight: bold;
}

.m1 .creativeArea .file_details_name i {
	color: #3c70e5;
	font-style: unset;
}

.lang {
	margin-top: -10px;
	position: absolute;
	top: 24px;
	right: 24px;
	width: 52px;
	color: #000000;
	font-size: 18px;
	line-height: 1.15;
	font-weight: 700;
	text-align: center;
	padding: 4px 8px;
	cursor: pointer;
	border: 1px solid #000000;
	border-radius: 8px;
	background-color: #d6fcff57;
	/* background: rgba(0, 0, 0, .5); */

}

.logo {
	position: absolute;
	top: 16px;
	left: 60px;
	right: 60px;
}

.logo img {
	display: block;
	width: 100px;
	height: auto;
	margin: 0 auto;
	filter: grayscale(1);
	background: #006994;
}

.nav {
	position: fixed;
	top: 0;
	left: -110%;
	bottom: 0;
	width: 100%;
	background: #006994;
	padding: 48px 36px;
	color: #fff;
	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;
}

.exit-btn {
	margin: 12px auto 0;
	text-align: center;
	font-size: 18px;
	color: #000000
}

.steps {
	color: black;
	font-size: 12px;
	line-height: 1.18;
	text-align: left;
	text-transform: uppercase;
	margin-bottom: 28px;
}

.steps:after {
	content: '';
	display: table;
	clear: both;
}

.step {
	float: left;
	width: calc(50% - 4px);
	height: 8px;
	background: rgba(0, 0, 0, .1);
	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: #000000;
	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: #404040;
	font-size: 26px;
	line-height: 1.18;
	font-weight: 900;
	margin-bottom: 32px;
}

.label {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 24px;
	color: #404040;
	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 {
	margin-left: 18px;
	display: flex;
	width: 90%;
	height: 60px;
	border: 2px solid #0172e5;
	background-color: rgba(239, 239, 239, .83);
	box-shadow: inset 0px 1px 2px rgba(0, 0, 0, .25), 0 1px 0 #fff;
	border-radius: 8px;
	padding: 0 30px 0 65px;
	direction: ltr;
	color: #000;
	font-size: 15px;
	letter-spacing: 2px;
}

.field-input.pin {
	height: 82px;
	padding-left: 26px;
	text-align: center;
	letter-spacing: 16px;
}

.field-input__prefix {
	margin-left: 18px;
	position: absolute;
	top: 0;
	left: 0;
	padding-left: 55px;
	color: #000;
	font-size: 24px;
	line-height: 66px;
}

.legalArea {
	/* width: 100%; */
	max-width: 480px;
	padding: 0 16px 16px;
	margin: auto;
}

.checkmark-container {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.checkmark__icon,
.errormark__icon {
	width: 40%;
	height: 40%;
	border-radius: 50%;
	display: block;
	stroke-width: 2;
	stroke: #fff;
	stroke-miterlimit: 10;
	box-shadow: inset 0px 0px 0px #7ac142;
	animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
	stroke-dasharray: 166;
	stroke-dashoffset: 166;
	stroke-width: 2;
	stroke-miterlimit: 10;
	stroke: #7ac142;
	fill: none;
	animation: stroke .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

@media (max-width: 768px) {
	.legalArea {
		margin-top: 120%;
	}
}

.terms-component {
	align-items: center;
}

.root.gr .terms-component .terms.service-mobiworld.compliant .compliant {
	display: block;
	font-size: 12px;
}

.terms {
	--active: #fa8812;
	--active-inner: #fff;
	--focus: 2px rgba(0, 0, 0, 0);
	--border: #fa8812;
	--border-hover: #fa8812;
	--background: transparent;
}

/* Toggle Switch Styling */
.toggle-container {
	position: relative;
	display: flex;
	width: 40px;
	height: 20px;
	vertical-align: middle;
}

.toggle-container input {
	opacity: 0;
	width: 0;
	height: 0;
}

.toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--border);
	transition: .4s;
	border-radius: 20px;
}

.toggle-slider:before {
	position: absolute;
	content: "";
	height: 14px;
	width: 14px;
	left: 3px;
	bottom: 3px;
	background-color: var(--active-inner);
	transition: .4s;
	border-radius: 50%;
}

input:checked+.toggle-slider {
	background-color: var(--active);
}

input:checked+.toggle-slider:before {
	transform: translateX(20px);
}

.terms label .disclaimer {
	margin: 0 8px;
	padding: 0;
	font-size: 12px;
	line-height: 1.25;
}

.disclaimer {
	opacity: .32;
}

.gr-legals {
	position: relative;
	display: block;
	margin: 16px auto;
	padding: 5px;
	max-width: 450px;
	font-size: 13px;
	background: rgba(0, 0, 0, .28);
	border: 1px solid rgba(30, 30, 30, .1);
	border-radius: 4px;
	color: #000;
	text-align: left;
	z-index: 2;
}

.gr-legals ul li.table-head {
	padding: 8px;
	background: rgba(0, 0, 0, .3);
	border-top: 0;
	color: #ccc;
	font-size: 12px;
	font-weight: bold;
	justify-content: flex-start;
}

.disclaimer.brand-mobiworld .brand-mobiworld {
	flex: 1;
	display: inline-block;
}

.mw {
	min-width: 100px;
}

.gr-legals ul li.table-head .info {
	display: inline-block;
	margin-right: 8px;
	width: 16px;
	height: 16px;
	background: #ddd;
	border-radius: 8px;
	color: #000;
	font-size: 12px;
	font-weight: bold;
	line-height: 16px;
	text-align: center;
}

.gr-legals ul li {
	display: flex;
	margin: 0;
	padding: 8px;
	border-bottom: 1px solid #000;
	line-height: 1.25;
	list-style: none;
	flex-wrap: wrap;
}

@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: 10px;
	left: 14px;
	fill: #000;
	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.pin,
.field-input.focus {
	border-color: #1b53ad;
}

.field-input:focus~.field-input__prefix .field-icon,
.focus .field-icon {
	fill: #000000;
}

.field-input:focus~.field-label,
.focus~.field-label {
	top: -9px;
	left: 32px;
	background: #fff;
	padding: 2px 8px;
	color: #00a884;
	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: #fff;
	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 {
	background: linear-gradient(-180deg, #e8c818 0%, #e87615 100%);
	box-shadow: inset 0 2px 0 rgba(255, 255, 255, .32), 0 2px 0 #be4607;
	border: none;
	outline: none;
	color: #fff;
	margin: 10px auto;
	width: 100%;
	max-width: 320px;
	padding: 10px;
	font-size: 22px;
	text-transform: uppercase;
	border-radius: 8px;
	height: 60px;
	line-height: 40px;
	font-weight: bold;
	cursor: pointer;
	display: block;
	text-align: center;
	text-shadow: 0 1px 0 rgba(0, 0, 0, .32);
}

.btn-hint span {
	display: block;
	font-size: 11px;
	font-weight: 400;
	opacity: 0.6;
}

.btn[disabled],
.btn.disabled {
	background: rgba(0, 0, 0, .1);
	color: rgba(0, 0, 0, .3);
	box-shadow: none;
}

.form-bottom {
	margin-top: 24px;
	color: #fff;
}

.form-bottom a {
	color: inherit;
	text-decoration: underline;
}

.rtl-text .form-bottom {
	text-align: right;
}

.price {
	margin-top: 10px;
	padding: 5px 0;
	color: #000000;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 15px;
}

.rules {
	margin-top: 10px;
	width: 330px;
	color: inherit;
	border-radius: 10px;
	text-align: justify;
	font-size: 17px;
	font-weight: 400;
	word-spacing: 2px;
}

.rules h4 {
	font-size: 20px;
	margin-bottom: 10px;
	text-align: center;
}

.rules ul {
	padding-left: 20px;
	/* Indent list items */
}

.rules ul li {
	margin-bottom: 4px;
}

.btn-exit {
	display: inline-block;
	background: rgba(0, 0, 0, .1);
	border-radius: 2px;
	padding: 5px;
	color: rgba(0, 0, 0, .6);
	font-size: 10px;
	line-height: 1;
	text-decoration: none;
}

.btn-exit+.price {
	margin-top: 15px;
	margin-bottom: 50px;
}

.footer {
	color: #BEBEBE;
	opacity: 0.7;
	margin-top: 20px;
}

.footer a {
	color: inherit;
}

.footer.hidden {
	padding-top: 50vh;
}

.d-none {
	display: none;
}

.loading {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('./loading.svg') center center no-repeat rgba(0, 0, 0, 0.8);
	display: none;
}

.loading.show {
	display: block;
}


.webt-icon {
	width: 330px;
	height: 265px;
	margin: auto;
	position: relative;
}

.webt-icon .progress_arrow {
	width: 370px;
	height: auto;
}

.container {
	border-radius: 8px;
	/* Rounded corners */
	text-align: justify;
	font-size: 17px;
	line-height: 1.6;
	/* Improve readability */
	/* margin: 20px auto; Center the container with auto margins */
}

@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%);
	}
}

.webt-icon .value {
	fill: #006994;
	text-anchor: middle;
	font-weight: 600;
	font-size: 42px;
	transition: all 1s;
}

.webt-icon__value {
	color: #006994;
	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;
}

.icon-progress__bg {
	fill: none;
	stroke: rgba(0, 0, 0, 0.1);
}

.meter-1 {
	stroke-dasharray: 800;
	stroke-dashoffset: 0;
	stroke: #006994;
	stroke-width: 14px;
	animation: progress-1 1.3s ease-out;
}

@keyframes progress-1 {
	from {
		stroke-dashoffset: 800;
	}

	to {
		stroke-dashoffset: 0;
	}
}

.ltr-text {
	direction: ltr;
	text-align: left;
}

.input-container {
	position: relative;
	width: 300px;
}

.input-field {
	width: 100%;
	padding: 10px 40px;
	/* Space for icons */
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 16px;
	outline: none;
}

.icon {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	cursor: pointer;
	color: #555;
}

.left-icon {
	left: 10px;
}

.right-icon {
	right: 30px;
}

/* Optional: Change color on hover */
.icon:hover {
	color: #007bff;
}