/*AUXILIARES*/
.u-space {
  height: 30px;
}
.w-100 {
  width: 100%;
}
/*DIV GERAL*/
.o-conteudo {
  height: 100vh;
}
.o-conteudo > * {
  box-sizing: border-box;
}
.o-container-center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
/*LISTA DAS ETAPAS*/
.o-steps {
  height: calc(100vh - 100px);
}
.o-steps ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.o-steps > ul {
  position: relative;
  height: 100%;
}
/*ETAPA ATIVA E DESATIVADA*/
.o-step {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  z-index: -1;
  padding: 3%;
  background: #FFF;
}
.o-step.is-active {
  z-index: 1;
}
.o-step.is-active .o-step-content {
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  animation: cd-right-to-center 0.5s 0.2s backwards;
  -webkit-animation: cd-right-to-center 0.5s 0.2s backwards;
}
.o-step.move-left .o-step-content {
  /* this is the animation of a section moving left - selection already made */
  -webkit-animation: cd-center-to-left 0.5s 0s backwards;
  animation: cd-center-to-left 0.5s 0s backwards;
}
.o-step.go-back .o-step-content {
  /* this is the animation of the selected step - moving down*/
  -webkit-animation: cd-left-to-center 0.5s 0.2s backwards;
  animation: cd-left-to-center 0.5s 0.2s backwards;
}
/*ÃREA DO CONTEUDO*/
.o-step-content {
  position: relative;
  min-width: 300px;
  width: 50vw;
  max-height: 100%;
  min-height: 400px;
  overflow-y: auto;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  /* this is the animation of a section moving right (go back to a prev step) - selection already made */
  -webkit-animation: cd-center-to-right 0.5s 0s backwards;
  animation: cd-center-to-right 0.5s 0s backwards;
}
/*CABEÃALHO DO CONTEÃDO*/
.o-step-header {
  height: 21%;
}
/*CONTEÃDO*/
.o-step-conteudo {
  padding: 30px 30px 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 79%;
  overflow-y: auto;
}
.o-resposta-step {
  width: 100%;
}
/*NAVEGAÃÃO FOOTER*/
.o-step-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0;
  height: 7vh;
  min-width: 85px;
  z-index: 999;
}
.o-steps-nav {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  height: 100%;
  align-items: center;
}
.o-steps-nav .is-prev.o-nav-item {
  background-color: #CCC;
}
.o-steps-nav .o-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 50%;
  border: 0;
  background-color: #6CBD75;
  font-size: 2em;
  overflow: hidden;
}
.o-steps-nav .o-nav-item.is-first {
  width: 100%;
}
.o-steps-nav .o-nav-item.is-first:first-of-type {
  width: 0px;
  padding: 0px;
}
.o-steps-nav .o-nav-item.is-last {
  width: 100%;
}
.o-steps-nav .o-nav-item.is-last:last-of-type {
  width: 0px;
  padding: 0px;
}
/*keyframes*/
@-webkit-keyframes cd-right-to-center {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes cd-right-to-center {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes cd-left-to-center {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes cd-left-to-center {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes cd-center-to-left {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
}
@keyframes cd-center-to-left {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
}
@-webkit-keyframes cd-center-to-right {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes cd-center-to-right {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@-webkit-keyframes cd-bounce {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
  }
  60% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
@keyframes cd-bounce {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
  }
  60% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
.o-popup-overlay {
  /*Hides pop-up when there is no "active" class*/
  visibility: hidden;
  position: absolute;
  background: transparent;
  bottom: 0;
  right: 0;
  z-index: 998;
}
.o-popup-overlay p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  height: 40px;
  border-radius: 100%;
  line-height: 1em;
  width: 40px;
}
.o-popup-overlay.is-active {
  /*displays pop-up when "active" class is present*/
  visibility: visible;
  text-align: center;
  bottom: 10vh;
}
.o-popup-content {
  /*Hides pop-up content when there is no "active" class */
  visibility: hidden;
}
.o-popup-content.is-active {
  /*Shows pop-up content when "active" class is present */
  visibility: visible;
}
/*RESPONSIVE*/
@media only screen and (max-width: 768px) {
  .c-lab .container {
    padding: 0;
  }
  .o-steps {
    height: calc(100vh - 10vh);
  }
  .o-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 12%;
  }
  .o-step-header h1 {
    font-size: 1.2em;
    margin: 0;
  }
  .o-step-indicator {
    font-size: 0.85em;
  }
  .o-step-content {
    min-width: unset;
    width: 100%;
    height: 100%;
  }
  .o-step-conteudo {
    padding: 15px;
    height: 88%;
  }
  .o-step-conteudo .u-space {
    height: 15px;
  }
  .o-texto-step h2 {
    font-size: 1.4em;
  }
  .o-container-center {
    display: block;
    padding: 0 15px;
  }
  .o-steps-nav .o-nav-item {
    font-size: 1.5em;
  }
}
