/* start: progress circle -----------------------------------------*/
.wrapper {
width: 90px; /* Set the size of the progress bar */
height: 90px;
position: absolute; /* Enable clipping */
clip: rect(0px, 90px, 90px, 50px); /* Hide half of the progress bar */
left: 50%;
margin-left: -45px;
}
/* Set the sizes of the elements that make up the progress bar */
.circle {
width: 90px;
height: 90px;
border: 12px solid #ff5d13;
border-radius: 100px;
position: absolute;
clip: rect(0px, 50px, 100px, 0px);
}
/* Using the data attributes for the animation selectors. */
/* Base settings for all animated elements */
div[data-anim~=base] {
-webkit-animation-iteration-count: 1;  /* Only run once */
-webkit-animation-fill-mode: forwards; /* Hold the last keyframe */
-webkit-animation-timing-function:linear; /* Linear animation */
}

.wrapper[data-anim~=wrapper] {
-webkit-animation-duration: 0.01s; /* Complete keyframes asap */
-webkit-animation-delay: 2s; /* Wait half of the animation */
-webkit-animation-name: close-wrapper; /* Keyframes name */
}

.circle[data-anim~=left] {
-webkit-animation-duration: 4s; /* Full animation time */
-webkit-animation-name: left-spin;
}

.circle[data-anim~=right] {
-webkit-animation-duration: 2s; /* Half animation time */
-webkit-animation-name: right-spin;
}
/* Rotate the right side of the progress bar from 0 to 180 degrees */
@-webkit-keyframes right-spin {
from {
  -webkit-transform: rotate(0deg);
}
to {
  -webkit-transform: rotate(180deg);
}
}
/* Rotate the left side of the progress bar from 0 to 360 degrees */
@-webkit-keyframes left-spin {
from {
  -webkit-transform: rotate(0deg);
}
to {
  -webkit-transform: rotate(360deg);
}
}
/* Set the wrapper clip to auto, effectively removing the clip */
@-webkit-keyframes close-wrapper {
to {
  clip: rect(auto, auto, auto, auto);
}
}
/* end: progress circle -----------------------------------------*/

*{
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
    /* border: 0; */
}

html,
body,
main,
header,
footer,
section{
    width:100%;
    float:left;
    position:relative;
}

font{
  font-family:inherit;
  font-size:inherit;
  margin: initial;
  padding: initial;
  width:inherit;
}

img{
  width:100%;
}

main,
body{
    margin-top: 24px;
}

body {
    margin-top:0;
    top:0;
    overflow-x: hidden;
    min-height:100vh;
}

button,
a,
input[type="text"],
select{
    outline:none;
}

button{
    cursor: pointer;
}

a,
p,
h1,
h2,
h3,
h4,
h5{
    margin:0;
}

a {
    text-decoration:none;
    cursor:pointer;
}

.container {
    position:relative;
}

.loading-scroll{
    animation: is-rotating 1s infinite;
    border: 6px solid #000;
    border-radius: 50%;
    border-top-color: #477230;
    height: 50px;
    width: 50px;
    margin: auto;
    position: fixed;
    z-index: 999999999999;
    top: 50%;
    margin-top:-25px;
    right:50%;
    margin-right:-25px;
}

.mob {
    display:none !important;
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    box-shadow: 3px 1px 15px #0842981f;
    z-index: 999;
    background: #212529;
    padding-bottom:10px;
    z-index: 999999999;
    height: 75px;
}

body::-webkit-scrollbar-track{
    background-color: #000;
}

body::-webkit-scrollbar{
    width:6px;
    background-color:#000;
}

body::-webkit-scrollbar-thumb{
    background-color:#5f5f5f;
    border-radius:100px;
}

.foo-menu {
    position:absolute;
}

.foo-logo img {
    width:200px;
}

.foo-logo {
    margin-top:60px;
    margin-bottom:60px;
}

.line{
    width: 100%;
    float: left;
    margin-bottom: 18px;
    text-align: center;
    display: flex;
}

section#questions h1{
    text-align:center;
    font-weight:600;
    font-size:48px;
}

section#questions h2{
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 0;
    /* padding-left: 40px; */
}

.wrapper-logo,
.wrapper-title,
.wrapper-text,
.wrapper-button{
    width:100%;
    float:left;
}

.wrapper-logo {
    text-align:left;
    /* margin-bottom:30px; */
}

