@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

:root {
	--proggress-text: #0090cc;
	--progress-bg: rgba(0, 0, 0, .15);
	--progress-filled: #0090cc;
}

*,
:before,
:after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: 0;
}

html,
body {
	height: 100%;
}

body {
	background: #fff;
	color: #404040;
	font-family: 'Inter', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.18;
	text-align: center;
}
body.rtl-text {
	direction: rtl;
}

.sidebtncheck {
    display: none;
    position: absolute;
    right: 10px;
    line-height: 0;
	margin-top:17px;
}


.checkcircle_icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    animation: active_fill 0.4s 0.4s forwards;
}

.checkcircle_bg {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke: #7ac142; /* Cor verde */
    fill: none;
    animation: active_stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    
}


.checkcircle_tick {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3; /* Diminui a grossura da linha */
    stroke-miterlimit: 10;
    stroke: #fff; /* Cor branca */
    fill: none;
    animation: active_stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

/* Animação para o contorno do círculo */
@keyframes active_stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes active_stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@-moz-keyframes active_stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes active_fill {
    100% {
        box-shadow: inset 0 0 0 30px #43d137;
    }
}

@-webkit-keyframes active_fill {
    100% {
        -webkit-box-shadow: inset 0 0 0 30px #43d137;
    }
}

@-moz-keyframes active_fill {
    100% {
        -moz-box-shadow: inset 0 0 0 30px #43d137;
    }
}
@keyframes active_fill {
    100% {
        box-shadow: inset 0 0 0 30px #43d137;
    }
}

@-webkit-keyframes active_fill {
    100% {
        -webkit-box-shadow: inset 0 0 0 30px #43d137;
    }
}

@-moz-keyframes active_fill {
    100% {
        -moz-box-shadow: inset 0 0 0 30px #43d137;
    }
}


.text-left {
	text-align: left !important;
}
.rtl-text .text-left {
	text-align: right !important;
}

.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: rgba(0, 0, 0, .5);
	border-radius: 2px;
}
.menu-btn div + div {
	margin-top: 4px;
}

.lang {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 32px;
	color: rgba(0, 0, 0, .5);
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
}

.logo {
	position: absolute;
	top: 23px;
	left: 60px;
	right: 60px;
    background-size: contain; /* Ajusta o tamanho da imagem para caber no contêiner */
    background-repeat: no-repeat; /* Evita a repetição da imagem */
    background-position: center; /* Centraliza a imagem */
	display: block;
    width: 81px;
    height: 6%;
    margin: 0 auto;
}
.logo img {
	display: block;
    width: 81px;
    height: auto;
    margin: 0 auto;
}

