﻿@charset "UTF-8";
/*Definitions*/
/*Gradient colors*/
/*Steps colors*/
/*New mixing just for fonts, some times you don't want to re-define all the properties*/
@font-face {
  font-family: "Kamerik 105";
  src: url("../fonts/Kamerik/bold/webfont.woff2") format("woff2"), url("../fonts/Kamerik/bold/webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Kamerik 105";
  src: url("../fonts/Kamerik/book/webfont.woff2") format("woff2"), url("../fonts/Kamerik/book/webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Kamerik 105";
  src: url("../fonts/Kamerik/light/webfont.woff2") format("woff2"), url("../fonts/Kamerik/light/webfont.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}
/* Nunito Sans Bold */
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NunitoSans/bold/webfont.eot");
  /* IE9 Compat Modes */
  src: local("Nunito Sans Bold"), local("NunitoSans-Bold"), url("../fonts/NunitoSans/bold/webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/NunitoSans/bold/webfont.woff2") format("woff2"), url("../fonts/NunitoSans/bold/webfont.woff") format("woff"), url("../fonts/NunitoSans/bold/webfont.ttf") format("truetype"), url("../fonts/NunitoSans/bold/webfont.svg#NunitoSans") format("svg");
  /* Legacy iOS */
}
/* Nunito Sans Semibold */
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/NunitoSans/semibold/webfont.eot");
  /* IE9 Compat Modes */
  src: local("Nunito Sans SemiBold"), local("NunitoSans-SemiBold"), url("../fonts/NunitoSans/semibold/webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/NunitoSans/semibold/webfont.woff2") format("woff2"), url("../fonts/NunitoSans/semibold/webfont.woff") format("woff"), url("../fonts/NunitoSans/semibold/webfont.ttf") format("truetype"), url("../fonts/NunitoSans/semibold/webfont.svg#NunitoSans") format("svg");
  /* Legacy iOS */
}
/* Nunito Sans Regular */
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NunitoSans/regular/webfont.eot");
  /* IE9 Compat Modes */
  src: local("Nunito Sans Regular"), local("NunitoSans-Regular"), url("../fonts/NunitoSans/regular/webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/NunitoSans/regular/webfont.woff2") format("woff2"), url("../fonts/NunitoSans/regular/webfont.woff") format("woff"), url("../fonts/NunitoSans/regular/webfont.ttf") format("truetype"), url("../fonts/NunitoSans/regular/webfont.svg#NunitoSans") format("svg");
  /* Legacy iOS */
}
/* Grid line, as a pattern we want almost all the spacing and sizes in the site to follow the 8 rhythm*/
/*Components*/
/*Reset elements*/
h1, h2, h3, p, fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

/*Padding definitions*/
/*all sides*/
.pad-xs {
  padding: 4px;
}

.pad-s {
  padding: 8px;
}

.pad-m {
  padding: 16px;
}

.pad-l {
  padding: 24px;
}

.pad-xl {
  padding: 32px;
}

/*top*/
.pad-top-xs {
  padding-top: 4px;
}

.pad-top-s {
  padding-top: 8px;
}

.pad-top-m {
  padding-top: 16px;
}

.pad-top-l {
  padding-top: 24px;
}

.pad-top-xl {
  padding-top: 32px;
}

/*left side*/
.pad-left-xs {
  padding: 4px;
}

.pad-left-s {
  padding: 8px;
}

.pad-left-m {
  padding-left: 16px;
}

.pad-left-l {
  padding-left: 24px;
}

.pad-left-xl {
  padding-left: 32px;
}

/*right side*/
.pad-left-xs {
  padding: 4px;
}

.pad-right-s {
  padding: 8px;
}

.pad-right-m {
  padding-right: 16px;
}

.pad-right-l {
  padding-right: 24px;
}

.pad-right-xl {
  padding-right: 32px;
}

/*bottom*/
.pad-btm-xs {
  padding-bottom: 4px;
}

.pad-btm-s {
  padding-bottom: 8px;
}

.pad-btm-m {
  padding-bottom: 16px;
}

.pad-btm-l {
  padding-bottom: 24px;
}

.pad-btm-xl {
  padding-bottom: 32px;
}

/*left and right sides*/
.pad-leftright-xs {
  padding-left: 4px;
  padding-right: 4px;
}

.pad-leftright-s {
  padding-left: 8px;
  padding-right: 8px;
}

.pad-leftright-m {
  padding-left: 16px;
}

.pad-leftright-l {
  padding-right: 24px;
  padding-left: 24px;
}

.pad-leftright-xl {
  padding-left: 32px;
  padding-right: 32px;
}

/*top and bottom*/
.pad-topbtm-xs {
  padding-top: 4px;
  padding-top: 4px;
}

.pad-topbtm-s {
  padding-top: 8px;
  padding-bottom: 8px;
}

.pad-topbtm-m {
  padding-top: 16px;
  padding-bottom: 16px;
}

.pad-topbtm-l {
  padding-top: 24px;
  padding-bottom: 24px;
}

.pad-topbtm-xl {
  padding-top: 32px;
  padding-bottom: 32px;
}

/*Layout for horizontal/vertical containers*/
.fancy-container.vertical {
  display: flex;
  flex-direction: column;
}
.fancy-container.horizontal {
  display: flex;
  flex-direction: row;
}
.fancy-container.horizontal.spaced {
  justify-content: space-between;
}
.fancy-container.justify-right {
  justify-content: flex-end;
}
.fancy-container.justify-center {
  justify-content: center;
}
.fancy-container.justify-space-between {
  justify-content: space-between;
}

/*Rounded element definition*/
.fancy-rounded {
  border-top-right-radius: 16px;
  border-bottom-left-radius: 16px;
}
.fancy-rounded__medium {
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
.fancy-rounded__large {
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
}

/*Hide rules*/
.hidden {
  display: none;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
/*Master container*/
.master-container {
  width: 1200px;
  margin: 0 auto;
  padding-right: 48px;
  padding-left: 48px;
  box-sizing: border-box;
}

@media screen and (max-width: 1200px) {
  /*Configuration for mobile devices*/
  .master-container {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media screen and (max-width: 768px) {
  .master-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.main-navigation {
  height: 40px;
  width: 100%;
  display: flex;
  align-content: center;
  /*Gradient definition*/
  background: #0190ad;
  background: -moz-linear-gradient(left, #007e98 0%, #06afcb 30%, #06afcb 45%, #67C998 90%, #67C998 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #007e98), color-stop(30%, #06afcb), color-stop(45%, #06afcb), color-stop(90%, #67C998), color-stop(100%, #67C998));
  background: -webkit-linear-gradient(left, #007e98 0%, #06afcb 30%, #06afcb 45%, #67C998 90%, #67C998 100%);
  background: -o-linear-gradient(left, #007e98 0%, #06afcb 30%, #06afcb 45%, #67C998 90%, #67C998 100%);
  background: -ms-linear-gradient(left, #007e98 0%, #06afcb 30%, #06afcb 45%, #67C998 90%, #67C998 100%);
  background: linear-gradient(to right, #007e98 0%, #06afcb 30%, #06afcb 45%, #67C998 90%, #67C998 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#0190ad", endColorstr="#017f98", GradientType=1 );
}
.main-navigation.sticky {
  position: -webkit-sticky;
  position: sticky;
  -webkit-transform: translateZ(0);
  /*Fix repaint issue when scrolling in iOS*/
  top: 0;
  z-index: 100;
}
.main-navigation.sticky > * {
  -webkit-transform: translateZ(0);
  /*Fix repaint issue when scrolling in iOS*/
}
.main-navigation .master-container {
  display: flex;
  align-items: center;
}
.main-navigation .master-container.simple .logo-wrapper {
  display: flex;
  height: 22px;
}
.main-navigation .master-container.simple .logo-wrapper .logo {
  max-height: 28px;
  max-width: 170px;
}

/*Media queries*/
@media (min-width: 768px) {
  .main-navigation {
    height: 64px;
  }
  .main-navigation .master-container.simple .logo-wrapper {
    height: 30px;
  }
  .main-navigation .master-container.simple .logo-wrapper .logo {
    max-height: 40px;
    max-width: 210px;
  }
}
/*Colors*/
.blue-link {
  color: #0095bc;
}

.black {
  color: #000;
}

.white {
  color: #fff;
}

.grey {
  color: #888;
}

.red {
  color: #c00202;
}

/*Font weight definitions*/
.bold {
  font-weight: 700;
}

.semi-bold {
  font-weight: 600;
}

.light {
  font-weight: 200;
}

/*Text definitions*/
.text {
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
}
.text.body {
  font-size: 18px;
  line-height: 28px;
}
.text.body p {
  margin-bottom: 24px;
}
.text.body h2 {
  margin-bottom: 16px;
  font-size: 26px;
  line-height: 28px;
  margin-top: 8px;
  display: inline-block;
}
.text.body h3 {
  font-size: 21px;
  line-height: 24px;
  margin-bottom: 8px;
}
.text.body ul, .text.body ol {
  margin-top: 0;
  margin-bottom: 28px;
  list-style: none;
}
.text.body ul li, .text.body ol li {
  display: table;
}
.text.body ul li:not(:last-child), .text.body ol li:not(:last-child) {
  margin-bottom: 8px;
}
.text.body ul li:before, .text.body ol li:before {
  display: table-cell;
  width: 24px;
}
.text.body ul {
  padding-left: 24px;
}
.text.body ul li:before {
  content: "•";
  color: #0095bc;
}
.text.body ol {
  padding-left: 24px;
  counter-reset: my-counter;
}
.text.body ol li:before {
  content: counter(my-counter) ".";
  counter-increment: my-counter;
}
.text.small {
  font-size: 16px;
  line-height: 20px;
}
.text.xsmall {
  font-size: 14px;
  line-height: 16px;
}
.text.xxsmall {
  font-size: 12px;
  line-height: 16px;
}
.text.justify-left {
  text-align: left;
}
.text.justify-center {
  text-align: center;
}
.text.justify-right {
  text-align: right;
}

/*Heading definitions*/
.c-heading {
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
}
.c-heading.xl {
  font-size: 36px;
  line-height: 40px;
}
.c-heading.large {
  font-size: 26px;
  line-height: 30px;
}
.c-heading.medium {
  font-size: 21px;
  line-height: 24px;
}

.o-heading {
  font-family: "Kamerik 105", Arial, Helvetica, sans-serif;
}
.o-heading.xxl {
  font-size: 44px;
}
.o-heading.xl {
  font-size: 36px;
  font-weight: 200;
}
.o-heading.large {
  font-size: 28px;
  font-weight: 200;
}

/*Radio Button Styles*/
[type=radio]:not(:checked),
[type=radio]:checked {
  position: absolute;
  left: -9999px;
}

[type=radio]:not(:checked) + label,
[type=radio]:checked + label {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  display: flex;
}

[type=radio]:not(:checked) + label:before,
[type=radio]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16.4px;
  height: 16.4px;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: solid #888 1px;
}

/* radio aspect */
[type=radio]:not(:checked) + label:before {
  background: #fff;
}

[type=radio]:checked + label:before {
  border: 1px solid #0095bc;
  background: #0095bc;
}

/* checked mark aspect */
[type=radio]:not(:checked) + label:after,
[type=radio]:checked + label:after {
  content: "•";
  position: absolute;
  left: 5px;
  top: -2px;
  color: #fff;
  height: 18px;
  transition: all 0.2s;
}

/* checked mark aspect changes */
[type=radio]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}

[type=radio]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

/* disabled radio */
[type=radio]:disabled:not(:checked) + label:before,
[type=radio]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #888;
  background-color: #888;
}

[type=radio]:disabled:checked + label:after {
  color: #888;
}

[type=radio]:disabled + label {
  color: #888;
}

/*End Radio button definition*/
/*Check box Styles*/
/* Base for label styling */
[type=checkbox]:not(:checked),
[type=checkbox]:checked {
  position: absolute;
  left: -9999px;
}

[type=checkbox]:not(:checked) + label,
[type=checkbox]:checked + label {
  position: relative;
  padding-left: 1.95em;
  cursor: pointer;
  display: flex;
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
}

[type=checkbox]:not(:checked) + label:before,
[type=checkbox]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* checkbox aspect */
[type=checkbox]:not(:checked) + label:before {
  border: 1px solid #888;
  background: #fff;
}

[type=checkbox]:checked + label:before {
  border: 1px solid #0095bc;
  background: #0095bc;
}

[type=checkbox]:focus + label:before {
  box-shadow: 0px 0px 0px 1px #0095bc;
}

input:focus {
  box-shadow: 0px 0px 0px 1px #0095bc;
}

/* checked mark aspect */
[type=checkbox]:not(:checked) + label:after,
[type=checkbox]:checked + label:after {
  content: "✔";
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 0.8em;
  line-height: 0.8;
  color: #fff;
  transition: all 0.2s;
}

/* checked mark aspect changes */
[type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}

[type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

/* disabled checkbox */
[type=checkbox]:disabled:not(:checked) + label:before,
[type=checkbox]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #888;
  background-color: #888;
}

[type=checkbox]:disabled:checked + label:after {
  color: #999;
}

[type=checkbox]:disabled + label {
  color: #aaa;
}

/*End Checkbox definition*/
.button {
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  height: 40px;
  line-height: 40px;
  padding: 0 24px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  opacity: 1;
  transition: 0.3s;
  font-size: 18px;
  font-weight: 600;
}
.button:hover {
  opacity: 0.8;
}
.button.small {
  height: 32px;
  line-height: 32px;
  padding: 0 16px;
  font-size: 16px;
}
.button.button-green {
  background-color: #45b89c;
  color: #fff;
}
.button.button-blue {
  background-color: #01667b;
  color: #fff;
}

.field {
  box-sizing: border-box;
}
.field.field-text {
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  height: 40px;
  line-height: 40px;
  padding: 0 16px;
  font-size: 18px;
  display: block;
  width: 100%;
  background-color: #fff;
  border: none;
  outline: none;
}
.field::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  color: #888;
  font-weight: 300;
  opacity: 1;
}
.field::-moz-placeholder {
  /* Firefox 19+ */
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  color: #888;
  font-weight: 300;
  opacity: 1;
}
.field:-ms-input-placeholder {
  /* IE 10+ */
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  color: #888;
  font-weight: 300;
  opacity: 1;
}
.field:-moz-placeholder {
  /* Firefox 18- */
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  color: #888;
  font-weight: 300;
  opacity: 1;
}
.field.input-validation-error {
  border: 1px solid #c00202;
}

.main-footer {
  background-color: #5c707e;
  width: 100%;
}

.form {
  box-sizing: border-box;
  border-bottom-left-radius: 30px;
}
.form label {
  display: block;
}
.form.form-blue {
  background: #007791;
  background: -webkit-linear-gradient(top, #007791 0, #13a4b5 25%, #1fbac2 100%);
  background: -o-linear-gradient(top, #007791 0, #13a4b5 25%, #1fbac2 100%);
  background: -ms-linear-gradient(top, #007791 0, #13a4b5 25%, #1fbac2 100%);
  background: -moz-linear-gradient(top, #007791 0, #13a4b5 25%, #1fbac2 100%);
  background: linear-gradient(to bottom, #007791 0, #13a4b5 25%, #1fbac2 100%);
}
.form .field-validation-error {
  display: block;
}

.panel-step {
  max-width: 292px;
  min-height: 140px;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 24px 50px 24px 80px;
  font-family: "Kamerik 105", Arial, Helvetica, sans-serif;
  align-self: center;
  text-align: left;
  box-sizing: border-box;
  margin-right: 24px;
}
.panel-step .body {
  line-height: 24px;
}
.panel-step.step-one {
  background-color: #d0eff1;
  position: relative;
  padding-right: 48px;
  max-width: 292px;
}
.panel-step.step-one .step-number {
  font-family: "Kamerik 105", Arial, Helvetica, sans-serif;
  font-size: 120px;
  color: #00aacd;
  line-height: 120px;
  background-color: #fff;
  position: absolute;
  width: 44px;
  height: 104px;
  top: -10px;
  left: -14px;
  font-weight: 700;
  text-shadow: 4px 0 #fff, 0 4px #fff, -4px 0 #fff, 0 -4px #fff, 4px 4px #fff, -4px -4px #fff, 4px -4px #fff, -4px 4px #fff;
}
.panel-step.step-two {
  background-color: #dcf3ed;
  position: relative;
  max-width: 292px;
}
.panel-step.step-two .step-number {
  font-family: "Kamerik 105", Arial, Helvetica, sans-serif;
  color: #4bc3aa;
  font-size: 120px;
  line-height: 120px;
  background-color: #fff;
  position: absolute;
  width: 44px;
  height: 80px;
  top: -8px;
  left: -7px;
  font-weight: 700;
  text-shadow: 4px 0 white, 0 4px #fff, -4px 0 #fff, 0 -4px #fff, 4px 4px #fff, -4px -4px #fff, 4px -4px #fff, -4px 4px #fff;
}
.panel-step.step-three {
  background-color: #cef0df;
  position: relative;
  max-width: 292px;
}
.panel-step.step-three .step-number {
  font-family: "Kamerik 105", Arial, Helvetica, sans-serif;
  font-size: 120px;
  color: #66c99a;
  line-height: 120px;
  background-color: #fff;
  position: absolute;
  width: 47px;
  height: 82px;
  top: -10px;
  left: -7px;
  font-weight: 700;
  text-shadow: 4px 0 #fff, 0 4px #fff, -4px 0 #fff, 0 -4px #fff, 4px 4px #fff, -4px -4px #fff, 4px -4px #fff, -4px 4px #fff;
}

.main-footer .disclaimer {
  max-width: 936px;
  margin: 0 auto;
}

.progress {
  background-color: #ddd;
  height: 40px;
}
.progress > div {
  position: relative;
  border-bottom-left-radius: 16px;
  height: 100%;
  background-color: #45b89c;
}
.progress > div:after {
  content: attr(data-percent) "%";
  color: #fff;
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-size: 18px;
  position: absolute;
  right: 16px;
  top: 0;
  line-height: 40px;
}
.progress .text {
  position: absolute;
  left: 16px;
  top: 0;
  height: 100%;
  line-height: 40px;
}

.environment-ribbon {
  background: #dcac1b;
  width: auto;
  padding: 10px;
  position: fixed;
  z-index: 10000;
  text-align: center;
  top: 15%;
  text-transform: uppercase;
  line-height: 40px;
  left: 0;
  font: 550 17px sans-serif;
  color: white;
  line-height: 30px;
  border: 0;
}

.environment-ribbon:after {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  height: 0;
  width: 0;
  border: solid 25px #dcac1b;
  border-right-color: transparent;
}

/*
    Color names from:
    http://www.color-blindness.com/color-name-hue/
    http://chir.ag/projects/name-that-color/
 */
/*
     Why do we name colors?
     https://davidwalsh.name/sass-color-variables-dont-suck
     https://coryetzkorn.com/blog/color-variables-in-sass/
 */
/*
  Function: linear-gradient
  Description: Generate linear-gradient styles from direction and color stops
*/
/*
    Function: rounded-corners

    Type:
        all -> radius on all corners
        top -> radius on top-left and top-right corners
        bottom -> radius on bottom-left and bottom-right corners
        slash -> radius on bottom-left and top-right corners
        backslash -> radius on top-left and bottom-right corners
*/
.lp-centered-container {
  max-width: 500px;
  margin: 0 auto;
}

.text.body.back-link {
  line-height: 40px;
}

.back-link {
  line-height: 40px;
  display: inline;
  text-decoration: none;
}
.back-link:hover {
  text-decoration: underline;
}
.back-link:before {
  content: "∟";
  display: inline-block;
  transform: rotate(45deg);
  height: 32px;
  width: 16px;
  font-size: 16px;
}

.text-legend {
  font-size: 11px;
  line-height: 18px;
}

.required-symbol::after {
  content: " *";
  font-weight: bold;
  font-size: 14px;
}

.form-group .control-label {
  font-size: 18px;
  line-height: 20px;
}
.form-group .control-label.required-symbol::after {
  line-height: 20px;
}

.text-danger {
  color: #dd4b39;
}

.field.field-rounded + .text-danger {
  margin-top: 5px;
  margin-left: 20px;
  font-size: 12px;
}

.rounded-panel {
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
  padding: 30px;
  background-color: #f5f5f5;
  border: none;
}
.rounded-panel.step {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.form-actions {
  display: flex;
}

/*@import "Shared/_Layout.scss";*/
.header-container {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-container .navbar {
  margin-bottom: 0;
}

.footer-container {
  padding: 40px 0;
  margin: 0;
  z-index: 100;
  bottom: 0;
  right: 0;
  left: 0;
}

.application-core .master-container {
  position: relative;
}
.application-core .image-container .title {
  max-width: 400px;
  padding-top: 40px;
}
.application-core .form {
  margin-bottom: 8px;
}
.application-core .steps-wrapper {
  display: flex;
  flex-direction: column;
}
.application-core .steps-wrapper .panel-step {
  height: 172px;
  width: 276px;
  max-height: 172px;
  max-width: 328px;
  margin-right: 0;
}
.application-core .steps-wrapper .panel-step:not(:last-child) {
  margin-bottom: 24px;
}
.application-core .steps-wrapper .panel-step:last-child {
  margin-bottom: 0;
}
.application-core .steps-wrapper .panel-step.step-one {
  padding-left: 56px;
}

@media (min-width: 992px) {
  .application-core .master-container {
    position: relative;
  }
  .application-core .form {
    position: absolute;
    right: 15px;
    top: -64px;
    width: 324px;
    z-index: 100;
  }
  .application-core .image-container {
    margin-top: -24px;
    background-color: #888;
    background: url("../../images/hero-recruitment.jpg");
    background-repeat: no-repeat;
    background-position-x: center;
    background-color: #dcdcda;
    height: 424px;
  }
  .application-core .content-body {
    padding-left: 48px;
    padding-top: 48px;
    max-width: 640px;
  }
  .application-core .steps-wrapper {
    flex-direction: row;
    padding-left: 58px;
    max-width: 1010px;
  }
  .application-core .steps-wrapper .panel-step {
    margin-right: 16px;
    width: 328px;
    height: 148px;
    margin-bottom: 24px;
  }
  .application-core .steps-wrapper .panel-step:last-child {
    margin-bottom: 24px;
  }
}
.application-thankyou {
  text-align: left;
  min-height: 554px;
}
.application-thankyou .lp-centered-container > .c-heading {
  padding-top: 0;
}

@media (min-width: 992px) {
  .application-thankyou .lp-centered-container {
    max-width: 578px;
    padding-right: 64px;
  }
  .application-thankyou .lp-centered-container > .c-heading {
    padding-top: 24px;
  }
}
