*, *:after, *:before {
  box-sizing: border-box;
}

.clearfix:before, .clearfix:after {
  content: '';
  display: table;
}

.clearfix:after {
  clear: both;
}

.codrops-header {
  margin: 0 auto;
  padding: 3em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.35);
}

.codrops-header h1 {
  margin: 0;
  font-size: 2.5em;
}

.codrops-header h1 span {
  display: block;
  padding: 0 0 0.6em 0.1em;
  font-size: 0.6em;
  opacity: 0.7;
}

/* To Navigation Style */
.codrops-top {
  width: 100%;
  font-size: 0.69em;
  line-height: 2.2;
}

.codrops-top a {
  display: inline-block;
  padding: 0 1em;
  text-decoration: none;
  letter-spacing: 1px;
}

.codrops-top span.right {
  float: right;
}

.codrops-top span.right a {
  display: block;
  float: left;
}

.codrops-icon:before {
  margin: 0 4px;
  text-transform: none;
  font-style: normal;
  font-variant: normal;
  font-family: 'codropsicons';
  line-height: 1;
  speak: none;
  -webkit-font-smoothing: antialiased;
}

.codrops-icon-drop:before {
  content: "\e001";
}

.codrops-icon-prev:before {
  content: "\e004";
}

section {
  padding: 5em 2em 10em;
  background: #2dcb89;
  text-align: center;
}

section.related {
  padding: 3em 1em 4em;
  background: #465650;
  color: rgba(0, 0, 0, 0.4);
  font-size: 1.5em;
}

.related > a {
  max-width: 80%;
  border: 2px solid rgba(0, 0, 0, 0.3);
  display: inline-block;
  text-align: center;
  margin: 20px 10px;
  padding: 25px;
  -webkit-transition: color 0.3s, border-color 0.3s;
  transition: color 0.3s, border-color 0.3s;
}

.related a:hover {
  border-color: rgba(0, 0, 0, 0.6);
}