.question .wrapper-logo {
    text-align:center;
    margin-bottom:5px;
}

.box-capture-lead .wrapper-logo {
    text-align:center;
    margin-bottom:5px;
}

section#start.no-box-shadow:before{
    display:none;
}

.box-item .question{
    display:none;
}

.box-item .question.on{
    display:block;
    /* margin-bottom: 60px; */
}

.box-item .box-two-col .item{
    display:none;
}

.box-item .box-two-col .item.on{
    display:block;
    margin-bottom: 0px;
}

.values-questions {
  /* display: flex; */
  /* flex-flow: row wrap; */
}
.question.radio .values-questions > div {
  flex: 1;
  background-image: linear-gradient(90deg, #3a298c, #21174e);
  border-radius: 15px;
  margin-bottom: 12px;
}

.question.radio .values-questions > div:hover{
  opacity:0.97;  
}

.values-questions input[type="radio"] {
  display: none;
  &:not(:disabled) ~
  label {
    cursor: pointer;
  }
  &:disabled ~
  label {
    color: hsla(150, 5%, 75%, 1);
  border-color: hsla(150, 5%, 75%, 1);
  box-shadow: none;
  cursor: not-allowed;
  }
}
.values-questions label {
  height: 100%;
  display: block;
  border-radius: 0px;
  padding: 1rem;
  text-align: center;
  position: relative;
  cursor:pointer;
  padding: 25px;
}
.values-questions input[type="radio"]:checked + label {
  /*
  background: #bb7e2d;
  color: hsla(215, 0%, 100%, 1);
  border-color: #bb7e2d;
  box-shadow: 0px 0px 20px hsl(34deg 61% 45% / 19%);
  */
}
.values-questions input[type="radio"] + label i{
    font-size:55px;
}

.values-questions input[type="radio"]:checked + label:after {
  color: hsla(215, 5%, 25%, 1);
  font-family: FontAwesome;
  border: 2px solid #495057;
  content: "\f00c";
  font-size: 20px;
  position: absolute;
  top: 12px;
  left: 30px;
  transform: translateX(-50%);
  height: 36px;
  width: 36px;
  line-height: 33px;
  text-align: center;
  border-radius: 0;
  background: white;
  box-shadow: 0px 2px 5px -2px hsla(0, 0%, 0%, 0.25);
}

.values-questions input[type="radio"] + label:after {
  color: hsla(215, 5%, 25%, 1);
  border: 2px solid #9c9c9c;
  content: "";
  font-size: 20px;
  position: absolute;
  top: 16px;
  left: 30px;
  transform: translateX(-50%);
  height: 29px;
  width: 29px;
  line-height: 38px;
  text-align: center;
  border-radius: 0;
  background: white;
  /* box-shadow: 0px 2px 5px -2px hsla(0, 0%, 0%, 0.25); */
  display:none;
}

.question p{
    margin-bottom:10px;
    line-height: 24px;
    font-style: italic;
    font-size: 18px;
    text-align: left;
    margin-top: 5px;
}

.question .small-text {
    margin-bottom:20px;
}

.values-questions p {
    color:#495057;
}

.values-questions h2 {
    color:#495057;
    margin-top:40px;
}

.values-questions i {
    color:#495057;
}

.values-questions input[type="radio"]:checked + label p,
.values-questions input[type="radio"]:checked + label h2,
.values-questions input[type="radio"]:checked + label i{
    color:#fff;
}

.question{
    text-align:center;
}

.question .box-item-title {
    font-weight: 700;
    margin-bottom: 0;
    font-size: 30px;
    color: #161021;
    text-align: left;
}

.question h5 {
    font-size: 30px;
    margin-bottom: 40px;
    margin-top:0;
}

section#questions {
    background: transparent;
}

.wrapper-questions{
  /* margin-bottom:40px; */
}

.wrapper-questions .item {
    width:100%;
    float:left;
    /* margin-bottom:50px; */
    /* border-bottom: 1px dashed #e0e0e0; */
    padding-bottom: 20px;
    /* text-align: left; */
}

.wrapper-questions .item:last-child {
  margin-bottom: 0;
}

