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

* {
  font-family: 'Nunito';
  box-sizing: border-box;
  font-weight: 700;
}

html, body {
  height: 100%;
  padding: 0;
  margin: 0;
  color: white;
  line-height: 130%;
  transition: all 300ms ease-out;
}

.main {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 30px;
}

.container {
  width: 100%;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px 0 24px;
  flex: 1;
}

.brand {
  background-image: url(../images/new-logo.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 150px;
  min-height: 59px;
  margin-bottom: 20px;
}

.brand.big {
  width: 144px;
  height: 144px;
}

.axis {
  width: 100%;
  height: 30px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
}

.axis .name {
  display: flex;
  flex-direction: column;
}

.axis .percent {
  position: absolute;
  top: 5px;
  right: 10px;
}

.axis .name1 {
  font-size: 15px;
  color: white !important;
  font-weight: 700;
  margin-bottom: 4px;
  position: absolute;
  top: 5px;
  left: 10px;
  white-space: nowrap;
}

.axis .name2 {
  z-index: 999;
  top: 5px;
  left: 10px;
  filter: none;
  position: relative;
  overflow:hidden;
  height: 20px;
  white-space: nowrap;
}

.axis .progress {
  width: 100%;
  height: 30px;
  background-color: rgba(255,255,255, .1);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255, .3);
}

.axis .progress .progress-bar {
  background-color: white;
  height: 100%;
  transition: all 300ms ease-out;
  border-radius: 20px;
  overflow: hidden;
}

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

.item {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
}

.item .statement {
  font-size: 18px;
  margin-bottom: 14px;
  font-weight: 600;
  color: white;
  text-align: center;
}

input[type=text] {
  padding: 9px 20px 10px;
  border-radius: 50px;
  border: 1px solid #E0E0E0;
  font-size: 24px;
  color: #020A26;
  text-align: center;
  width: 100%;
}

input[type=text]::placeholder {
  color: #BDBDBD;
}

input:disabled {
  cursor: default;
  background-color: rgba(255,255,255,1);
}

input:focus, input:active {
  outline: 5px solid rgba(255,255,255,.2);
  border-radius: 50px;
}

input[type=radio]:focus, 
input[type=radio]:active, 
input[type=checkbox]:focus,
input[type=checkbox]:active {
  outline: 0;
}

input[type=radio] {
  width: 22px;
  min-width: 22px;
  height: 22px;
  margin-top: 0;
  margin-right: 8px;
  border: 2px solid rgba(255,255,255,.5);
  -webkit-appearance:none;
  border-radius: 50%;
  pointer-events: none;
}

input[type=radio]:checked {
  background: white;
}

input[type=checkbox] {
  width: 22px;
  min-width: 22px;
  height: 22px;
  margin-top: 0;
  margin-right: 8px;
  border: 2px solid #E0E0E0;
  -webkit-appearance:none;
  border-radius: 4px;
  pointer-events: none;
  margin-bottom: 0;
}

input[type=checkbox]:checked {
  background: white;
  border: 0;
}

.buttons {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn, .next-btn {
  background: #018EF8;
  border-radius: 8px;
  height: 60px;
  border: 0;
  font-weight: 700;
  font-size: 23px;
  color: white;
  width: 100%;
  cursor: pointer;
}

.btn, .next-btn.disabled {
  opacity: .5;
}

.error-cupom {
  color: #B7312C;
  font-size: 14px;
  width: 100%;
  text-align: center;
  margin-top: 4px;
  display: none;
}

.next-btn:focus, .next-btn:active {
  outline: none;
}

.previous-btn {
  color: #4F4F4F;
  font-size: 16px;
  margin-top: 16px;
  padding-bottom: 1px;
  border-bottom: 1px solid #4f4f4f;
  text-decoration: none;
  transition: all 200ms ease-out;
}

.previous-btn:hover {
  border-color: transparent;
}

.press-enter {
  font-size: 14px;
  margin-top: 6px;
  color: #828282;
}

.question .option {
  border-radius: 10px;
  display: flex;
  justify-content: start;
  border: 2px solid rgba(255,255,255,.10);
  margin-bottom: 6px;
  align-items: center;
  padding: 6px 8px;
  color: rgba(255,255,255,1);
  font-size: 14px;
  cursor: pointer;
  position: relative;
  line-height: 110%;
  min-height: 40px;
}

.question .option:hover {
  outline: 2px solid white;
}

.question .option:last-child {
  margin-bottom: 0;
}

.question .option label {
  cursor: pointer;
  pointer-events: none;
  font-weight: 500;
  margin-top: 2px;
}

.question .option .points-btn {
  width: 20px;
  height: 20px;
  background-color: #F3F3F3;
  position: absolute;
  right: 14px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  display: none;
}

.main.show .question .option .points-btn {
  display: flex;
}

.question .option .points-btn .points-content {
  display: none;
  position: absolute;
  background-color: white;
  padding: 6px 8px;
  border-radius: 2px;
  border: 1px solid #CCC;
  z-index: 9999;
  left: 30px;
}

.question .option .points-btn:hover .points-content {
  display: block;
}

.question .option .points-btn .points-content .points-green {
  color: #6FCF97;
}

.question .option .points-btn .points-content .points-red {
  color: #EC671C;
}

.error-message {
  margin-top: 8px;
  color: #B7312C;
  text-align: center;
  width: 100%;
}

.wellness-avatar {
  width: 150px;
}

.item.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content h2 {
  font-size: 24px;
  text-align: center;
  margin-top: 0;
  font-weight: 900;
  line-height: 100%;
}

.content h2 .highlight {
  font-size: 36px;
  font-weight: 900;
  color: #FFBB00;
}

p {
  text-align: center;
  font-weight: 500;
}

p.highlight {
  font-weight: 400;
  font-size: 20px;
}

.orange {

}

.light-green {

}

.light-green-bg {
  
}

.orange-bg {
  
}

.green {

  font-weight: 700;
}

.green-bg {
  background: linear-gradient(313.31deg, #53C750 0%, #CAE719 100%);
}

.blue {
  
}

.blue-bg {
  background: linear-gradient(313.31deg, #19A9E7 0%, #44F0B2 100%);
}

.welcome-video {
  width: 100%;
}

.axis-title {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 50px;
}

.axis-title .highlight {
  font-size: 36px;
  line-height: 80%;
}

.axis-description {
  text-align: center;
  margin-bottom: 70px;
}

.content-title {
  font-size: 24px;
  font-weight: 600;
  width: 100%;
}

.content-description {
  margin-bottom: 20px;
  width: 100%;
}

.console {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background-color: white;
  display: none;
}

.main.show .console {
  display: block;
}

.console table {
  width: 100%;
  border: 1px solid black;
  border-collapse: collapse;
  font-size: 10px;
}

.console th, td {
  text-align: center;
  border: 1px solid black;
  width: 1%;
  height: 24px;
}

.final-message {
  display: none;
}

.final-message .thanks-title {
  font-size: 44px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 0;
}

.final-message p {
  font-weight: 400;
  color: white;
}

.final-message .btn {
  margin-top: 20px;
  background-color: #020A26;
}