.related a img {
  max-width: 100%;
  opacity: 0.4;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.related a:hover img,
.related a:active img {
  opacity: 1;
}

.related a h3 {
  margin: 0;
  padding: 0.5em 0 0.3em;
  max-width: 300px;
  font-size: 0.75em;
  text-align: left;
}

@media screen and (max-width: 44.75em) {
  section {
    padding: 1em 2em;
  }
}

@media screen and (max-width: 25em) {
  .codrops-header {
    font-size: 0.8em;
  }
  section.related {
    font-size: 1.2em;
  }
  .codrops-icon span {
    display: none;
  }
}

.simform {
  position: relative;
  /*margin: 0 auto;*/
  padding: 1em 0;
  max-width: 860px;
  width: 100%;
  text-align: left;
  font-size: 2.5em;
  z-index: 0;
}

.note {
  padding: 5px 0 0 0;
  width: 100%;
  font-size: 16px;
  text-align: left;
  margin: 5px 0;
  position: relative;
  clear: both;
  display: block;
}

@media only screen and (max-width: 800px) {
  .note {
    font-size: 16px;
  }
}

.simform .submit {
  display: none;
}

/* Question list style */
.simform ol {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  -webkit-transition: height 0.4s;
  transition: height 0.4s;
}

.simform ol:before {
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2.35em;
}

.questions li {
  z-index: 100;
  position: relative;
  visibility: hidden;
  height: 0;
  -webkit-transition: visibility 0s 0.4s, height 0s 0.4s;
  transition: visibility 0s 0.4s, height 0s 0.4s;
}

.questions li.current,
.no-js .questions li {
  visibility: visible;
  height: auto;
  -webkit-transition: none;
  transition: none;
}

/* Labels */
.questions li > span {
  display: block;
  overflow: hidden;
}

.questions li > span label {
  display: block;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
      transform: translateY(-100%);
}

.questions li.current > span label,
.no-js .questions li > span label {
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
      transform: translateY(0);
}

.show-next .questions li.current > span label {
  -webkit-animation: moveUpFromDown 0.4s both;
  animation: moveUpFromDown 0.4s both;
}

@-webkit-keyframes moveUpFromDown {
  from {
    -webkit-transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
  }
}

@keyframes moveUpFromDown {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Input field */
.questions input {
  display: block;
  margin: 0.3em 0 0 0;
  padding: 0.5em 1em 0.5em 0.7em;
  width: calc(100%);
  border: none;
  background: white;
  color: rgba(0, 0, 0, 0.8);
  font-size: 1em;
  line-height: 1;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border-radius: 0;
  min-height: 80px;
}

.questions .current input,
.no-js .questions input {
  opacity: 1;
}

.questions input:focus,
.simform button:focus {
  outline: none;
}

/* Next question button */
.next {
  margin-top: 30px;
  /*	position: absolute;
      right: 0;
      bottom: 2.15em; !* padding-bottom of form plus progress bar height *!
      display: block;
      padding: 0;
      width: 2em;
      height: 2em;
      border: none;
      background: none;
      color: rgba(0,0,0,0.4);
      text-align: center;
      opacity: 0;
      z-index: 100;
      cursor: pointer;
      -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
      transition: transform 0.3s, opacity 0.3s;
      -webkit-transform: translateX(-20%);
      transform: translateX(-20%);
      pointer-events: none;
      -webkit-tap-highlight-color: rgba(0, 0, 0, 0);*/
}

.next:hover {
  /*color: rgba(0,0,0,0.5);*/
}

.next::after {
  /*	position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      content: "\e600";
      text-transform: none;
      font-weight: normal;
      font-style: normal;
      font-variant: normal;
      font-family: 'icomoon';
      line-height: 2;
      speak: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;*/
}

.next.show {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
      transform: translateX(0);
  pointer-events: auto;
}

/* Progress bar */
.simform .progress {
  width: 0%;
  height: 6px;
  background: rgba(235, 64, 67, 0.8);
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
  left: 0;
  position: absolute;
  margin-top: -6px;
}

.simform .progress::before {
  position: absolute;
  top: auto;
  width: 100%;
  height: inherit;
  background: rgba(0, 0, 0, 0.05);
  content: '';
}

/* Number indicator */
.simform .number {
  position: absolute;
  right: 0;
  overflow: hidden;
  margin: 0.4em 0;
  width: 3em;
  font-size: 0.4em;
}

.simform .number:after {
  position: absolute;
  left: 50%;
  content: '/';
  opacity: 0.4;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}

.simform .number span {
  float: right;
  width: 40%;
  text-align: center;
}

.simform .number .number-current {
  float: left;
}

.simform .number-next {
  position: absolute;
  left: 0;
}

.simform.show-next .number-current {
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
      transform: translateY(-100%);
}

.simform.show-next .number-next {
  -webkit-animation: moveUpFromDown 0.4s both;
  animation: moveUpFromDown 0.4s both;
}

/* Error and final message */
.simform .error-message,
.simform .final-message {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.simform .final-message {
  text-align: left;
  margin: 2rem 0;
  top: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .simform .final-message {
    text-align: center;
    margin: 0;
    top: 0;
    font-size: 30px;
    padding: 0 25px;
    position: relative;
    display: block;
  }
}

.dotstyle-drawcircle {
  text-align: right;
  margin-top: 0;
  height: auto;
  position: absolute;
  bottom: -5px;
  right: 0;
}

.dotstyle-drawcircle li {
  width: 10px;
  height: 10px;
  margin: 0 2px;
  background: white;
  list-style: none;
  border-radius: 50rem;
  display: inline-block;
}

.dotstyle-drawcircle li.active {
  background: #eb4043;
}

#completeButtons {
  display: none;
  background: transparent;
  padding: 25px;
}

#completeButtons a {
  color: white;
  border-color: white;
}

#completeButtons a:hover {
  color: #EB4043 !important;
  border-color: #EB4043;
}

.simform .error-message {
  font-size: 16px;
  padding: 15px 0 0 0;
  display: block;
  width: 100%;
  text-align: left;
  margin: 5px 0;
  position: relative;
  clear: both;
}

@media only screen and (max-width: 800px) {
  .simform .error-message {
    font-size: 16px;
  }
}

.final-message {
  top: 50%;
  left: 0;
  padding: 0.5em;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}

.error-message.show,
.final-message.show {
  visibility: visible;
  opacity: 1;
  position: relative;
}

.final-message.show {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

/* Final hiding of form / showing message */
.simform-inner.hide {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s, visibility 0s 0.3s;
  transition: opacity 0.3s, visibility 0s 0.3s;
  display: none;
}

/* No JS Fallback */
.no-js .simform {
  font-size: 1.75em;
}

.no-js .questions li {
  padding: 0 0 2em;
}

.no-js .simform .submit {
  display: block;
  float: right;
  padding: 10px 20px;
  border: none;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.4);
}

.no-js .simform .controls {
  display: none;
}

/* Remove IE clear cross */
input[type=text]::-ms-clear {
  display: none;
}

/* Adjust form for smaller screens */
@media screen and (max-width: 44.75em) {
  .simform {
    font-size: 1.8em;
  }
}

@media screen and (max-width: 33.5625em) {
  .simform {
    font-size: 1.2em;
  }
}
