@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

:root {
	--bg-color: #222222;
	--text-color: #d9d9d9;

	--menu-bg: #d9d9d9;

	--nav-bg: #121212;
	--nav-close: #d9d9d9;
	--nav-text: #d9d9d9;
	--nav-link: #24CD77;
	--alt-nav-link: #009bf8;

	--proggress-text: #24CD77;
	--alt-proggress-text: #009bf8;
	--progress-bg: rgba(255, 255, 255, .15);
	--progress-filled: #24CD77;
	--alt-progress-filled: #009bf8;

	--title: #ffffff;

	--input-border: #24CD77;
	--alt-input-border: #009bf8;

	--input-text: #d9d9d9;
	--input-icon: #d9d9d9;
	--input-icon-grey: #d9d9d9;
	--input-label: #24CD77;
	--alt-input-label: #009bf8;

	--input-icon-focus: #24CD77;
	--input-label-focus: #24CD77;
	--alt-input-icon-focus: #009bf8;
	--alt-input-label-focus: #009bf8;
	--input-error: #FC5B53;

	--btn-bg: #24CD77;
	--alt-btn-bg: #009bf8;
	--btn-text: #ffffff;
	--btn-bg-disabled: #B3B6B7;
	--btn-text-disabled: rgba(0, 0, 0, .3);

	--form-bottom: #000000;

	--footer: #535353;
}

*,
:before,
:after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: 0;
}

html,
body {
	height: 100%;
}

body {
	background: var(--bg-color);
	color: var(--text-color);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.18;
	text-align: center;
}

body.rtl-text {
	direction: rtl;
}

.main {
	max-width: 600px;
	margin: 0 auto;
	padding: 20px 24px 24px;
	position: relative;
}

.menu-btn {
	position: absolute;
	top: 24px;
	left: 24px;
	width: 32px;
	padding: 4px;
	margin-bottom: 20px;
	cursor: pointer;
}

.menu-btn div {
	height: 4px;
	background: var(--menu-bg);
	border-radius: 2px;
}

.menu-btn div+div {
	margin-top: 4px;
}

.nav {
	position: fixed;
	top: 0;
	left: -110%;
	bottom: 0;
	width: 100%;
	background: var(--nav-bg);
	padding: 48px 36px;
	color: var(--nav-text);
	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: var(--nav-close);
	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: var(--nav-link);
	text-decoration: none;
}
.alt .nav-item a {
	color: var(--alt-nav-link);
}

.steps {
	color: var(--proggress-text);
	font-size: 12px;
	line-height: 1.18;
	text-align: left;
	text-transform: uppercase;
	margin-bottom: 28px;
}
.alt .steps {
	color: var(--alt-proggress-text);
}

.steps:after {
	content: '';
	display: table;
	clear: both;
}

.step {
	float: left;
	width: calc(100%/4 - 8px);
	height: 8px;
	background: var(--progress-bg);
	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: var(--progress-filled);
	transition: 0.5s ease;
}
.alt .step:after {
	background: var(--alt-progress-filled);
}

.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: var(--title);
	font-size: 26px;
	line-height: 1.18;
	font-weight: 900;
	margin-bottom: 20px;
}

.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;
}
.alt .webt-icon__value {
	color: var(--alt-proggress-text);
}

.meter-1 {
	stroke-dasharray: 800;
	stroke-dashoffset: 0;
	stroke: var(--progress-filled);
	stroke-width: 14px;
	fill: transparent;
	animation: progress-1 4s ease-out;
}
.alt .meter-1 {
	stroke: var(--alt-progress-filled);
}

@keyframes progress-1 {
	from {
		stroke-dashoffset: 800;
	}

	to {
		stroke-dashoffset: 0;
	}
}

.label {
	font-size: 16px;
	line-height: 1.6;
	text-align: left;
	margin-bottom: 24px;
}

.rtl-text .label {
	text-align: right;
}