.question button{
    /* width: 100%; */
    margin-top: 12px;
    box-shadow: 0 16px 22px -16px rgba(15,50,86,.32);
    background: #ff5d13;
    border: 0;
    margin-bottom: 0px;
    border-radius:100px;
    padding: 20px 60px;
    color:#fff;
    text-transform:uppercase;
    font-weight:700;
    font-size: 25px;
    cursor: pointer;
    line-height: 22px;
}

.question button p{
  margin:0;
  font-style: normal;
  font-size: 25px;
}

.question button:hover {
    box-shadow: 0 16px 22px -16px rgba(15,50,86,.32);
    background:#ff980d;
    opacity:0.95;
}

.box-item {
    margin:auto;
    width: 100%;
}

p.qtd-questions {
    margin-top:20px;
    margin-bottom: 20px;
    font-size: 20px;
    color: #808080;
    font-weight: 400;
}

img.logo {
    width: 360px;
    z-index:99999;
}

.values-questions div h2 {
    color:#fff;
    margin-top:10px
}

.values-questions label h2 {
    color: #fff;
    margin-top:10px;
}

.values-questions input{
    text-align:center;
}
    
.values-questions .image {
    min-height:100px;
    margin-bottom:20px;
}

.values-questions .image img{
    /* border-radius:100px; */
    width: auto;
    max-height: 220px;
    /* object-fit:cover; */
}

.values-questions div h2 {
    font-size:18px;
}

.values-questions {
    margin-bottom:0;
    margin-top: 30px;
}

.values-questions input[type="text"]{
    width: 45px;
    float: right;
}

.values-questions.aside > div {
    display:flex;
    align-items:center;
    vertical-align:center;
    justify-content:center;
}

.question .image a{
    width:100%;
    float:left;
}

.question .image a span{
    width:100%;
    float:left;
    color:#17a2b8;
    font-size:18px;
    margin-top:5px;
    text-decoration:underline;
    margin-bottom:10px;
}

.question .image a i{
    color:#17a2b8;
}

div#modalQuestion h2,
div#modalAlert h2,
div#modalInstructions h2{
    color:#313131;
    font-size:22px;
    font-weight:700;
}

div#modalQuestion p,
div#modalAlert p,
div#modalInstructions p{
    color:#313131;
    line-height:25px;
}

div#modalQuestion button.close,
div#modalAlert button.close,
div#modalInstructions button.close {
    outline:none;
    padding:0;
    opacity:100;
    background:#dc3545;
    width:36px;
    height:36px;
    border-radius:100px;
    text-align:center;
    margin-right: -25px;
    margin-top: -25px;
}

div#modalQuestion button.close span,
div#modalAlert button.close span,
div#modalInstructions button.close span{
    color: #ffffff;
    font-size:28px;
    margin-right: -1px;
    margin-top: -10px;
    text-shadow: none;
}

div#modalQuestion .video,
div#modalAlert .video,
div#modalInstructions .video{
    width:100%;
    float:left;
    margin-bottom:10px;
}

div#modalQuestion .video iframe,
div#modalAlert .video iframe,
div#modalInstructions .video iframe{
    width:100%;
    height:260px;
}

div#modalAlert,
div#modalInstructions {
    z-index:9999999999999;
}

.box-inputs .input{
    margin-bottom:38px;
}

.question button a{
    font-size:22px;
    color:#fff;
    font-weight: 700;
}

button#sendFreeClasses a,
button#sendLead a{
    font-size: 22px;
}

section#result .box-center{
    text-align:center;
}

section#result h1{
    font-weight:700;
    font-size:40px;
    margin-bottom:30px;
    color: #000;
}

.box-resultado-medidas {
    background:#fff;
    border-radius:30px;
    text-align:center;
    padding: 80px;
    max-width: 930px;
    margin: auto;
}

.box-resultado-medidas img{
    width:600px;
}

section#result .box-center h2{
    margin-bottom:15px;
    font-size:30px;
    color: #495057;
    font-weight:600;
}

.wrapper-points {
    margin-bottom: 30px;
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 20px;
}

section#result .box-center p,
section#result .box-center p b{
    color: #495057;
    font-size:20px;
    line-height:30px;
}

.area-result {
    margin-bottom: 50px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    width: 80%;
    margin-left: 10%;
}

.box-resultado-medidas.mesa,
.box-resultado-medidas.speed {
    padding: 80px 0px;
}

.box-resultado-medidas.mesa .drag-mobile img{
    width:550px;
}


