@charset "UTF-8";
/*!
    Theme Name: Formulario
    Theme URI: pending
    Description: Tema de dip
    Version: 1.0.0
    Author: Guillermo Juárez
    Author URI: pending
    Tags: Gulp

    License: MIT
    License URI: http://opensource.org/licenses/mit-license.php
*/
@import url("https://fonts.googleapis.com/css?family=Montserrat|Itim");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*max width of the document*/
/*width of the containers on mobile*/
/* Base */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  margin: 0;
}

* {
  outline-color: #008DC2;
}

table {
  border-collapse: unset;
}

/* ========================== */
/*         LAYOUT             */
/* ========================== */
.l-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block: 1rem;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .l-container {
    margin-block: 4rem;
  }
}

.l-mensaje {
  width: 90%;
  max-width: 60em;
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  line-height: 1.5em;
}
.l-mensaje h4 {
  font-size: 1.3em;
  line-height: 1.3em;
  text-transform: uppercase;
}

.l-resultados {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

/* ========================== */
/*         STATE              */
/* ========================== */
.m-form {
  width: 90%;
  padding: 2em;
  background-color: white;
  border-radius: 8px;
}
@media only screen and (min-width: 1024px) {
  .m-form {
    width: 45em;
  }
}

.m-form-step {
  flex-direction: column;
  display: none;
}
.m-form-step.is-active {
  display: flex;
}

.m-area-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #d0d0d0;
  text-transform: uppercase;
}

.m-question-title {
  font-size: 22px;
  margin-bottom: 25px;
  line-height: 1.3em;
}

.m-answers {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.m-answers label {
  line-height: 1.2em;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.m-btns {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.m-flex-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.m-logo {
  width: 45%;
  height: auto;
  max-width: 200px;
  max-height: 7rem;
  object-fit: contain;
  margin-bottom: 4rem;
}
@media only screen and (min-width: 1024px) {
  .m-logo {
    margin-bottom: 3rem;
    max-width: 400px;
    width: 15em;
  }
}

.m-welcome {
  margin-bottom: 2.4em;
  width: 80%;
  line-height: 1.4em;
  font-size: 1em;
}
@media only screen and (min-width: 1024px) {
  .m-welcome {
    font-size: 1.3em;
  }
}

.btn {
  height: fit-content;
  padding: 10px 30px;
  border: 1px solid gray;
  border-radius: 5px;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .btn {
    width: fit-content;
    min-width: 10em;
  }
}
.btn--yellow {
  text-decoration: none;
  color: #242424;
  background-color: #FF9E0F;
}

.btn-return {
  cursor: pointer;
  text-decoration: none;
  color: white;
  background-color: #008DC2;
}
.btn-return:hover {
  background-color: #116fc7;
}

.btn-next {
  background-color: #d7d7d7;
  color: rgb(166, 166, 166);
  cursor: pointer;
  outline-color: #FF9E0F;
}
.btn-next.active {
  background-color: #008DC2;
  color: white;
  border-color: #008DC2;
}

.btn-prev {
  cursor: pointer;
  background-color: #595c5c;
  color: white;
  border-color: #595c5c;
}

.btn-finally {
  background-color: #d7d7d7;
  color: rgb(166, 166, 166);
  cursor: pointer;
}
.btn-finally.active {
  background-color: #FF9E0F;
  color: #242424;
  border-color: #FF9E0F;
}

.btn-submit {
  background-color: #FF9E0F;
  pointer-events: all;
  border-color: #FF9E0F;
  color: #242424;
  cursor: pointer;
}

.m-email {
  display: none;
  flex-direction: column;
  gap: 20px;
}
.m-email legend {
  color: #242424;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1.6rem;
  line-height: 1.2em;
}
.m-email.is-active {
  display: flex;
}
.m-email input {
  padding: 10px;
  border-radius: 4px;
  background-color: #F4F4F4;
  border: 2px solid #E4E4E4;
}
.m-email input::placeholder {
  color: #c0c0c0;
}

.m-ponderacion {
  display: flex;
  line-height: 1.2em;
}
.m-ponderacion p {
  margin-left: 15px;
}

.m-resultado {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  margin-top: 2rem;
}

.m-resultado-final {
  padding: 20px;
  margin-top: 10px;
}
.m-resultado-final p {
  line-height: 1.3em;
  font-size: 1.2rem;
}

.m-resultados-title {
  font-size: 1.4em;
  font-weight: bold;
  text-transform: uppercase;
  margin-left: 0.7em;
  margin-top: 2em;
}

.progress-container {
  position: relative;
  width: 90%;
  height: 4px;
  background-color: #d7d7d7;
  border-radius: 4px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1024px) {
  .progress-container {
    width: 100%;
  }
}

.m-precentajes {
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-20px);
  font-size: 15px;
  color: #595c5c;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #008DC2; /* $green-1 */
  transition: width 0.3s ease-in-out;
}

.container-result {
  width: 80%;
}

.prueba {
  width: 50em;
  border: 1px solid red;
}

.m-container-inicio {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.my-2 {
  margin-block: 1.4rem;
}