.field {
	position: relative;
	margin-bottom: 32px;
	/*
	-webkit-animation: heartbeat 1.75s ease-in-out infinite both;
	-webkit-animation-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: var(--bg-color);
	border: 2px solid var(--input-border);
	border-radius: 8px;
	padding: 2px 38px 0 91px;
	direction: ltr;
	color: var(--input-text);
	font-size: 24px;
	letter-spacing: 2px;
	transition: 0.5s ease;
}
.alt .field-input {
	border-color: 2px solid var(--alt-input-border);
}

.field-input.pin {
	height: 82px;
	padding-left: 26px;
	text-align: center;
	letter-spacing: 16px;
}

.field-input__prefix {
	position: absolute;
	top: 0;
	left: 0;
	padding-left: 40px;
	color: var(--input-text);
	font-size: 24px;
	line-height: 66px;
	letter-spacing: 2px;
	animation: shake 3s;
	-webkit-animation: shake 3s;
}

input:focus::placeholder {
	color: transparent;
	
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; } /* FF 4-18 */
input:focus::-moz-placeholder { color:transparent; } /* FF 19+ */
input:focus:-ms-input-placeholder { color:transparent; } /* IE 10+ */


@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: var(--input-icon);
	pointer-events: none;
	transition: 0.5s ease;
}

.field-check {
	position: absolute;
	top: 20px;
	right: 14px;
	width: 24px;
	height: 24px;
	fill: var(--input-icon-grey);
	pointer-events: none;
	transition: 0.5s ease;
}

.form-valid .field-check {
	fill: var(--input-icon-focus);
}
.alt .form-valid .field-check {
	fill: var(--alt-input-icon-focus);
}

.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: var(--input-error);
	text-align: left;
	margin-top: 8px;
	display: none;
}

.rtl-text .field-error {
	text-align: right;
}

.field-alert {
	position: absolute;
	left: 50%;
	bottom: 100%;
	margin-bottom: 14px;
	margin-left: -135px;
	width: 270px;
	background: var(--input-error);
	border-radius: 4px;
	padding: 3px 5px;
	color: var(--bg-color);
	font-size: 14px;
	animation: shake 5s ease-in-out 5 both;
	display: none;
}

.field-alert:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	width: 0;
	height: 0;
	margin-left: -10px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid var(--input-error);
}

.field-alert.active {
	display: block;
}

.field-input:focus,
.field-input.focus {
	border-color: var(--input-label-focus);
}
.alt .field-input:focus,
.alt .field-input.focus {
	border-color: var(--alt-input-label-focus);
}

.field-input:focus~.field-input__prefix .field-icon,
.focus .field-icon {
	fill: var(--input-icon-focus);
}
.alt .field-input:focus~.field-input__prefix .field-icon,
.alt .focus .field-icon {
	fill: var(--alt-input-icon-focus);
}

.field-input:focus~.field-label,
.focus~.field-label {
	top: -9px;
	left: 32px;
	background: var(--bg-color);
	padding: 2px 8px;
	color: var(--input-label-focus);
	font-size: 14px;
}
.alt .field-input:focus~.field-label,
.alt .focus~.field-label {
	color: var(--alt-input-label-focus);
}

.rtl-text .field-input:focus~.field-label,
.rtl-text .focus~.field-label {
	left: auto;
	right: 32px;
}

.field-input.has-error {
	border-color: var(--input-error);
}

.has-error~.field-icon {
	fill: var(--input-error) !important;
}

.has-error~.field-label {
	top: -9px;
	left: 32px;
	background: var(--bg-color);
	padding: 2px 8px;
	font-size: 14px;
	color: var(--input-error) !important;
}

.rtl-text .has-error~.field-label {
	left: auto;
	right: 32px;
}

.has-error~.field-error,
.has-error~.field-alert {
	display: block;
}

.btn {
	display: block;
	width: 100%;
	height: 60px;
	background: var(--btn-bg);
	border: none;
	border-radius: 8px;
	color: var(--btn-text);
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	box-shadow: 0 0 8px var(--btn-shadow);
}
.alt .btn {
	background: var(--alt-btn-bg);
}

.btn[disabled],
.btn.disabled {
	background: var(--btn-bg-disabled);
	color: var(--btn-text-disabled);
	box-shadow: none;
}

.form-bottom {
	margin-top: 24px;
	color: var(--form-bottom);
}

.form-bottom a {
	color: inherit;
	text-decoration: underline;
}

.rtl-text .form-bottom {
	text-align: right;
}

.langs {
	direction: ltr;
}

.lang {
	display: inline-block;
	border: 2px solid transparent;
	border-radius: 4px;
	margin: 10px 4px;
	padding: 2px 4px;
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
}

.lang.active {
	border-color: var(--text-color);
}

