html, body {
  height: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #0d0d0d;
  color: #fff;
}

img {
  max-width: 100%;
}

.hidediv {
  display: none;
}

.vertical-align {
  display: flex;
  align-items: center;
}

.h1, h1 {
  font-size: 28px;
}

.full-H {
  height: 100%;
}

header {
  background: #0d0d0d;
  padding: 5px;
  text-align: center;
  height: 8%;
}

header img {
  max-height: 100%;
}

header object {
  max-height: 100%;
}

.main-container {
  max-width: 480px;
  margin: 0 auto;
  height: 89%;
  overflow: hidden;
}

.footer{
  height: 3%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #0d0d0d;
  color: #6f6f6f;
 }

.steps-container {
  padding: 0 10px;
  position: relative;
}

.step-title {
  margin: 35px 0;
}

.step-option {
  cursor: pointer;
  background: #000;
  border: 1px solid #616161;
  border-radius: 8px;
  padding: 10px 5px;
  margin: 10px 0;
  color: #616161;
  -webkit-transition: background 100ms linear;
  -moz-transition: background 100ms linear;
  -o-transition: background 100ms linear;
  -ms-transition: background 100ms linear;
  transition: background 100ms linear;
}

.step-option.active {
  background: var(--mainColor);
  border: 1px solid var(--mainColor);
  color: #fff;
}

.message {
  display: inline-block;
  margin: 30px 0;
  color: #616161;
}

.step-button h1 {
  margin: 0;
}

.step-button button {
  background: #616161;
  border: none;
  color: #000;
  padding: 13px 0;
  margin-bottom: 30px;
  width: 100%;
  max-width: 260px;
  border-radius: 30px;
  outline: none !important;
  -webkit-transition: background 100ms linear;
  -moz-transition: background 100ms linear;
  -o-transition: background 100ms linear;
  -ms-transition: background 100ms linear;
  transition: background 100ms linear;
}

.step-button button.active {
  background: var(--mainColor);
  color: #fff;
}

.step-option img {
  max-height: 80px;
  opacity: .4;
  -webkit-transition: opacity 200ms linear;
  -moz-transition: opacity 200ms linear;
  -o-transition: opacity 200ms linear;
  -ms-transition: opacity 200ms linear;
  transition: opacity 200ms linear;
}

.step-option.active img {
  opacity: 1;
}

.step-container {
  position: absolute;
  right: -100%;
  width: 95%;
  /*opacity: 0;*/
  z-index: -1;
  overflow: auto;
}

.step-container.slide-in {
  z-index: 1;
  -webkit-animation: slide-in 0.5s forwards;
  -webkit-animation-delay: 0s;
  animation: slide-in 0.5s forwards;
  animation-delay: 0s;
}

@-webkit-keyframes slide-in {
  100% {
    right: 2%;
    opacity: 1;
  }
}

@keyframes slide-in {
  100% {
    right: 2%;
    opacity: 1;
  }
}

.step-container.slide-in-full {
  z-index: 1;
  -webkit-animation: slide-in-full 0.5s forwards;
  -webkit-animation-delay: 0s;
  animation: slide-in-full 0.5s forwards;
  animation-delay: 0s;
}

@-webkit-keyframes slide-in-full {
  100% {
    right: 0%;
    /*opacity: 1;*/
  }
}

@keyframes slide-in-full {
  100% {
    right: 0%;
    /*opacity: 1;*/
  }
}

.step-container.slide-out {
  z-index: -1;
  -webkit-animation: slide-out 0.5s forwards;
  -webkit-animation-delay: 0s;
  animation: slide-out 0.5s forwards;
  animation-delay: 0s;
}

@-webkit-keyframes slide-out {
  0% {
    right: 2%;
  }
  100% {
    right: 100%;
  }
}

@keyframes slide-out {
  0% {
    right: 2%;
  }
  100% {
    right: 100%;
  }
}

.shake {
  animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@-webkit-keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

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

@keyframes scale {
  0% {
    transform: scale(1.0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.0);
  }
}

.icon-bg{
  fill: transparent;
}

.bg-fill{
  fill: transparent;
  animation: dash 3s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
    /* works, know why */
    fill: black;
  }
}

.bg-ruler {
  background-size: 200% 100%;
  background-image: linear-gradient(to right, transparent 50%, black 50%);
  transition-delay: .5s;
  transition: background-position 1s;
}

.bg-ruler.fill-1 {
    background-position: -33.33% 0;
}

.bg-ruler.fill-2 {
    background-position: -66.66% 0;
}

.bg-ruler.fill-3 {
    background-position: -100% 0;
}





#s1 {
  opacity: 1;
  width: 100%;
  background: url(../images/skindefault/bg.gif?m=2);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  /*overflow: hidden;*/
}

#s1 .step-button, .sfinal .step-button {
  position: absolute;
  width: 100%;
  bottom: 2vh;
  left: 0;
}

@media screen and (orientation:landscape) {
  body.mbl .step-container {
    overflow: auto;
    width: 95%;
  }
  body.mbl .step-option {
    display: inline-block;
    width: 45%;
    margin: 0 .5% 2%;
  }
  body.mbl #s3 .step-option {
    display: inline-block;
    width: 96%;
    margin: 0 .5% 2%;
  }
  body.mbl .step-option .h4, .step-option h4 {
    font-size: 100%;
  }
  body.mbl .step-button button {
    margin-bottom: 10px;
  }
}