.box-resultado-medidas.speed .drag-mobile img{
    width:850px;
}

section#result button{
    background-image: linear-gradient(90deg, #3a298c, #21174e);
    width: 100%;
    border-radius: 4px;
    margin-top:70px;
    margin-bottom:70px;
}

section#result button p{
    color:#fff;
    font-weight:600;
    font-size: 22px;
    margin:0;
    padding: 17px;
}

section#result button:hover {
    
}

section#result button a{
    font-size:22px;
}

div#modalAlert {
    text-align:center;
}

div#modalAlert h2{
    text-align:center;
    width:100%;
}

div#modalAlert p{
    font-size:20px;
}

div#modalAlert button.close, div#modalInstructions button.close {
    margin-top: -18px;
}

.drag-mobile h3{
    color:#333;
}

.drag-mobile p{
    color:#333;
}

.drag-mobile {
    position:relative;
}

.icon-result h3{
    font-size: 16px;
    margin:0;
    font-weight:600;
    color:#fff;
    margin-bottom:-5px;
}

.icon-result p{
    font-size:16px;
    margin:0;
    height:20px;
    color:#fff;
}

.icon-result{
    position:absolute;
    border-radius:8px;
    z-index:99999999999999999;
}

.wrapper-img img{
    width:180px;
    margin-bottom:30px;
}

section#result .wrapper-logo {
    text-align:center;
}

button.bt-start-quiz,
button.bt-form-free-classes{
    background:#00bf80;
    box-shadow:none;
    padding: 0;
    padding-left:40px;
    padding-right:40px;
    padding-top:10px;
    padding-bottom:10px;
    line-height: 20px;
    width:100%;
    flaot:left;
    min-height:50px;
    margin-bottom:0px;
    margin-top:20px;
}

button.bt-start-quiz{
    background:#fb9f00;
}

button.bt-form-free-classes a,
button.bt-start-quiz a{
    font-size:18px;
}

button.bt-start-quiz:hover,
button.bt-form-free-classes:hover{
    transform:scale(1);
    opacity:0.8;
}

button#sendFreeClasses {
    margin-bottom: 100px;
}

/*
select#level  {
    color: #a2a2a2;
}
*/

select#level.on  {
    color: #333;
}

.row.wrapper-form label{
    color:#333;
    font-size:20px;
}

.row.wrapper-form label a{
    color:#004085;    
}

.row.wrapper-form th{
    color:#333;
    font-size:15px;
    padding-right:10px;
    padding-left:10px;
}

.row.wrapper-form td{
    color:#333;
    text-align:center;
    padding-top:5px;
    padding-bottom:5px;
}

.row.wrapper-form td:nth-child(1){
    text-align:left;
}

.wrapper-form.free-classes .form-control, 
.wrapper-form.free-classes .form-control:focus{
    font-size:20px;
    margin-bottom:5px;
}

.form-group p{
    font-size:16px !important;
    color:#333;
}

button img {
    width:30px;
    margin-right:10px;
    margin-top:-4px;
}

section#result .wrapper-offer p.small {
    font-size:16px;
    line-height:25px;
}

.box-resultado a{
    color:#2793e6;
    text-decoration:underline;
}

.pulse {
    animation: pulse 0.7s infinite;
    display: table;
    animation-direction: alternate;
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

#questions .wrapper-title h2 {
    text-align:center;
    margin-bottom: 35px;
    font-family:'Poppins', sans-serif;
    font-size:48px;
    color: #333;
}

.box-item-title {
    font-weight:700;
    margin-bottom: 22px;
    font-size: 32px;
    color: #161021;
}

.question.radio .box-item-title {
    margin-bottom: 22px;
    font-size: 28px;
}

.infos p {
    font-size:14px;
    font-weight:300;
    color:#161021;
    margin-bottom:20px;
}

.infos {
    margin-top:40px;
}

.wrapper-questions .form-row {
    width:80%;
    margin-left:10%;
}

.infos p {
    font-size:14px;
    font-weight:300;
    color:#161021;
    margin-bottom:20px;
}

.infos {
    margin-top:40px;
}

.wrapper-questions .form-row {
    width: 100%;
    margin-left: 0;
}

.option h4 {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 20px;
    color: #161021;
}