.footer {
	color: var(--footer);
	font-size: 12px;
}

.footer.hidden {
	padding-top: 50vh;
}

.footer a {
	color: inherit;
}

.footer-content {
	max-width: 400px;
	margin: 0 auto;
	padding: 6px;
}

.footer-content:after {
	content: '';
	clear: both;
	display: block;
}

.content-link {
	display: block;
	float: left;
	width: 33.33%;
	padding: 0 3px;
}

.content-link img {
	display: block;
	margin: 0 auto;
	max-width: 90px;
}

.footer-content__preview {
	display: none;
	border-radius: 4px;
	padding-bottom: 8px;
	overflow: hidden;
}

.footer-content__preview iframe {
	display: block;
	width: 300px;
	height: 200px;
	border: 0;
	margin: 0 auto;
}

.d-none {
	display: none !important;
}

.loading {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('../images/loading.gif') center center no-repeat rgba(0, 0, 0, 0.8);
	display: none;
	z-index: 40;
}

.loading.show {
	display: block;
}

/* DOWNLOAD FILE */

.top_creative {
	padding: 10px 15px 20px;
	justify-content: center;
	text-align: center;
	margin: 0 auto;
	width: 100%;
	position: relative;
	align-items: center;
	display: flex;
}

.download_file {
	display: flex;
	gap: 8px;
	cursor: pointer;
	position: relative;
	align-items: end;
	-webkit-box-align: end;
	-ms-flex-align: end;
}

.file_image {
	width: auto;
	height: 64px;
}

.file_details {
	text-align: initial;
}

.file_details>p {
	margin: 0;
}

.file_details_message {
	color: var(--title);
	font-size: 16px;
	font-weight: bold;
}

.file_details_name {
	font-size: 12px;
}

.file_details_name>i {
	color: #3C70E5;
	font-style: unset;
}

.file_details_expiration {
	font-size: 12px;
}

.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgb(255, 255, 255, 0.6);
	top: 0;
	left: 0;
	z-index: 2;
}

.focus_form {
	z-index: 20 !important;
	position: sticky;
	background: black;
	padding: 20px;
	border-radius: 10px
}

.btn-exit {
	padding: 0px 170px;
	background-color: transparent;
	border-color: white;
	color: white;
	text-decoration: none;
	text-transform: lowercase;
	font-size: 0.7rem;
	margin-bottom: 5px;
	height: 15px;
}

.menu-item {
	display: inline-block;
	border: 2px solid transparent;
	border-radius: 4px;
	margin: 10px 4px;
	padding: 2px 4px;
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	color: var(--text-color) !important;
	border-color: var(--text-color);
	text-decoration: none;
}

.final-txt {
	font-size: 25px;
}

.video-margin {
	margin-bottom: 25px;
	margin-top: 25px;
}

.price {
	color: var(--footer);
	margin-top: 10px;
	font-size: 10px;
}

.v-hidden {
	visibility: hidden;
}

.service-logo {
	position: absolute;
    top: 0px;
    right: 0;
}

.service-logo::before {
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 60px solid #24CD77;
    border-left: 60px solid transparent;
}
.alt .service-logo::before {
    border-top: 60px solid #009bf8;
}

.service-logo img {
	width: 50px;
	transform: rotate(45deg);
	position: absolute;
	top: 10px;
	left: -45px;
}

ol {
    display: block;
    padding: 0 0 0 30px;
    list-style: none;
    overflow: hidden;
}
.rtl-text ol {
	padding: 0 30px 0 0;
}
ol li {
	width: 100%;
    float: left;
    position: relative;
	text-align: start;
	margin-bottom: 5px;
}
li span {
    float: inherit;
    position: absolute;
    left: -30px;
    text-align: center;
    color: #fff;
    line-height: 26px;
    width: 26px; height: 26px;
	background-color: var(--btn-bg);
	border-radius: 50%;
}
.alt li span {
	background-color: var(--alt-btn-bg);
}
.rtl-text li span {
	right: -30px;
}

.operators-label {
	text-align: center !important;
}

.operators-container {
	width: 100%;
	justify-content: center;
	align-items: center;
	display: flex;
	flex-direction: row;
	gap: 10px;
}

.operator-option {
	display: flex;
	flex-direction: column;
	width: 40%;
	height: 60px;
	padding: 5px;
	margin: auto;
	align-items: center;
	justify-content: center;
	background-color: white;
	border-radius: 10px;
}
.operator-option img{
	max-width: 100%;
	max-height: 100%;
	margin: auto;
}