@media only screen and (max-height: 400px) and (orientation:landscape) {
  body.mbl .sfinal .step-button {
    position: relative;
    bottom: unset;
    margin: 10px 0;
  }
}

body.dsk #s1 {
  background: url(../images/skindefault/bg.gif?m=2);
  background-repeat: no-repeat;
  background-size: unset;
  background-position: center center;
}

/****** LOADER ******/

.circles {
  margin-bottom: -10px;
}

.circle {
  display: inline-block;
  position: relative;
  text-align: center;
}

.circle canvas {
  vertical-align: top;
}

.circle strong {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  font-size: 30px;
  transform: translate(-50%, -50%);
}

.circle strong i {
  font-style: normal;
  font-size: 0.6em;
  font-weight: normal;
}

.circle span {
  display: block;
  color: #aaa;
  margin-top: 12px;
}

.blue {
  color: var(--mainColor)!important;
}

video {
  max-width: 100%;
  border: 1px solid #2444ff;
  margin-bottom: 15px;
}

.end-video {
  border: 1px solid var(--mainColor);
  margin-bottom: 15px;
}

.sfinal h4 {
  margin-bottom: 0;
}

.sfinal h3 {
  margin: 0;
}

.shadowed {
  text-shadow: 0px 3px 5px #000;
}

/***** SVG *****/

header svg {
  max-height: 100%;
}

.logo-first, .logo-tag {
  fill: #fff;
}

.logo-second {
  fill: var(--mainColor);
}

.step-option svg {
  max-height: 80px;
}

.step-option.active svg {
  /*animation: scale 0.82s cubic-bezier(.36, .07, .19, .97) both;*/
}

.icon {
  fill: #666;
}

.icon-grey {
  fill: rgba(255, 255, 255, 0.20);
}

.step-option.active .icon-grey {
  fill: rgba(255, 255, 255, 0.20);
}

.st0 {
  fill: #666;
}

.step-option.active .icon {
  fill: #fff;
}

/***** SKINS *****/

body.skinhims {
  color: #000;
  background: #ececec;
}

body.skinhims .logo-first, body.skinhims .logo-tag {
  fill: #000;
}

body.skinhims .logo-second {
  fill: #1f9225;
}

body.skinhims .shadowed {
  text-shadow: none;
}

body.skinhims header {
  background: #e8e8e6;
}

body.skinhims #s1 {
  background: url(../images/skinhims/bg1hims.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

body.skinhims .step-button button {
  background: #aba8a8;
  color: #5b5858;
}

body.skinhims .step-button button.active {
  background: #1e9225;
  color: #fff;
}

body.skinhims .step-option {
  background: #f6f6f6;
}

body.skinhims .step-option.active {
  background: #1e9225;
  border: 1px solid #209827;
}

body.skinhims .blue {
  color: #1e9225!important;
}

body.skinhims .end-video {
  display: none;
}

body.skinhims #s7 {
  width: 100%;
  background: url(../images/skinhims/bg2hims.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  -webkit-transition: background 1.5s linear;
  -moz-transition: background 1.5s linear;
  -o-transition: background 1.5s linear;
  -ms-transition: background 1.5s linear;
  transition: background 1.5s linear;
}

body.skinhims #s7 h2 {
  font-size: 25px;
}

body.skinhims .icon-grey {
  fill: #d8d8d8;
}

body.skin2 .step-option {
  border: 1px solid transparent;
  background: #2b2b2b;
  color: #828181;
}

body.skin2 .step-option.active {
  background: var(--mainColor);
  border: 1px solid var(--mainColor);
  color: #fff;
}

body.skin2 .icon-grey {
  fill: rgba(255, 255, 255, .10);
}

@media only screen and (max-width: 480px) {
  body.skinhims #s1 {
    background-size: cover;
  }
  body.skinhims #s7 {
    background-size: cover;
  }
}






body.skin3 .step-option {
  border: 1px solid transparent;
  background: #2b2b2b;
  color: #828181;
}

body.skin3 .step-option.active {
  background: var(--mainColor);
  border: 1px solid var(--mainColor);
  color: #fff;
}

body.skin3 .icon-grey {
  fill: rgba(255, 255, 255, .10);
}




body[data-header="no"] header{
  display: none;
}

body[data-header="no"] .main-container{
  height: 97%;
}

/*Email Section at last step*/

.margin-top{margin-top: 16px;}
.margin-top-medium{margin-top: 32px;}
.margin-top-large{margin-top: 48px;}
.margin-bottom{margin-bottom: 16px;}
.margin-bottom-medium{margin-bottom: 32px;}
.margin-bottom-large{margin-bottom: 48px;}

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

.form-control{
  display: initial !important;
}

.email-box{
  padding: 5px;
  border: 2px solid var(--mainColor);
  margin-bottom: 20px;
}

.email-input, .email-input:hover, .email-input:focus, .email-input:active{
  width: 75%;
  height: 40px;
  outline: none;
}

.email-input::placeholder{
  color: #898889;
  font-size: 16px;
  font-weight: 500;
}

.btn-merge{
  bottom: auto !important;
  margin-top: -50px;
}

.checkbox-label{
  font-weight: 500;
}