.text-field,
textarea{
    border-radius: 8px;
    height:55px;
    width: 80% !important;
    font-size: 18px;
    font-weight:400;
    text-align:left !important;
    padding-left: 10px;
    border: 2px solid #000;
}

textarea{
  padding-top:10px;
  height:120px;
  width:100% !important;
}

.select-field{
    background-image: linear-gradient(90deg, #3a298c, #21174e);
    border-radius: 8px;
    height:55px;
    color:#fff;
    font-size: 28px;
    font-weight:400;
    text-align:left !important;
    padding-left:15px;
    padding-left:15px;
    margin-right:8px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #000;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #000;
}

.wrapper-image img{
  width:250px;
  margin-top:32px;
}

.question.load.on {
    margin-bottom:120px;
    width:100%;
    float:left;
}

#result .container {
    max-width:800px;
}

#result .box-item{
    width:100%;
    margin-left:0;
}

#result .wrapper-title h2 {
    text-align: center;
    margin-bottom: 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    color: #333;
}

.wrapper-resultado h3 {
    font-weight: 700;
    margin-bottom: 22px;
    font-size: 32px;
    color: #161021;
    text-align:center;  
}

.wrapper-resultado p{
    color: #161021;
    font-size:18px;
    margin-bottom:20px;
}

.wrapper-resultado .wrapper-image img {
    width:100%;
    margin-top: -10px;
}

input[type="checkbox"]:checked + label:after {
  color: hsla(215, 5%, 25%, 1);
  font-family: FontAwesome;
  border: 2px solid #212529;
  content: "\f00c";
  font-size: 18px;
  position: absolute;
  top: 2px;
  left: -25px;
  transform: translateX(-50%);
  height: 25px;
  width: 25px;
  line-height: 22px;
  text-align: center;
  border-radius: 0;
  background: white;
  /* box-shadow: 0px 2px 5px -2px hsla(0, 0%, 0%, 0.25); */
}

input[type="checkbox"] + label:after {
  color: hsla(215, 5%, 25%, 1);
  border: 2px solid #212529;
  content: "";
  font-size: 20px;
  position: absolute;
  top: 2px;
  left: -25px;
  transform: translateX(-50%);
  height: 25px;
  width: 25px;
  line-height: 38px;
  text-align: center;
  border-radius: 0;
  background: white;
  /* box-shadow: 0px 2px 5px -2px hsla(0, 0%, 0%, 0.25); */
  display:block;
}

.receber-emails input[type="checkbox"] + label:after{
    left: 0;
    height: 18px;
    width: 18px;
    font-size: 13px;
    line-height: 15px;
}

.area{
    margin: 10px auto;
    box-sizing: border-box;
    margin-top: 20px;
}

.area video{
    width: 100%;
    max-height: 300px;
    height: 300px;
    object-fit: cover;
}

.area textarea{
    width: 100%;
    margin-top: 10px;
    height: 80px;
    box-sizing: border-box;
    display: none;
}

.area button{
    -webkit-appearance: none;
    width: 60%;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    color: #fff;
    /* text-transform: uppercase; */
    background:#781f76;
    border-radius:8px;
    padding:15px;
    font-size: 22px;
    color: #fff;
    font-weight: 700;
}

.area button:focus{
    outline: none;
}

.area img{
    max-width: 100%;
    max-height: 300px;
    height: 300px;
    object-fit: cover;
}

.area .caminho-imagem{
    padding: 5px 10px;
    border-radius: 3px;
    background-color: #068c84;
    text-align: center;
    display: none;
}

.area .caminho-imagem a{
    color: white;
    text-decoration: none;
}

.area .caminho-imagem a:hover{
    color: yellow;
}


.area .col2{
    display:flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    border: 10px solid #781f76;
    background-color: rgba(177, 102, 176, 0.52);
}

.area .col2 .item {
    margin-bottom: -8px;
    padding-bottom: 0;
    max-height: 308px;
    min-height: 308px;
}

.area .col2 .item:nth-child(1){
    border-right: 5px solid #781f76;
}

.area .col2 .item:nth-child(2){
    border-left: 5px solid #781f76;
}