.other-option {
	width: min-content;
	margin: 15px auto;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: underline;
}

  .sms-overlay {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.94);
    z-index: 99;
    overflow: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
  }

  .sms-overlay-title {
	font-size: 32px;
	color: var(--text-color);
	margin: 50px 0px;
  }

  #btn-retry {
	color: var(--footer);
	text-decoration: underline;
	user-select: none;
  }

#services {
	position: absolute;
	top: 10px;
	display: flex;
	flex-direction: row;
	justify-content: end;
	gap: 10px;
	padding: 0 10px;
	width: 100%;
	max-width: 400px;
	color: var(--footer);
	font-size: 12px;
	left: 50%;
	transform: translate(-50%, -50%);
}

[data-welcome] {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 70vh;
	gap: 20px;
}

/****/

      .wrapper {
            width: 200px;
            height: 60px;
            position: relative;
            z-index: 1;
        }

        .circle {
            width: 20px;
            height: 20px;
            position: absolute;
            border-radius: 50%;
            background-color: #24CD77;
            left: 15%;
            transform-origin: 50%;
            animation: circle7124 .5s alternate infinite ease;
        }
        .alt .circle {
            background-color: #009bf8;
        }

        @keyframes circle7124 {
            0% {
                top: 60px;
                height: 5px;
                border-radius: 50px 50px 25px 25px;
                transform: scaleX(1.7);
            }

            40% {
                height: 20px;
                border-radius: 50%;
                transform: scaleX(1);
            }

            100% {
                top: 0%;
            }
        }

        .circle:nth-child(2) {
            left: 45%;
            animation-delay: .2s;
        }

        .circle:nth-child(3) {
            left: auto;
            right: 15%;
            animation-delay: .3s;
        }

        .shadow {
            width: 20px;
            height: 4px;
            border-radius: 50%;
            background-color: rgba(0, 0, 0, 0.9);
            position: absolute;
            top: 62px;
            transform-origin: 50%;
            z-index: -1;
            left: 15%;
            filter: blur(1px);
            animation: shadow046 .5s alternate infinite ease;
        }

        @keyframes shadow046 {
            0% {
                transform: scaleX(1.5);
            }

            40% {
                transform: scaleX(1);
                opacity: .7;
            }

            100% {
                transform: scaleX(.2);
                opacity: .4;
            }
        }

        .shadow:nth-child(4) {
            left: 45%;
            animation-delay: .2s
        }

        .shadow:nth-child(5) {
            left: auto;
            right: 15%;
            animation-delay: .3s;
        }

        .intro_loading {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .full_hide {
            display: none !important;
        }

        .smaller-cta {
            font-size: 13px;
            color: #f5f5f5 !important;
            font-weight: 100;
            margin-left: 2px;
            text-transform: lowercase;
            font-weight: 600;
        }

        .btn{
            line-height: 17px !important;
        }
        body > main > form.focus_form > button > span{
            color: #7e7f80 !important;
        }

        body > main > form:nth-child(3) > button > span {
            color: #7e7f80 !important;
        }
		
		body{margin: 0; padding: 0 !important; mso-line-height-rule: exactly; background-color: #1d1d1d;}
		.main {background-color: /*#212121*/ #1d1d1d; margin: 10px auto; border-radius: 20px !important;}
		
		:root {
	--bg-color: #1d1d1d;
	--text-color: #333333;

	--menu-bg: #d9d9d9;

	--nav-bg: #121212;
	--nav-close: #d9d9d9;
	--nav-text: #d9d9d9;
	--nav-link: #24CD77;
	--alt-nav-link: #009bf8;

	--proggress-text: #24CD77;
	--alt-proggress-text: #009bf8;
	--progress-bg: rgba(0, 0, 0, .15);
	--progress-filled: #24CD77;
	--alt-progress-filled: #009bf8;

	--title: #333333;

	--input-border: #24CD77;
	--alt-input-border: #009bf8; 
	
	--input-text: #333333;
	--input-icon: #333333;
	--input-icon-grey: #333333;
	--input-label: #24CD77;
	--alt-input-label: #009bf8;

	--input-icon-focus: #24CD77;
	--input-label-focus: #24CD77;
	--alt-input-icon-focus: #009bf8;
	--alt-input-label-focus: #009bf8;
	--input-error: #FC5B53;

	--btn-bg: #24CD77;
	--alt-btn-bg: #009bf8;
	--btn-text: #ffffff;
	--btn-bg-disabled: #B3B6B7;
	--btn-text-disabled: rgba(0, 0, 0, .3);

	--form-bottom: #000000;

	--footer: #535353;
	}
	
	.lang {border: 2px solid #00000033;}
	
.menu-item { color: #666666 !important; border-color: #666666;}
	
	.field-input { background: #ffffff;}
	
	.focus_form { background: #c2e2e3;} 
	
.form-valid .btn:hover {cursor: pointer;}
.step2 .btn:hover {cursor: pointer;}
.step2 .btn:hover {cursor: pointer;}
.step2 .btn[disabled]:hover {cursor: inherit;}


.step2 {padding:10px 20px 20px 20px; border-radius:10px; background-color:#e8f7f7;}
.step1 .label, .step2 .label {font-size: 16px; line-height: 1.6; text-align: center;}
.step2 .label {margin-bottom: 10px;}

.main {padding: 0px 10px;}

.webt-icon .progress_arrow {opacity: 1;}

.live {z-index: 999; margin-top: 160px; position: absolute; width: 100%;}
.webt-icon {margin-bottom: 25px !important;}
.title {margin-bottom: 10px !important; color:#ffffff;}
.top_creative {padding: 10px 15px 10px !important;}

.title2 {font-size:16px; padding-bottom:15px; color:#ffffff;}

.steps {padding:0% 3%;}

button {border:none; background:transparent; cursor: pointer; transition: transform .2s;}
button:hover {transform: scale(1.1);}

button .box {background:#009bf8; border-radius:0px 0px 10px 10px;}

button .imagen {background-color:/*#e8f7f7*/ #2f2f2f; border-radius:10px 10px 0px 0px;}

button .imagen img {width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-width: 140px;
    margin-left: auto;
    margin-right: auto;}

.box .lazyload-wrapper img {max-height: 30px;}

.box p {font-family: Roboto, sans-serif;
    padding:5px 0px 3px 0px;
    color: rgb(255, 255, 255);
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    /*text-transform: uppercase;
    letter-spacing: 2px;*/
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1; }

.box span {font-size:25px; padding-left:10px;}

.ask1 button {width: 46%;margin:2% 1%;}

.ask2 button {width: 96%;margin:2% 1%;}


.ask1 button, .ask2 button {-webkit-box-shadow: 0px 6px 0px #2b638f;
    -moz-box-shadow: 0px 6px 0px #2b638f;
    box-shadow: 0px 6px 0px #2b638f;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
border-radius: 10px;}

.texto {float:left;
font-family: 'Inter', Arial, sans-serif;
line-height: 82px; 
    padding-left: 25px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;}
.icono {float:right; margin-bottom: -4px;}
.icono img { max-height:86px;border-radius:0 10px 10px 0;}

.ask2 button {background-color:/*#e8f7f7*/ #2f2f2f; border-radius:10px  ;}

.ask2 button:hover {transform: scale(1.05);}

.peso, .altura {color:#ffffff; padding-left:10px; font-size:25px;}

.ask3 .title {margin-bottom:10px !important;}

.ask3 .btn {margin-top:30px;margin-bottom:30px;}

.ask3 input {text-align:center; font-size:50px; background:#000000; color:#ffffff; max-width:140px; margin:0 auto; display:inline; border:none; border-radius:10px;padding:10px 5px;margin-left: 45px; }

.kg {}

.libras {}
 
 .cm {}
 
 .pulg {}
 
.switch {
    display: flex;margin-top:30px;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    z-index: -1; margin-bottom:30px; 
}

.bton{
    border: 3px solid #1a1a1a; background:#000000;
    display: inline-block;
    padding: 5px 10px;
    position: relative;
    text-align: center;
    transition: background 600ms ease, color 600ms ease; color: #ffffff !important;
}

.switch input[type="radio"].toggle {
    display: none;
    & + label{
        cursor: pointer;
        min-width: 60px;
        &:hover{
            background: none;
            color: #1a1a1a;
        }
        &:after{
            background: #1a1a1a;
            content: "";
            height: 100%;
            position: absolute;
            top: 0;
            transition: left 200ms cubic-bezier(0.77, 0, 0.175, 1);
            width: 100%;
            z-index: -1;
        }
    }
    &.toggle-left + label {
        /*border-right: 0;*/ color: #ffffff;
        &:after{
            left: 100%
        }
    }
    &.toggle-right + label{
        /*margin-left: -5px;*/ color: #ffffff;
        &:after{
            left: -100%;
        }
    }
    &:checked + label {
        cursor: default;
        color: #fff; background: #2b638f; border-radius:10px;
        transition: color 200ms;
        &:after{
            left: 0;
        }
    }
}
	 
.switch2 {
    display: flex;margin-top:5px;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    z-index: -1; margin-bottom:10px; 
}

.bton2 {
    border: 3px solid #1a1a1a;background:#000000;
    display: inline-block;
    padding: 5px 10px;
    position: relative;
    text-align: center;
    transition: background 600ms ease, color 600ms ease; color: #ffffff !important;
}

.switch2 input[type="radio"].toggle2 {
    display: none;
    & + label{
        cursor: pointer;
        min-width: 60px;
        &:hover{
            background: none;
            color: #1a1a1a;
        }
        &:after{
            background: #1a1a1a;
            content: "";
            height: 100%;
            position: absolute;
            top: 0;
            transition: left 200ms cubic-bezier(0.77, 0, 0.175, 1);
            width: 100%;
            z-index: -1;
        }
    }
    &.toggle-left2 + label {
        /*border-right: 0;*/ color: #ffffff;
        &:after{
            left: 100%
        }
    }
    &.toggle-right2 + label{
        /*margin-left: -5px;*/ color: #ffffff;
        &:after{
            left: -100%;
        }
    }
    &:checked + label {
        cursor: default;
        color: #fff; background: #2b638f; border-radius:10px;
        transition: color 200ms;
        &:after{
            left: 0;
        }
    }
}
 
.switch3 {
    display: flex;margin-top:30px;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    z-index: -1; margin-bottom:30px; 
}

.bton3 {
    border: 3px solid #1a1a1a;background:#000000;
    display: inline-block;
    padding: 5px 10px;
    position: relative;
    text-align: center;
    transition: background 600ms ease, color 600ms ease; color: #ffffff !important;
}

.switch3 input[type="radio"].toggle3 {
    display: none;
    & + label{
        cursor: pointer;
        min-width: 60px;
        &:hover{
            background: none;
            color: #1a1a1a;
        }
        &:after{
            background: #1a1a1a;
            content: "";
            height: 100%;
            position: absolute;
            top: 0;
            transition: left 200ms cubic-bezier(0.77, 0, 0.175, 1);
            width: 100%;
            z-index: -1;
        }
    }
    &.toggle-left3 + label {
        /*border-right: 0;*/ color: #ffffff;
        &:after{
            left: 100%
        }
    }
    &.toggle-right3 + label{
        /*margin-left: -5px;*/ color: #ffffff;
        &:after{
            left: -100%;
        }
    }
    &:checked + label {
        cursor: default;
        color: #fff; background: #2b638f; border-radius:10px;
        transition: color 200ms;
        &:after{
            left: 0;
        }
    }
}
 
.info {border-radius: 10px; background: #0f4511; color: #ffffff; font-size: 12px; padding: 10px; line-height: 20px;}

.info span {font-size:20px;}

.load { width:50px; display:inline;margin-bottom: -15px;}
.grupo {margin-bottom: 50px; }
.grupo img { border-radius:10px;}
.ask5 .field-input {font-size: 30px!important; padding: 2px 38px 0 100px;letter-spacing: 4px;}
.ask5 .field {max-width: 400px; margin: 0 auto; margin-bottom: 30px !important;}
.ask5 span {font-size: 28px;} 
    
.border img {border-radius:10px 10px 0px 0px ;}
.title {padding-bottom:25px;}

#step6 .border button {max-width: 24%;padding: 1%;border-radius: 12px;}
#step6 .border button.selected {max-width: 24%;padding: 1%;border-radius: 12px;background-color: rgb(255, 162, 0)!important;  
  box-shadow: rgba(255, 219, 110, 0.78) 0px 0px 10px !important;}
  

.alt .btn {margin-top: 35px;}
.title {margin-top: 25px;}

footer {padding:15px;margin:0 auto;max-width:600px;}