.nav {
	position: fixed;
	top: 0;
	left: -110%;
	bottom: 0;
	width: 100%;
	background: #0090cc;
	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;
}
.load {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.load-one {
    animation: loading 1s infinite alternate;
}

.load-two {
    animation: loading 1s infinite alternate;
    animation-delay: 0.2s; /* Adiciona um atraso de 0.2s */
}

.load-three {
    animation: loading 1s infinite alternate;
    animation-delay: 0.4s; /* Adiciona um atraso de 0.4s */
}


.load div {
    width: 25px;
    height: 25px;
    background-color: #0090cc;
    margin-left: 5px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-top: calc(50px - 12.5px);
    animation-name: loading;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes loading {
    to {
        opacity: 0.7;
        transform: translateY(-25px);
        -webkit-transform: translateY(-25px);
        -moz-transform: translateY(-25px);
        -ms-transform: translateY(-25px);
        -o-transform: translateY(-25px);
    }

}
.loader-wrapper {
    display: none;
    background: rgb(0 0 0 / 75%);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 999;
}
.steps {
	color: #404040;
	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: var(--pseudo-width, 5%);
    height: 8px;
    background: linear-gradient(273.01deg, #4adefa -8.03%, #0090cc 109.58%);
    transition: width 0.5s ease; 
}
#msisdnerrorTxt{
	color: #ff1100;
    display: none;
    margin-top: -5%;
    margin-bottom: 5%;
}

.pinErrTxt{
	display: none;
	color: #ff1100;
	margin-top: -6%;
    margin-bottom: 4%;
}
.width-transition:after {
    width: 100%;
}
.field-input.green-border {
    border-color: #ff1100; 
}
.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;
}


.webt-icon {
	width: 180px;
	height: 180px;
	margin: 0 auto 10px;
	position: relative;
}
.icon-progress {
	width: 100%;
	height: 100%;
	position: relative;
}
.icon-progress__bg {
	stroke-width: 14px;
	stroke: var(--progress-bg);
	fill: transparent;
}
.webt-icon .progress_arrow {
	width: 120px;
	height: auto;
	opacity: 0;
	transition: all 1s;
	animation: bounceUpDown 2s ease-in-out infinite;
}
@keyframes bounceUpDown {
	0% {
		transform: translateY(0%);
	}
	50% {
		transform: translateY(-5%);
	}
	100% {
		transform: translateY(0%);
	}
}
.webt-icon__value {
	color: var(--proggress-text);
	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;
}
.meter-1 {
	stroke-dasharray: 800;
	stroke-dashoffset: 0;
	stroke: var(--progress-filled);
	stroke-width: 14px;
	fill: transparent;
	animation: progress-1 4s ease-out;
}
@keyframes progress-1 {
	from {
		stroke-dashoffset: 800;
	}
	to {
		stroke-dashoffset: 0;
	}
}

.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 {
	display: block;
	width: 100%;
	height: 64px;
	background: #fff;
	border: 2px solid #0090cc;
	border-radius: 8px;
	padding: 0 38px 0 100px;
	direction: ltr;
	color: #404040;
	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: #404040;
	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: 20px;
	left: 14px;
	fill: #404040;
	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: #0090cc;
}
.field-input:focus ~ .field-input__prefix .field-icon,
.focus .field-icon {
	fill: #0090cc;
}
.field-input:focus ~ .field-label,
.focus ~ .field-label {
	top: -9px;
	left: 32px;
	background: #fff;
	padding: 2px 8px;
	color: #0090cc;
	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 {
	display: block;
	width: 100%;
	height: 60px;
	background: linear-gradient(273.01deg, #b4f3ff -8.03%, #1abcff 109.58%);
	border: none;
	border-radius: 8px;
	color: #ffffff;
	font-family: 'Inter', Arial, sans-serif;
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
}
.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 {
	padding: 5px 0;
	color: #666;
	font-size: 10px;
	text-align: center;
}

.btn-exit {
	display: inline-block;
	background: rgba(0, 0, 0, .15);
	border-radius: 2px;
	padding: 5px;
	color: rgba(0, 0, 0, 1);
	font-size: 10px;
	line-height: 1;
	text-decoration: none;
}
.btn-exit + .price {
	margin-top: 15px;
	margin-bottom: 0; /*50*/
	padding-bottom: 0;
}

.footer {
	max-width: 400px;
	margin: 80px auto 0;
	color: #9b9999;
	font-size: 12px;
	line-height: 1.6;
	opacity: 0.7;
}

.footer.hidden {
	padding-top: 50vh;
}

.d-none {
	display: none;
}

.loading {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('../images/loading.svg') center center no-repeat rgba(0, 0, 0, 0.8);
	display: none;
}
.loading.show {
	display: block;
}

.heading-success {
	font-size: 24px;
    margin-top: 15px;
}

.terms-content {
    display: none;
	font-size: 10px;
}

.terms-content.active {
    display: block;
}

.tab-link {
	cursor: pointer;
}



/* Mobile Toggle Switch */
.toggleWrapper {
	margin: auto;
    width: 55px;
    margin-top: 5px;
    padding-right: 55px;;
  }
  
  .toggleWrapper input.mobileToggle {
	opacity: 0; /* hides checkbox */
	position: absolute;
  }
  
  .toggleWrapper input.mobileToggle + label {
	position: relative;
    display: inline-block;
    user-select: none;
    transition: 0.4s ease;
	height: 21px;
    width: 36px;
    border: 1px solid #e4e4e4;
    border-radius: 60px;
  }
  
  .toggleWrapper input.mobileToggle + label:before {
	content: "";
	position: absolute;
	display: block;
	transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
	height: 20px;
    width: 36px;
    top: 0;
	left: 0;
	border-radius: 30px;
  }
  
  .toggleWrapper input.mobileToggle + label:after {
	content: "";
    position: absolute;
    display: block;
    box-shadow: 0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 0px 0 hsla(0, 0%, 0%, 0.04), 0 4px 9px hsla(0, 0%, 0%, 0.13), 0 3px 3px hsla(0, 0%, 0%, 0.05);
    transition: 0.35s cubic-bezier(0.54, 1.60, 0.5, 1);
    background: whitesmoke;
	height: 20px;
    width: 20px;
    top: 0px;
    left: 0px;
    border-radius: 60px;
  }
  
  /* When Active */
  .toggleWrapper input.mobileToggle:checked + label:before {
	background: #0090cc; /* Active Color */
	transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
  }
  
  .toggleWrapper input.mobileToggle:checked + label:after {
	left: 17px;
  }