.msg-success {
    display:flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.msg-success p{
    color:#028b06;
    font-weight:600;
    font-size:20px;
    line-height:22px;
    margin-bottom: 0;
}

.msg-success img{
    width:35px;
    height:auto;
    object-fit:contain;
    margin-right:10px;
    margin-bottom:5px;
}

ul.dicas {
    list-style:none;
    padding:0;
    text-align:left;
    margin-bottom: 30px;
    width:60%;
    margin-left:20%;
}

ul.dicas li{
    margin-bottom: 15px;
    font-size:18px;
}

.wrapper-questions .form-row p.title {
    text-align:left;
    margin-top:30px;
    font-weight:600;
    font-size:20px;
    font-weight:700;
    color:#282828;
    width: 60%;
    margin-left: 20%;
}

.wrapper-questions .item .text{
    width:50%;
    float:left;
    text-align: left;
}

.wrapper-questions .item .chart{
    width:50%;
    float:left;
    padding-top: 60px;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 12px;
  border-radius: 100px;  
  background: #d3d3d3;
  outline: none;
  opacity: 0.8;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 100px; 
  background: #ff5d13;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #04AA6D;
  cursor: pointer;
}

.slidecontainer {
    display:flex;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.slidecontainer .input-text {
    width: 20%;
}

.slidecontainer .input-text input {
    height: 40px;
    border-radius:0;
    font-size: 25px;
    font-weight: 600;
    border: 1px solid #adb5bd;
    /* padding: 20px; */
}

.slidecontainer .input-field {
    width:80%;
}

.values-questions .option {
    margin-bottom:30px;
    border-bottom:1px solid #dee2e654;
    padding-bottom:20px;
    text-align: left;
}

.values-questions .option:last-child{
  border-bottom:0;
}

.box-two-col {
    display:flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    padding: 20px;
}

.box-two-col .wrapper-questions {
    width: 40%;
    overflow: hidden;
}

.box-two-col .wrapper-chart {
    width:60%;
}

.box-chart {
    margin-top:40px;
}

.item.alavanca .video {
    text-align:left;
    margin-top:20px;
    margin-bottom:20px;
}

.item.alavanca .video iframe{
  width:100%;
}

select#alavanca {
    width:95%;
    height:60px;
    margin-bottom:20px;
    font-size: 20px;
    float:left;
    border-radius: 8px;
    padding-left: 10px;
}

.item.alavanca .msg p {
    font-size:20px;
}

.item.acao p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 24px;
}

.item.acao input#data1,
.item.acao input#data2,
.item.acao input#data3{
    margin-left:10px;
    width: 250px !important;
}

.item.acao .action-item {
    margin-bottom: 50px;
    width:100%;
    float:left;
}

.item.acao .action-item:last-child{
    margin-bottom:0;
}

.item.captura .wrapper-questions .text-info {
    width:50%;
    float:left;
}

.item.captura .wrapper-questions .form-row {
    width:50%;
    float:left;
}

.item.captura .text-info {
    /* width:50%; */
    /* float:left; */
}

.item.captura .form-row {
    width:60%;
    float:left;
    margin-left:20%;
    text-align: center;
}

.item.captura .form-row .text-field{
    width: 100% !important;
}

.item.captura button{
    width: 100% !important;
    margin-top:0px;
}

.question .item.captura .box-item-title{
    margin-bottom:20px;
    text-align: center;
}

.item.captura .text-info p {
    color:#000;
    font-style:normal;
    padding-right:30px;
    line-height:26px;
    margin-bottom:25px;
    text-align: center;
  width:80%;
  margin-left:10%;
}

.item.load {
    text-align:center;
}

.item.load .box-item-title{
    text-align:center;
    margin-bottom:20px;
    font-size:44px;
}

.item.load h4.box-item-title {
    font-size:26px;
    font-weight:500;
}

.item.parabens {
    text-align:center;
}

.item.parabens .box-item-title{
    text-align:center;
    margin-bottom:20px;
    font-size:44px;
}

.item.parabens h4.box-item-title {
    font-size:26px;
    font-weight:500;
}

.box-cta-final {
    text-align:center;
    margin-top:70px;
}

.box-cta-final p{
    text-align:center;
    font-size:26px;
    margin-top:20px;
    margin-bottom:20px;
}

.item.parabens i {
    font-size:100px;
    margin-bottom:20px;
    color:#5fc290;
}

.item.acao.on h3.box-item-title {
    margin-bottom:15px;
}

.item.acao.on h4{
    font-size: 25px;
    font-weight:700;
    text-align:left;
    margin-bottom:20px;
}

.item.acao.on h4 span{
    font-weight:500;
}

@media only screen and (max-width: 768px){
    #questions .wrapper-title h2,
    #result .wrapper-title h2{
        font-size:35px;
    }

    .box-item-title,
    .wrapper-resultado h3{
        font-size:25px !important;
    }

    .text-field{
        width:100% !important;
        margin-left:0 !important;
        font-size:20px;
    }

    .wrapper-questions .form-row{
        width:100% !important;
        margin-left:0 !important;
    }

    .box-item{
        width:100% !important;
        margin-left:0 !important;
    }

    .select-field{
        font-size:20px;
    }

    .sabe-hora-nascimento p{
        font-size:18px !important;
        padding-left:20px;
        line-height:20px;
        text-align:left;
        
    }

    input[type="checkbox"] + label:after{
        left:0;
    }

    .select-field{
        width:100%;
    }

    #questions .foto-palma .botoes {
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    #questions .foto-palma .botoes button{
        width:100%;
        margin-bottom:5px;
    }

    .receber-emails p{
        padding-left:20px;
        text-align:left;
    }

    .wrapper-resultado p{
        text-align:center;
    }

    .cupom .box{
        width:70%;
    }

    section#result button{
        margin-top:30px;
    }

    section#result button p{
        line-height:28px;
    }

    .selecionar-data-aniversario .select-field {
        width:auto;
    }

    input[type="checkbox"]:checked + label:after{
        left:0;
    }

    section#result button{
        width:90%;
        margin-left:5%;
        border-radius:8px;
    }

    .area button{
        width: 100%;
        line-height: 24px;
        font-size: 20px;
    }
    
    .wrapper-questions .form-row p.title,
    ul.dicas{
        width:100%;
        margin-left:0;
        font-size: 16px;
        margin-top: 25px;
    }

    ul.dicas{
      margin-top:0;
    }
    
    .question button p{
        font-size: 16px;
        line-height: 18px;
        text-align:center;
    }
    
    section#questions h2{
        line-height: 23px;
    }
    
    ul.dicas li{
        line-height:24px;
        font-size: 16px;
    }
    
    .box-two-col .wrapper-questions{
        width:100%;
        float: left;
        margin-bottom: 30px;
    }
    
    .box-two-col .wrapper-chart{
        width:100%;
        float: left;
        margin-bottom: 30px;
    }
    
    .option h4{
        font-size: 15px;
    }
    
    .question p{
        font-size: 14px;
        line-height:20px;
        margin-top: 10px;
        text-align: center;
    }
    
    .question .box-item-title{
        font-size: 18px !important;
    }
    
    .slidecontainer .input-text input{
        font-size: 20px;
        height: 35px;
        width: 40px;
    }
    
    .box-two-col{
        flex-direction: column-reverse;
        padding: 0;
    }
    
    .question button,
    .question button a{
        font-size: 16px !important;
        line-height: 20px;
        padding: 16px;
        margin-top: 0;
        width: 100%;
    }
    
    .question button a{
        padding:0;    
    }
    
    .item.alavanca.on,
    .question .box-item-title,
    .item.alavanca .msg p{
        text-align:center;
    }
    
    .video iframe {
        width:100%;
        height:auto;
    }
    
    .item.alavanca .msg p{
        font-size:16px;
    }
    
    select#alavanca{
        font-size:18px;
        height: 45px;
    }
    
    .item.acao.on h4{
        font-size:20px;
        text-align:center;
    }
    
    .item.acao p{
        font-size:16px;
        text-align:center;
    }
    
    .line{
        display:block;
        margin-bottom: 0;
    }
    
    .text-field{
        margin-bottom:20px;
    }
    
    input[type="text"],
    input[type="date"],
    textarea{
        font-size: 14px;
        height: 45px;
        margin-bottom: 15px;
    }

    textarea{
        height:100px;
    }
    
    .item.captura .text-info p{
        padding:0;
        margin:0;
        width:100%;
        font-size:16px;
        line-height:22px;
        margin-bottom:20px;
    }
    
    .item.load h4.box-item-title{
        font-size:18px !important;
    }
  
    .values-questions .option {
      margin-bottom: 20px;
      padding-bottom: 5px;
    }

    .item.acao .action-item{
      margin-bottom:40px;
    }

    .values-questions .option:last-child{
        margin-bottom:5px;
    }
}

