@charset "UTF-8";
/**
  Color definitions - light to dark from top to bottom
  Naming from http://chir.ag/projects/name-that-color
*/
/**
  Color implementation
*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  box-sizing: content-box; /* 2 */
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/**
  Oppinionated resets plucked from Bootstrap4
*/
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent; }
*,
*::before,
*::after {
  box-sizing: inherit;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
@-moz-viewport {
  width: device-width; }
@-ms-viewport {
  width: device-width; }
@-webkit-viewport {
  width: device-width; }
@viewport {
  width: device-width; }
[tabindex="-1"]:focus {
  outline: none !important; }
img {
  vertical-align: middle; }
[role="button"] {
  cursor: pointer; }
a,
area,
button,
[role="button"],
input,
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation; }
label {
  display: inline-block; }
input,
button,
select,
textarea {
  margin: 0;
  line-height: inherit;
  border-radius: 0; }
textarea {
  resize: vertical; }
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0; }
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit; }
input[type="search"] {
  box-sizing: inherit;
  -webkit-appearance: none; }
[hidden] {
  display: none !important; }
@font-face {
  font-family: 'SEBBasic';
  src: url("../fonts/sebbasic-light-webfont.eot");
  src: url("../fonts/sebbasic-light-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/sebbasic-light-webfont.woff2") format("woff2"), url("../fonts/sebbasic-light-webfont.woff") format("woff"), url("../fonts/sebbasic-light-webfont.ttf") format("truetype"), url("../fonts/sebbasic-light-webfont.svg#seb_basiclight") format("svg");
  font-weight: 300;
  font-style: normal; }
@font-face {
  font-family: 'SEBBasic';
  src: url("../fonts/sebbasic-regular-webfont.eot");
  src: url("../fonts/sebbasic-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/sebbasic-regular-webfont.woff2") format("woff2"), url("../fonts/sebbasic-regular-webfont.woff") format("woff"), url("../fonts/sebbasic-regular-webfont.ttf") format("truetype"), url("../fonts/sebbasic-regular-webfont.svg#seb_basicregular") format("svg");
  font-weight: 400;
  font-style: normal; }
@font-face {
  font-family: 'SEBBasic';
  src: url("../fonts/sebbasic-medium-webfont.eot");
  src: url("../fonts/sebbasic-medium-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/sebbasic-medium-webfont.woff2") format("woff2"), url("../fonts/sebbasic-medium-webfont.woff") format("woff"), url("../fonts/sebbasic-medium-webfont.ttf") format("truetype"), url("../fonts/sebbasic-medium-webfont.svg#seb_basicmedium") format("svg");
  font-weight: 500;
  font-style: normal; }
/**
  Base typography styles
  If any component, eg. .btn needs to override in their own stylesheet, that's just fine
*/
html {
  height: 100%;
  font-size: 17px; }
@media (min-width: 769px) {
    html {
      font-size: 22px; } }
body {
  font-family: SEBBasic, Arial Narrow, Arial, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.3;
  color: #333940; }
/**
  Headings
*/
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: SEBBasic, Arial Narrow, Arial, sans-serif;
  font-weight: 300; }
.display1 {
  font-size: 36px;
  line-height: 1.1; }
h1, .h1 {
  font-size: 27px;
  line-height: 1.2; }
h2, .h2 {
  font-size: 19px;
  line-height: 1.25; }
h3, .h3 {
  font-size: 17px;
  line-height: 1.3; }
@media (min-width: 769px) {
  .display1 {
    font-size: 60px; }
  h1, .h1 {
    font-size: 38px; }
  h2, .h2 {
    font-size: 30px; }
  h3, .h3 {
    font-size: 22px; } }
strong {
  font-weight: 500; }
a {
  color: #60cd18;
  text-decoration: underline;
  font-weight: 500; }
small {
  font-size: 80%; }
body {
  height: 100%;
  background-color: #f2f2f2; }
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-top: 0; }
.display1 {
  margin-bottom: 1rem; }
.display1.display1-respect-bottom {
    margin-bottom: 1.5rem; }
h1,
.h1 {
  margin-bottom: 1rem; }
h1.h1-respect-bottom,
  .h1.h1-respect-bottom {
    margin-bottom: 1.5rem; }
h2,
.h2 {
  margin-bottom: 1rem; }
h2.h2-respect-bottom,
  .h2.h2-respect-bottom {
    margin-bottom: 1.5rem; }
h3,
.h3 {
  margin-bottom: 1rem; }
h3.h3-respect-bottom,
  .h3.h3-respect-bottom {
    margin-bottom: 1.5rem; }
p {
  margin-top: 0;
  margin-bottom: 1rem; }
address {
  font-style: normal;
  line-height: inherit;
  margin-bottom: 1rem; }
ol,
ul,
dl {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 1rem; }
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 1rem; }
dd {
  margin-left: 0;
  margin-bottom: 0.5rem; }
form {
  margin-bottom: 1rem; }
fieldset {
  margin-bottom: 1rem; }
blockquote {
  margin: 0 0 1rem; }
pre {
  margin-top: 0;
  margin-bottom: 1rem; }
figure {
  margin: 0 0 1rem; }
label {
  margin-bottom: 1rem; }
hr {
  border-color: rgba(51, 57, 64, 0.2);
  border-width: 0 0 1px 0;
  margin: 0 0 1rem 0; }
.close {
  display: inline-block;
  padding: 10px;
  border-radius: 100px;
  background: #333940;
  color: #fff;
  overflow: hidden;
  border: none;
  cursor: pointer; }
@media (min-width: 769px) {
    .close {
      padding: 12px; } }
.close .close-label {
    display: block;
    position: absolute;
    height: 0;
    width: 0;
    overflow: hidden; }
.close .icon {
    width: 10px;
    height: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto; }
@media (min-width: 769px) {
      .close .icon {
        width: 12px;
        height: 12px; } }
body.prevent-scroll {
  overflow: hidden; }
.container {
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px; }
@media (min-width: 375px) {
    .container {
      padding-left: 35px;
      padding-right: 35px;
      padding-top: 30px;} }
@media (min-width: 769px) {
    .container {
      padding-left: 55px;
      padding-right: 55px; } }
.overlay .container {
    max-width: 650px; }
@media (min-width: 769px) {
      .overlay .container {
        max-width: 890px; } }
.section {
  margin-bottom: 10px; }
@media (min-width: 375px) {
    .section {
      margin-bottom: 15px; } }
@media (min-width: 769px) {
    .section {
      margin-bottom: 20px; } }
.section.section-respect {
    margin-top: 20px;
    margin-bottom: 20px; }
@media (min-width: 375px) {
      .section.section-respect {
        margin-top: -35px;
        margin-bottom: 30px; } }
@media (min-width: 769px) {
      .section.section-respect {
        margin-top: -70px;
        margin-bottom: 40px; } }
.section.section-respect-bottom {
    margin-bottom: 20px; }
@media (min-width: 375px) {
      .section.section-respect-bottom {
        margin-bottom: 30px; } }
@media (min-width: 769px) {
      .section.section-respect-bottom {
        margin-bottom: 40px; } }
.section.section-respect-top {
    margin-top: 20px; }
@media (min-width: 375px) {
      .section.section-respect-top {
        margin-top: 30px; } }
@media (min-width: 769px) {
      .section.section-respect-top {
        margin-top: 40px; } }
.row-table {
  display: table;
  width: 100%;
  margin-left: -10px;
  margin-right: -10px; }
.row {
  margin-left: -10px;
  margin-right: -10px; }
.row:before, .row:after {
    content: " ";
    display: table; }
.row:after {
    clear: both; }
.row > .col,
.row-table > .col {
  float: left;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px; }
@media (min-width: 0) {
    .row > .col.xs-1,
    .row-table > .col.xs-1 {
      width: 8.33333%; }
    .row > .col.xs-2,
    .row-table > .col.xs-2 {
      width: 16.66667%; }
    .row > .col.xs-3,
    .row-table > .col.xs-3 {
      width: 25%; }
    .row > .col.xs-4,
    .row-table > .col.xs-4 {
      width: 33.33333%; }
    .row > .col.xs-5,
    .row-table > .col.xs-5 {
      width: 41.66667%; }
    .row > .col.xs-6,
    .row-table > .col.xs-6 {
      width: 50%; }
    .row > .col.xs-7,
    .row-table > .col.xs-7 {
      width: 58.33333%; }
    .row > .col.xs-8,
    .row-table > .col.xs-8 {
      width: 66.66667%; }
    .row > .col.xs-9,
    .row-table > .col.xs-9 {
      width: 75%; }
    .row > .col.xs-10,
    .row-table > .col.xs-10 {
      width: 83.33333%; }
    .row > .col.xs-11,
    .row-table > .col.xs-11 {
      width: 91.66667%; }
    .row > .col.xs-12,
    .row-table > .col.xs-12 {
      width: 100%; } }
@media (min-width: 769px) {
    .row > .col,
    .row-table > .col {
      float: left;
      min-height: 1px;
      padding-left: 10px;
      padding-right: 10px; }
      .row > .col.md-1,
      .row-table > .col.md-1 {
        width: 8.33333%; }
      .row > .col.md-2,
      .row-table > .col.md-2 {
        width: 16.66667%; }
      .row > .col.md-3,
      .row-table > .col.md-3 {
        width: 25%; }
      .row > .col.md-4,
      .row-table > .col.md-4 {
        width: 33.33333%; }
      .row > .col.md-5,
      .row-table > .col.md-5 {
        width: 41.66667%; }
      .row > .col.md-6,
      .row-table > .col.md-6 {
        width: 50%; }
      .row > .col.md-7,
      .row-table > .col.md-7 {
        width: 58.33333%; }
      .row > .col.md-8,
      .row-table > .col.md-8 {
        width: 66.66667%; }
      .row > .col.md-9,
      .row-table > .col.md-9 {
        width: 75%; }
      .row > .col.md-10,
      .row-table > .col.md-10 {
        width: 83.33333%; }
      .row > .col.md-11,
      .row-table > .col.md-11 {
        width: 91.66667%; }
      .row > .col.md-12,
      .row-table > .col.md-12 {
        width: 100%; } }
.row-table > .col {
  float: none; }
.row-table > .col.xs-1, .row-table > .col.xs-2, .row-table > .col.xs-3, .row-table > .col.xs-4, .row-table > .col.xs-5, .row-table > .col.xs-6, .row-table > .col.xs-7, .row-table > .col.xs-8, .row-table > .col.xs-9, .row-table > .col.xs-10, .row-table > .col.xs-11, .row-table > .col.xs-12  {
    display: table-cell;
    vertical-align: top; }
@media (min-width: 769px) {
    .row-table > .col.md-1, .row-table > .col.md-2, .row-table > .col.md-3, .row-table > .col.md-4, .row-table > .col.md-5, .row-table > .col.md-6, .row-table > .col.md-7, .row-table > .col.md-8, .row-table > .col.md-9, .row-table > .col.md-10, .row-table > .col.md-11, .row-table > .col.md-12 {
      display: table-cell;
      vertical-align: top; } }
.row-table > .col.col-valign-middle {
    vertical-align: middle; }
.row-table > .col.col-valign-bottom {
    vertical-align: bottom; }
.icon-sprite {
  display: none; }
.icon-sprite symbol:not(#icon-seb-logo-filled) path,
  .icon-sprite symbol:not(#icon-seb-logo-filled) g {
    fill: inherit; }
.icon {
  display: inline-block;
  vertical-align: middle; }
.icon:not(.icon-seb-logo-filled) path,
  .icon:not(.icon-seb-logo-filled) g {
    fill: inherit; }
.icon:not(.icon-seb-logo-filled) use {
    fill: currentColor; }
.btn .icon.icon-bracket-right {
    margin-left: 2px;
    width: 6px;
    height: 10px; }
@media (min-width: 769px) {
      .btn .icon.icon-bracket-right {
        width: 7px;
        height: 15px; } }
.btn .icon.icon-bracket-up {
    margin-left: 2px;
    width: 10px;
    height: 6px; }
@media (min-width: 769px) {
      .btn .icon.icon-bracket-up {
        width: 15px;
        height: 7px; } }
.btn {
  display: inline-block;
  border: 2px solid transparent;
  padding: 0 25px;
  line-height: 54px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 1000px;
  font-size: 1rem;
  text-decoration: none;
  margin-bottom: 1rem;
  font-weight: 500;
  transition: all .2s; }
@media (min-width: 769px) {
    .btn {
      line-height: 54px;
      padding: 0 40px;
      font-size: 1rem;
      border-width: 2px; } }
.btn + button:not(.btn-block):not(.btn-full-block) {
    margin-left: 5px; }
.btn.focus {
    text-decoration: none; }
.btn:active, .btn.active {
    background-image: none;
    outline: 0; }
.btn:focus {
    outline: 0; }
.btn.disabled, .btn:disabled {
    cursor: default;
    opacity: .65; }
.btn.btn-respect {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem; }
.btn.btn-respect-bottom {
    margin-bottom: 1.5rem; }
.btn.btn-respect-top {
    margin-top: 1.5rem; }
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none; }
.btn-default {
  background-color: transparent;
  border-color: #60cd18;
  color: #60cd18; }
.no-touch .btn-default:active,
  .touch .btn-default:active {
    border-color: #57bb16;
    color: #57bb16; }
.btn-primary {
  background-color: #60cd18;
  color: #fff; }
.no-touch .btn-primary:active,
  .touch .btn-primary:active {
    background-color: #5abf16;
    color: rgba(247, 247, 247, 0.95); }
.btn-link {
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  border-color: transparent;
  border-radius: 0; }
.btn-link.btn-block, .btn-link.btn-full-block {
    line-height: 1.3; }
@media (min-width: 769px) {
      .btn-link.btn-block, .btn-link.btn-full-block {
        line-height: 1.3; } }
.btn-multiline {
  white-space: normal;
  padding-top: 16px;
  padding-bottom: 16px; }
.btn-inline-link {
  line-height: inherit;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  border-bottom: 2px solid #60cd18;
  border-radius: 0;
  background-color: transparent;
  color: #60cd18; }
.btn-full-block {
  display: block;
  width: 100%; }
.btn-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 215px; }
.media,
.media-body {
  zoom: 1;
  overflow: hidden; }
.media-body {
  width: 10000px; }
.media-object {
  display: block; }
.media-object.img-thumbnail {
    max-width: none; }
.media-right,
.media > .pull-right {
  padding-left: 10px; }
.media-left,
.media > .pull-left {
  padding-right: 10px; }
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top; }
.media-middle {
  vertical-align: middle; }
.media-bottom {
  vertical-align: bottom; }
.media-heading {
  margin-top: 0;
  margin-bottom: 5px; }
.media-list {
  padding-left: 0;
  list-style: none; }
.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }
.clearfix:after {
  clear: both; }
.pull-right {
  float: right !important; }
.pull-left {
  float: left !important; }
.hide,
.hidden {
  display: none !important; }
.show,
.shown {
  display: block !important; }
.invisible {
  visibility: hidden; }
.xs-hide {
  display: none !important; }
.xs-show {
  display: block !important; }
.xs-show-table {
  display: table !important; }
.xs-show-table-cell {
  display: table-cell !important; }
.xs-text-left {
  text-align: left !important; }
.xs-text-right {
  text-align: right !important; }
.xs-text-center {
  text-align: center !important; }
@media (min-width: 769px) {
  .md-hide {
    display: none !important; }
  .md-show {
    display: block !important; }
  .md-show-table {
    display: table !important; }
  .md-show-table-cell {
    display: table-cell !important; }
  .md-text-left {
    text-align: left !important; }
  .md-text-right {
    text-align: right !important; }
  .md-text-center {
    text-align: center !important; } }
h1 .form-control, h2 .form-control, h3 .form-control {
  display: inline-block;
  width: auto;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: -2px; }
h1 .select, h2 .select, h3 .select {
  display: inline-block;
  margin-bottom: -2px; }
.form-control {
  display: block;
  width: 100%;
  padding: 1px 0px;
  font-size: inherit;
  line-height: inherit;
  color: #60cd18;
  background-color: transparent;
  font-size: inherit;
  background-image: none;
  border: none;
  font-weight: 500;
  border-bottom: 2px solid #60cd18; }
.form-control::-ms-expand {
    background-color: transparent;
    border: 0; }
.form-control:focus {
    outline: none; }
.form-control::-webkit-input-placeholder {
    color: #c3c4c6;
    opacity: 1; }
.form-control::-moz-placeholder {
    color: #c3c4c6;
    opacity: 1; }
.form-control:-ms-input-placeholder {
    color: #c3c4c6;
    opacity: 1; }
.form-control::placeholder {
    color: #c3c4c6;
    opacity: 1; }
.form-control:disabled, .form-control[readonly] {
    opacity: 1; }
.form-control:disabled {
    cursor: not-allowed; }
.form-control-label {
  padding: 1px 0px;
  margin-bottom: 0;
  border-bottom: 2px solid transparent; }
.form-control-static {
  font-weight: 500;
  padding-top: 1px;
  padding-bottom: 1px;
  margin-bottom: 0; }
.form-group {
  margin-bottom: 1rem; }
.radio,
.checkbox {
  display: block;
  margin-bottom: 0.75rem; }
.radio label,
  .checkbox label {
    padding-left: 30px;
    margin-bottom: 0;
    cursor: pointer;
    position: relative; }
.radio input,
  .checkbox input {
    position: absolute;
    opacity: 0;
    z-index: 0; }
.radio .control-indicator,
  .checkbox .control-indicator {
    position: absolute;
    display: block;
    background-color: transparent;
    border: 1px solid #c3c4c6; }
.radio .control-indicator:after,
    .checkbox .control-indicator:after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      opacity: 0; }
.radio .control-indicator input:disabled ~ .control-indicator,
    .checkbox .control-indicator input:disabled ~ .control-indicator {
      opacity: .3; }
.radio input:active ~ .control-indicator,
  .checkbox input:active ~ .control-indicator {
    background-color: #f2f2f2; }
.radio .control-label,
  .checkbox .control-label {
    pointer-events: none; }
.radio .control-indicator {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  top: calc((1em * 1.3 - 20px) / 2);
  left: 0; }
.radio .control-indicator:after {
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transition: opacity 0.15s, -webkit-transform 0.15s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: opacity 0.15s, transform 0.15s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: opacity 0.15s, transform 0.15s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.15s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition-delay: 0, 0;
    -webkit-transform: scale(0) translate(-50%, -50%);
    -ms-transform: scale(0) translate(-50%, -50%);
    transform: scale(0) translate(-50%, -50%);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    background: #60cd18; }
.radio input:checked ~ .control-indicator:after {
  transition: opacity 0.15s, -webkit-transform 0.15s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 0.15s, transform 0.15s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 0.15s, transform 0.15s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.15s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition-delay: .05s, .05s;
  opacity: 1;
  -webkit-transform: scale(1) translate(-50%, -50%);
  -ms-transform: scale(1) translate(-50%, -50%);
  transform: scale(1) translate(-50%, -50%); }
.radio input:disabled ~ .control-indicator {
  opacity: .3; }
.checkbox .control-indicator {
  border-radius: 4px;
  width: 18px;
  height: 18px;
  top: calc((1em * 1.3 - 20px) / 2);
  left: 0px; }
.checkbox .control-indicator:after {
    -webkit-transform: translate(-25%, -50%);
    -ms-transform: translate(-25%, -50%);
    transform: translate(-25%, -50%);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MDAgMzg2LjciPjxwYXRoIGQ9Ik0xNDkuNTMsMzg2LjdMOC4yOSwyNTEuOEEyOC4xNSwyOC4xNSwwLDAsMSw0OCwyMTEuOWMwLjI1LDAuMjUuNSwwLjUxLDAuNzUsMC43N2w5OCw5MC4yOSwzMDMuNTktMjkzQTI4LjE2LDI4LjE2LDAsMSwxLDQ5My4zLDQ2LjM5WiIgZmlsbD0iIzYwY2QxOCIvPjwvc3ZnPg==');
    background-repeat: no-repeat; }
.checkbox input:checked ~ .control-indicator:after {
  opacity: 1;
  -webkit-transform: translate(-25%, -50%);
  -ms-transform: translate(-25%, -50%);
  transform: translate(-25%, -50%); }
.checkbox input:disabled ~ .control-indicator {
  opacity: .3; }
.form-inline .form-group {
  display: inline-block;
  vertical-align: middle; }
.form-inline .form-control {
  display: inline-block;
  width: auto;
  vertical-align: middle; }
.form-inline .select {
  display: inline-block;
  vertical-align: middle; }
.form-inline .form-control-static {
  display: inline-block;
  vertical-align: middle; }
.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
.input-group .form-control {
    float: left;
    width: 100%;
    margin-bottom: 0; }
.input-group a {
    color: #60cd18; }
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell; }
.input-group-addon,
.input-group-btn {
  vertical-align: middle;
  white-space: nowrap;
  width: 1%; }
.input-group-addon {
  padding: 1px 0px;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font-weight: 500;
  text-align: center;
  border-bottom: 2px solid transparent; }
.input-group-addon input[type="radio"],
  .input-group-addon input[type="checkbox"] {
    margin-top: 0; }
.input-group-addon:first-child {
    padding-right: 5px; }
.input-group-addon:last-child {
    padding-left: 5px; }
.page {
  position: relative;
  overflow: hidden;
  min-height: 100vh; }
.page-body {
  padding-top: 25px;
  padding-bottom: 0;
  min-height: calc(100vh - 130px);
  overflow: hidden; }
@media (min-width: 375px) {
    .page-body {
      padding-top: 35px;
      padding-bottom: 0;
      min-height: calc(100vh - 130px); } }
@media (min-width: 769px) {
    .page-body {
      padding-top: 55px;
      padding-bottom: 0;
      min-height: calc(100vh - 155px); } }
.page-header + .page-body {
    padding-top: 80px; }
@media (min-width: 375px) {
      .page-header + .page-body {
        padding-top: 90px; } }
@media (min-width: 769px) {
      .page-header + .page-body {
        padding-top: 130px; } }
.page-body-title,
.page-body-subtitle {
  margin-bottom: 25px; }
@media (min-width: 375px) {
    .page-body-title,
    .page-body-subtitle {
      margin-bottom: 35px; } }
@media (min-width: 769px) {
    .page-body-title,
    .page-body-subtitle {
      margin-bottom: 55px; } }
.page-body-title + .page-body-subtitle,
.page-body-subtitle + .page-body-subtitle {
  margin-top: calc(-25px + 0.5rem); }
@media (min-width: 375px) {
    .page-body-title + .page-body-subtitle,
    .page-body-subtitle + .page-body-subtitle {
      margin-top: calc(-35px + 0.5rem); } }
@media (min-width: 769px) {
    .page-body-title + .page-body-subtitle,
    .page-body-subtitle + .page-body-subtitle {
      margin-top: calc(-55px + 0.5rem); } }
.page-body-subtitle-company-logo {
  width: auto;
  height: 30px;
  margin-top: 1rem;
  margin-bottom: 0.5rem; }
@media (min-width: 769px) {
    .page-body-subtitle-company-logo {
      height: 35px; } }
.card {
  padding: 0 15px;
  margin-left: -15px;
  margin-right: -15px;
  background: #fff;
  border-radius: 5px;
  position: relative; }
@media (min-width: 375px) {
    .card {
      margin-left: -20px;
      margin-right: -20px;
      padding: 0 20px; } }
@media (min-width: 769px) {
    .card {
      padding: 0 35px;
      margin-left: -35px;
      margin-right: -35px; } }
.card-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 50px;
  padding: 0 15px;
  z-index: 1; }
@media (min-width: 375px) {
    .card-header {
      height: 50px;
      line-height: 50px;
      padding: 0 20px; } }
@media (min-width: 769px) {
    .card-header {
      height: 75px;
      line-height: 75px;
      padding: 0 35px; } }
.card-header .card-header-inner {
    border-bottom: 1px solid rgba(51, 57, 64, 0.2);
    position: relative; }
.card-header .card-header-title {
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: inherit;
    margin-bottom: 0;
    padding-right: 23px; }
@media (min-width: 769px) {
      .card-header .card-header-title {
        padding-right: 0; } }
.card-header .card-header-help {
    display: inline-block;
    vertical-align: middle;
    padding: 5px;
    position: absolute;
    right: -5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    cursor: pointer; }
.card-header .card-header-help .icon {
      display: block;
      width: 18px;
      height: 18px; }
@media (min-width: 769px) {
        .card-header .card-header-help .icon {
          width: 24px;
          height: 24px; } }
@media (min-width: 769px) {
      .card-header .card-header-help {
        position: static;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        margin-left: 7px; } }
.card-header .card-header-buttons {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 1rem;
    line-height: 32.4px; }
@media (min-width: 769px) {
      .card-header .card-header-buttons {
        line-height: 45.6px; } }
.card-body {
  position: relative;
  padding-top: 15px;
  padding-bottom: calc(15px - 1rem); }
@media (min-width: 375px) {
    .card-body {
      padding-top: 20px;
      padding-bottom: calc(20px - 1rem); } }
@media (min-width: 769px) {
    .card-body {
      padding-top: 35px;
      padding-bottom: calc(35px - 1rem);
      max-height: none;
      height: auto; } }
.card-header ~ .card-body {
    padding-top: 65px; }
@media (min-width: 375px) {
      .card-header ~ .card-body {
        padding-top: 70px; } }
@media (min-width: 769px) {
      .card-header ~ .card-body {
        padding-top: 110px; } }
.card-company-logo {
  margin-bottom: 1rem;
  width: auto;
  height: 30px; }
@media (min-width: 769px) {
    .card-company-logo {
      height: 35px; } }
.range {
  margin-bottom: 0.75rem;
  position: relative; }
.range input[type=range] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    width: 100%;
    height: 22px;
    cursor: pointer;
    display: block; }
.range input[type=range]:focus {
      outline: none; }
.range input[type=range][disabled] {
      opacity: .3;
      cursor: default; }
.range .rangeslider {
    position: relative;
    height: 22px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
.range .rangeslider:before {
    box-sizing: border-box;
    width: 100%;
    height: 4px;
    background: #e6e6e6;
    border-radius: 100px;
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
.range input::-webkit-slider-runnable-track {
    box-sizing: border-box;
    width: 100%;
    height: 4px;
    background: #e6e6e6;
    border-radius: 100px;
    margin: 11px 0; }
.range input::-moz-range-track {
    box-sizing: border-box;
    width: 100%;
    height: 4px;
    background: #e6e6e6;
    border-radius: 100px;
    margin: 11px 0; }
.range input::-ms-track {
    box-sizing: border-box;
    width: 100%;
    height: 4px;
    background: #e6e6e6;
    border-radius: 100px;
    color: transparent;
    padding: 11px 0;
    background: transparent;
    border-color: transparent; }
.range input::-ms-fill-lower,
  .range input::-ms-fill-upper {
    box-sizing: border-box;
    width: 100%;
    height: 4px;
    background: #e6e6e6;
    border-radius: 100px; }
.range input::-ms-fill-lower {
    background: #60cd18; }
.range .rangeslider-fill-lower {
    background-color: #60cd18;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 4px;
    will-change: width; }
.range input::-webkit-slider-thumb {
    box-sizing: border-box;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.5);
    border: 6px solid #fff;
    height: 24px;
    width: 24px;
    border-radius: 100px;
    background: #333940;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 2px; }
.range input::-moz-range-thumb {
    box-sizing: border-box;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.5);
    border: 6px solid #fff;
    height: 24px;
    width: 24px;
    border-radius: 100px;
    background: #333940;
    cursor: pointer; }
.range input::-ms-thumb {
    box-sizing: border-box;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.5);
    border: 6px solid #fff;
    height: 24px;
    width: 24px;
    border-radius: 100px;
    background: #333940;
    cursor: pointer; }
.range .rangeslider-thumb {
    box-sizing: border-box;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.5);
    border: 6px solid #fff;
    height: 24px;
    width: 24px;
    border-radius: 100px;
    background: #333940;
    cursor: pointer;
    position: absolute;
    -ms-touch-action: pan-x;
    touch-action: pan-x;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    will-change: left; }
.range .range-output {
    position: absolute;
    left: 6px;
    top: 6px;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    transition: -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
.range .range-output .output-primary {
      display: block;
      position: absolute;
      height: 60px;
      line-height: 60px;
      min-width: 60px;
      padding: 0 20px;
      top: -26px;
      -webkit-transform: translate(-50%, -100%);
      -ms-transform: translate(-50%, -100%);
      transform: translate(-50%, -100%);
      background: #383c42;
      color: #fff;
      border-radius: 100px;
      white-space: nowrap;
      font-weight: 500;
      font-size: 1.2em;
      text-align: center; }
.range .range-output .output-primary:before {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 50%;
        border: 10px solid #383c42;
        border-bottom: none;
        border-left-color: transparent;
        border-right-color: transparent;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%); }
.range .range-output .output-secondary {
      display: block;
      position: absolute;
      height: 20px;
      line-height: 20px;
      min-width: 60px;
      top: -110px;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      white-space: nowrap;
      font-size: 0.8em;
      text-align: center; }
.input-group .range {
    margin-bottom: 0; }
.range .range-label {
    position: absolute;
    top: 0;
    font-size: 80%;
    line-height: 22px;
    height: 100%;
    padding: 0;
    font-weight: 300; }
.range .range-label .range-label-inner {
      display: inline-block;
      -webkit-transform: translateY(-150%);
      -ms-transform: translateY(-150%);
      transform: translateY(-150%);
      line-height: 1; }
.range .range-label.range-label-min {
      left: 0; }
.range .range-label.range-label-max {
      right: 0; }
.range-reset {
  font-weight: 500; }
.input-group .range:only-child {
  width: 100%; }
.input-group .range-addon {
  position: relative;
  font-size: 80%;
  line-height: 22px;
  border-bottom: none;
  padding: 0;
  font-weight: 300; }
.input-group .range-addon .range-addon-label {
    display: inline-block;
    -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
    line-height: 1; }
.input-group .range-addon:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 4px;
    background: #333940;
    border-radius: 100px; }
.input-group .range-addon:first-child {
    border-right: 1px solid #333940; }
.input-group .range-addon:first-child:after {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0; }
.input-group .range-addon:last-child {
    border-left: 1px solid #333940; }
.input-group .range-addon:last-child:after {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0; }
.input-group .range-addon ~ .range .rangeslider-fill-lower {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
.select {
  position: relative;
  display: block; }
.select select {
    position: absolute;
    opacity: 0;
    z-index: -1;
    width: 0; }
.select .form-control {
    padding-right: 20px; }
.select .form-control.disabled {
      color: #c3c4c6; }
@media (min-width: 769px) {
      .select .form-control {
        padding-right: 30px; } }
.select .form-control-options {
    border-radius: 2px;
    background: #fff;
    position: absolute;
    z-index: 1;
    top: -10px;
    left: -99999px;
    width: calc(100% + 10px * 2);
    box-shadow: 0 1px 5px #60cd18;
    opacity: 1;
    min-width: 200px; }
.select .form-control-options.in {
      left: -10px; }
.select .form-control-option {
    padding: 10px 10px;
    border-top: 1px solid rgba(96, 205, 24, 0.25);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
.select .form-control-option:first-child {
      border-top: transparent; }
.select .form-control-option.selected {
      font-weight: 500;
      color: #60cd18; }
.select .form-control-option.disabled {
      color: #c3c4c6; }
.select .control-indicator {
    position: absolute;
    top: 50%;
    right: 0;
    height: 100%;
    width: 1px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #60cd18;
    pointer-events: none; }
.select .control-indicator .icon {
      position: absolute;
      top: 50%;
      right: 0;
      -webkit-transform: translateY(-50%) translateY(-65%);
      -ms-transform: translateY(-50%) translateY(-65%);
      transform: translateY(-50%) translateY(-65%);
      -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
      transform-origin: center center;
      width: 11px;
      height: 6px; }
.select .control-indicator .icon:first-child {
        -webkit-transform: translateY(-50%) translateY(65%) rotate(-180deg);
        -ms-transform: translateY(-50%) translateY(65%) rotate(-180deg);
        transform: translateY(-50%) translateY(65%) rotate(-180deg);
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center; }
@media (min-width: 769px) {
        .select .control-indicator .icon {
          width: 16px;
          height: 10px; } }
.recommendation-chart {
  margin-bottom: 2rem; }
.recommendation-chart .recommendation-chart-header,
  .recommendation-chart .recommendation-chart-body,
  .recommendation-chart .recommendation-chart-footer {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto; }
.recommendation-chart .recommendation-chart-header {
    font-size: 80%; }
.recommendation-chart .recommendation-chart-body {
    border-bottom: 6px solid rgba(51, 57, 64, 0.2);
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 96px; }
@media (min-width: 375px) {
      .recommendation-chart .recommendation-chart-body {
        height: 116px; } }
@media (min-width: 769px) {
      .recommendation-chart .recommendation-chart-body {
        height: 156px; } }
.recommendation-chart .recommendation-chart-footer {
    padding: 10px 0;
    border-bottom: 1px solid rgba(51, 57, 64, 0.2);
    font-size: 80%; }
.recommendation-chart-plot {
  background-color: #7f8183;
  transition: 0.5s height, background-color 0.125s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block; }
.recommendation-chart-plot-zoom {
  float: right;
  padding: 6px;
  display: block;
  color: #fff;
  -webkit-transform: translate(2px, -2px);
  -ms-transform: translate(2px, -2px);
  transform: translate(2px, -2px); }
@media (min-width: 375px) {
    .recommendation-chart-plot-zoom {
      padding: 10px;
      -webkit-transform: translate(2px, -2px);
      -ms-transform: translate(2px, -2px);
      transform: translate(2px, -2px); } }
@media (min-width: 769px) {
    .recommendation-chart-plot-zoom {
      padding: 10px;
      -webkit-transform: translate(2.5px, -2.5px);
      -ms-transform: translate(2.5px, -2.5px);
      transform: translate(2.5px, -2.5px); } }
.recommendation-chart-plot-zoom .icon {
    display: block;
    transition: -webkit-transform 0.45s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: transform 0.45s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: transform 0.45s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.45s cubic-bezier(0.075, 0.82, 0.165, 1);
    -webkit-transform-origin: 40% 40%;
    -ms-transform-origin: 40% 40%;
    transform-origin: 40% 40%;
    width: 20px;
    height: 20px;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8); }
@media (min-width: 375px) {
      .recommendation-chart-plot-zoom .icon {
        width: 20px;
        height: 20px; } }
@media (min-width: 769px) {
      .recommendation-chart-plot-zoom .icon {
        width: 25px;
        height: 25px; } }
.recommendation-chart-positive-height .recommendation-chart-plot-recommendation {
  height: 62px; }
.no-touch .recommendation-chart-plot-current:hover .recommendation-chart-plot-zoom .icon {
    -webkit-transform: scale(1) rotate(90deg);
    -ms-transform: scale(1) rotate(90deg);
    transform: scale(1) rotate(90deg); }
.no-touch .recommendation-chart-plot-current:active .recommendation-chart-plot-zoom .icon {
    -webkit-transform: scale(0.8) rotate(90deg);
    -ms-transform: scale(0.8) rotate(90deg);
    transform: scale(0.8) rotate(90deg); }
/**
  Perfect
*/
.recommendation-chart-perfect-height .recommendation-chart-plot-current {
  height: 90px;
  position: relative; }
.recommendation-chart-perfect-color .recommendation-chart-plot-current {
  background-color: #60cd18; }
.no-touch .recommendation-chart-perfect-color .recommendation-chart-plot-current:active,
  .touch .recommendation-chart-perfect-color .recommendation-chart-plot-current:active {
    background-color: #5cc417; }
/**
  Positive
*/
.recommendation-chart-positive-height .recommendation-chart-plot-current {
  height: 90px; }
.recommendation-chart-plot-current {
  min-height: 220px; }
/**
  Neutral
*/
.recommendation-chart-neutral-height .recommendation-chart-plot-current {
  height: 75px; }
.recommendation-chart-neutral-color .recommendation-chart-plot-current {
  background-color: #ffb400; }
.no-touch .recommendation-chart-neutral-color .recommendation-chart-plot-current:hover {
    background-color: #ffbd1f; }
.no-touch .recommendation-chart-neutral-color .recommendation-chart-plot-current:active,
  .touch .recommendation-chart-neutral-color .recommendation-chart-plot-current:active {
    background-color: #f5ad00; }
/**
  Negative
*/
.recommendation-chart-negative-height .recommendation-chart-plot-current {
  height: 65px; }
.recommendation-chart-negative-color .recommendation-chart-plot-current {
  background-color: #f05a00; }
.no-touch .recommendation-chart-negative-color .recommendation-chart-plot-current:hover {
    background-color: #ff6305; }
.no-touch .recommendation-chart-negative-color .recommendation-chart-plot-current:active,
  .touch .recommendation-chart-negative-color .recommendation-chart-plot-current:active {
    background-color: #e65600; }
@media (min-width: 375px) {
  .recommendation-chart-perfect-height .recommendation-chart-plot-current {
    height: 110px; }
  .recommendation-chart-positive-height .recommendation-chart-plot-current {
    height: 110px; }
  .recommendation-chart-positive-height .recommendation-chart-plot-recommendation {
    height: 74px; }
  .recommendation-chart-neutral-height .recommendation-chart-plot-current {
    height: 95px; }
  .recommendation-chart-negative-height .recommendation-chart-plot-current {
    height: 85px; } }
@media (min-width: 769px) {
  .recommendation-chart-perfect-height .recommendation-chart-plot-current {
    height: 150px; }
  .recommendation-chart-positive-height .recommendation-chart-plot-current {
    height: 150px; }
  .recommendation-chart-positive-height .recommendation-chart-plot-recommendation {
    height: 110px; }
  .recommendation-chart-neutral-height .recommendation-chart-plot-current {
    height: 135px; }
  .recommendation-chart-negative-height .recommendation-chart-plot-current {
    height: 125px; } }
.recommendation-chart-plot-recommendation {
  height: 90px; }
.recommendation-chart-plot-recommendation:before {
    content: "";
    border-top: 1px dashed rgba(77, 78, 79, 0.5);
    position: absolute;
    left: 10px;
    width: calc(100% - 20px);
    pointer-events: none; }
@media (min-width: 375px) {
    .recommendation-chart-plot-recommendation {
      height: 110px; } }
@media (min-width: 769px) {
    .recommendation-chart-plot-recommendation {
      height: 150px; } }
.recommendation-chart-data-label {
  font-weight: 500;
  position: absolute;
  bottom: 6px;
  margin-left: 7px;
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
  color: #fff; }
@media (min-width: 375px) {
    .recommendation-chart-data-label {
      bottom: 8px;
      margin-left: 9px; } }
@media (min-width: 769px) {
    .recommendation-chart-data-label {
      bottom: 12px;
      margin-left: 13px; } }
.recommendation-chart-perfect-color .recommendation-chart-data-label {
    text-shadow: 0 -1px 0px #5cc417; }
.recommendation-chart-positive-color .recommendation-chart-data-label {
    text-shadow: 0 -1px 0px #5cc417; }
.recommendation-chart-neutral-color .recommendation-chart-data-label {
    text-shadow: 0 -1px 0px #f5ad00; }
.recommendation-chart-negative-color .recommendation-chart-data-label {
    text-shadow: 0 -1px 0px #e65600; }
.recommendation-chart-plot-recommendation .recommendation-chart-data-label {
    text-shadow: 0 -1px 0px #7a7c7e; }
.recommendation-chart-data-label > * {
    white-space: nowrap;
    margin-bottom: 0;
    font-weight: inherit;
    line-height: 1; }
.recommendation-chart-data-label .h1 {
    font-size: 21.6px; }
@media (min-width: 375px) {
      .recommendation-chart-data-label .h1 {
        font-size: 24.3px; } }
@media (min-width: 769px) {
      .recommendation-chart-data-label .h1 {
        font-size: 38px; } }
.recommendation-chart-plot-name {
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
  padding: 0 10px; }
.main-header {
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  width: 129.13207px;
  margin-left: -2px;
  height: 55px;
  z-index: 3;
  transition: -webkit-transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0s; }
@media (min-width: 375px) {
    .main-header {
      width: 129.13207px;
      height: 55px; } }
@media (min-width: 769px) {
    .main-header {
      width: 171.72555px;
      height: 75px; } }
.transition-container .main-header {
    position: absolute;
}
.main-nav.open + main .main-header {
    -webkit-transform: translateX(100vw) translateX(-127.13207px);
    -ms-transform: translateX(100vw) translateX(-127.13207px);
    transform: translateX(100vw) translateX(-127.13207px);
    transition-delay: .0s;
    transition-duration: 0.5s; }
@media (min-width: 375px) {
      .main-nav.open + main .main-header {
        -webkit-transform: translateX(375px) translateX(-127.13207px);
        -ms-transform: translateX(375px) translateX(-127.13207px);
        transform: translateX(375px) translateX(-127.13207px); } }
@media (min-width: 769px) {
      .main-nav.open + main .main-header {
        -webkit-transform: translateX(480px) translateX(-169.72555px);
        -ms-transform: translateX(480px) translateX(-169.72555px);
        transform: translateX(480px) translateX(-169.72555px); } }
.main-nav.open + main .main-header .burger span:before {
      -webkit-transform: translate(0px, 7px) rotate(-45deg);
      -ms-transform: translate(0px, 7px) rotate(-45deg);
      transform: translate(0px, 7px) rotate(-45deg); }
.main-nav.open + main .main-header .burger span:after {
      -webkit-transform: translate(0px, -7px) rotate(45deg);
      -ms-transform: translate(0px, -7px) rotate(45deg);
      transform: translate(0px, -7px) rotate(45deg); }
.main-nav.open + main .main-header .burger span {
      background: transparent; }
.main-header .seb-logo {
    display: block;
    float: left;
    text-align: center;
    background-color: #60cd18; }
.main-header .seb-logo .icon {
      width: 62.13207px;
      height: 55px;
      display: block; }
@media (min-width: 375px) {
        .main-header .seb-logo .icon {
          width: 62.13207px;
          height: 55px; } }
@media (min-width: 769px) {
        .main-header .seb-logo .icon {
          width: 84.72555px;
          height: 75px; } }
.main-header .main-nav-toggle {
    float: left;
    background-color: #303030;
    width: 57px;
    height: 55px;
    position: relative;
    cursor: pointer; }
@media (min-width: 375px) {
      .main-header .main-nav-toggle {
        width: 57px;
        height: 55px; } }
@media (min-width: 769px) {
      .main-header .main-nav-toggle {
        width: 77px;
        height: 75px; } }
.main-header .main-nav-toggle .burger {
      display: block;
      width: 20px;
      height: 17px;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
.main-header .main-nav-toggle .burger span,
      .main-header .main-nav-toggle .burger span:before,
      .main-header .main-nav-toggle .burger span:after {
        display: block;
        width: 100%;
        height: 3px;
        background: #fff;
        transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        border-radius: 100px; }
.main-header .main-nav-toggle .burger span {
        position: relative;
        margin: 7px 0 0; }
.main-header .main-nav-toggle .burger span:before,
      .main-header .main-nav-toggle .burger span:after {
        position: absolute;
        content: ""; }
.main-header .main-nav-toggle .burger span:before {
        top: -7px; }
.main-header .main-nav-toggle .burger span:after {
        top: 7px; }
.main-nav {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #303030;
  color: #fff;
  font-weight: 400;
  transition: -webkit-transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  max-width: calc(100% - 127.13207px + 55px);
  z-index: 3; }
.main-nav.open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
@media (min-width: 375px) {
    .main-nav {
      max-width: calc(375px - 127.13207px + 55px); } }
@media (min-width: 769px) {
    .main-nav {
      max-width: calc(480px - 169.72555px + 75px); } }
.main-nav-header {
  display: table;
  height: 80px;
  padding: 0 55px 0 20px; }
@media (min-width: 375px) {
    .main-nav-header {
      height: 80px;
      padding-right: 55px; } }
@media (min-width: 769px) {
    .main-nav-header {
      height: 125px;
      padding: 0 30px;
      padding-right: 75px; } }
.main-nav-header h1 {
    font-size: 17px;
    margin-bottom: 0; }
@media (min-width: 769px) {
      .main-nav-header h1 {
        font-size: 22px; } }
.main-nav-header .main-nav-header-inner {
    display: table-cell;
    vertical-align: middle; }
.main-nav-header .greeting {
    margin-bottom: 0;
    font-size: 18px; }
@media (min-width: 769px) {
      .main-nav-header .greeting {
        font-size: 18px; } }
.main-nav-header .greeting a {
      white-space: nowrap; }
.main-nav-body {
  height: calc(100vh - 80px);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }
@media (min-width: 769px) {
    .main-nav-body {
      height: calc(100vh - 125px); } }
.main-nav-footer {
  padding: 20px 20px 70px; }
.main-nav-footer p:nth-last-child(2) {
    margin-bottom: 0; }
@media (min-width: 769px) {
    .main-nav-footer {
      padding: 25px 30px; } }
.main-nav-menu-list li {
  border-top: 1px solid #404040;
  border-bottom: 1px solid #404040;
  transition: opacity 0.5s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 0.5s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 0.5s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
  -webkit-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transform: translateX(-20px); }
.main-nav-menu-list li.active {
    background-color: rgba(255, 255, 255, 0.05);
    position: relative; }
.main-nav-menu-list li.active:before {
      content: "";
      position: absolute;
      width: 3px;
      height: calc(100% + 2px);
      left: 0;
      top: -1px;
      background-color: #60cd18; }
.main-nav-menu-list li.disabled * {
    opacity: .25; }
.main-nav-menu-list li:nth-child(1) {
    transition-delay: 0.2s; }
.main-nav-menu-list li:nth-child(2) {
    transition-delay: 0.3s; }
.main-nav-menu-list li:nth-child(3) {
    transition-delay: 0.4s; }
.main-nav-menu-list li:nth-child(4) {
    transition-delay: 0.5s; }
.main-nav-menu-list li:nth-child(5) {
    transition-delay: 0.6s; }
.main-nav-menu-list li:nth-child(6) {
    transition-delay: 0.7s; }
.main-nav-menu-list li:nth-child(7) {
    transition-delay: 0.8s; }
.open .main-nav-menu-list li {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
.main-nav-menu-list li + li {
    margin-top: -1px; }
.main-nav-menu-list li .menu-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 12px 20px; }
@media (min-width: 769px) {
      .main-nav-menu-list li .menu-item-link {
        padding: 20px 30px; } }
.main-nav-menu-list .menu-item-definition {
  display: block;
  font-size: 12px;
  font-weight: 300; }
@media (min-width: 769px) {
    .main-nav-menu-list .menu-item-definition {
      font-size: 14px; } }
.page-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55px;
  background-color: #f2f2f2;
  box-shadow: 0 1px 0 0 #e6e6e6; }
@media (min-width: 769px) {
    .page-header {
      height: 75px;
      line-height: 75px; } }
.page-header .page-header-title {
    padding-left: 142.13207px;
    line-height: 55px;
    margin: 0;
    font-weight: 500;
    white-space: nowrap; }
@media (min-width: 769px) {
      .page-header .page-header-title {
        padding-left: 0;
        text-align: center;
        line-height: 75px; } }
.page-footer {
  background: #e6e6e6;
  text-align: center;
  width: 100%;
  height: 130px;
  bottom: 0;
  overflow: hidden; }
@media (min-width: 769px) {
    .page-footer {
      height: 155px; } }
.page-footer-header {
  height: 90px;
  display: table; }
@media (min-width: 769px) {
    .page-footer-header {
      height: 115px; } }
.page-footer-header .page-footer-header-inner {
    display: table-cell;
    vertical-align: middle; }
.page-footer-header .page-footer-header-heading {
    font-weight: 500;
    margin-bottom: 0; }
.page-footer-header .nowrap {
    display: inline-block;
    white-space: nowrap; }
.page-footer-footer {
  background-color: #fff;
  height: 40px;
  line-height: 40px; }
@media (min-width: 769px) {
    .page-footer-footer {
      height: 40px; } }
.slidein {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  padding-top: 0;
  padding-bottom: 0;
  background: #fff;
  transition: 0.5s transform cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 4;
  box-shadow: 0 0 50px rgba(34, 34, 34, 0.2); }
.slidein.out {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%); }
.slidein-header {
  text-align: center;
  height: 55px;
  border-bottom: 1px solid #e6e6e6;
  background: #fff;
  position: relative;
  z-index: 3; }
@media (min-width: 769px) {
    .slidein-header {
      height: 75px;
      line-height: 75px; } }
.slidein-header .slidein-header-title,
  .slidein-header .slidein-header-back {
    line-height: 55px;
    margin: 0; }
@media (min-width: 769px) {
      .slidein-header .slidein-header-title,
      .slidein-header .slidein-header-back {
        line-height: 75px; } }
.slidein-header .slidein-header-title {
    font-weight: 500; }
.slidein-header .slidein-header-back {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px; }
@media (min-width: 769px) {
      .slidein-header .slidein-header-back {
        padding-left: 40px; } }
.slidein-header .slidein-header-back .icon {
      color: #333940;
      width: 21px;
      height: 19px; }
.slidein-docking-header {
  position: fixed;
  background-color: #fff;
  width: 100%;
  z-index: 2;
  right: -9999px;
  top: 55px;
  transition: .2s transform; }
.touch .slidein-docking-header {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px); }
.slidein-docking-header.docked {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    right: 0; }
.slidein-docking-header.docked:after {
      opacity: 1; }
@media (min-width: 769px) {
    .slidein-docking-header {
      top: 75px; } }
.slidein-docking-header:after {
    position: absolute;
    content: "";
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity .2s;
    z-index: -1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
.slidein-body {
  height: calc(100vh - 55px);
  overflow: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }
@media (min-width: 769px) {
    .slidein-body {
      height: calc(100vh - 75px); } }
.slidein-body-inner {
  min-height: calc(100% - 130px);
  overflow: hidden;
  padding-top: 25px;
  position: relative; }
@media (min-width: 375px) {
    .slidein-body-inner {
      padding-top: 35px; } }
@media (min-width: 769px) {
    .slidein-body-inner {
      min-height: calc(100% - 155px);
      padding-top: 2rem; } }
.overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  padding-top: 0;
  padding-bottom: 0;
  background: #fff;
  transition: 0.5s transform cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 4;
  box-shadow: 0 0 50px rgba(34, 34, 34, 0.2); }
.overlay.out {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%); }
.overlay .overlay-close {
    display: block;
    position: absolute;
    top: 12.5px;
    right: 12.5px; }
@media (min-width: 769px) {
      .overlay .overlay-close {
        top: 19.5px;
        right: 19.5px; } }
.overlay.overlay-dark {
    background-color: #e6e6e6; }
.overlay-body {
  height: 100vh;
  overflow: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }
@media (min-width: 769px) {
    .overlay-body {
      height: 100vh; } }
.overlay-body-inner {
  overflow: hidden;
  padding-top: 25px;
  position: relative; }
@media (min-width: 375px) {
    .overlay-body-inner {
      padding-top: 35px; } }
@media (min-width: 769px) {
    .overlay-body-inner {
      padding-top: 55px; } }
.overlay-email-preview {
  background-color: #f8f8f8;
  border: 1px solid #a6a6a6;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 1rem; }
.overlay-email-preview > *:last-child {
    margin-bottom: 0; }
.overlay-email-me-a-copy {
  margin-bottom: 1rem; }
.overlay-email-me-a-copy .form-inline {
    padding-left: 30px; }
.overlay-email-me-a-copy .checkbox {
    margin-bottom: 0; }
.overlay-email-me-a-copy a {
    margin-left: 10px; }
.overlay-fixed-buttons {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 25px; }
@media (min-width: 375px) {
    .overlay-fixed-buttons {
      padding-top: 35px; } }
@media (min-width: 769px) {
    .overlay-fixed-buttons {
      padding-top: 55px; } }
.health-declaration-question {
  margin-bottom: 2rem; }
.health-declaration-question .h3 {
    margin-top: 2rem; }
.health-declaration-question .form-group {
    margin-bottom: -0.75rem; }
.health-declaration-question hr + .form-group {
    margin-top: 2rem; }
.health-declaration-question-heading {
  font-weight: 500; }
.health-declaration-question-banner {
  background-color: #f2f2f2;
  padding-top: 2rem;
  padding-bottom: 2rem; }
.health-declaration-question-banner .h3 {
    font-weight: 500; }
.welcome .page-body {
  padding-top: 0;
  padding-bottom: 0; }
.welcome-article {
  display: table-cell;
  vertical-align: middle;
  position: relative; }
.welcome-article .welcome-article-footer > :last-child {
      margin-bottom: 0; }
/**
  General layout of the articles
  Stuff that affects general layout should be put here
*/
.welcome-article-wrapper {
  display: table;
  height: 100vh;
  width: 100%;
  position: relative; }
.welcome-article-wrapper > .welcome-article-second-wrapper {
    display: table-cell;
    vertical-align: middle; }
.welcome-article-wrapper > .welcome-article-second-wrapper > .welcome-article-third-wrapper {
      padding-top: 45px;
      padding-bottom: 45px;
      display: table;
      height: 100vh;
      max-height: 850px;
      max-width: 810px;
      width: 100%; }
@media (min-width: 769px) {
        .welcome-article-wrapper > .welcome-article-second-wrapper > .welcome-article-third-wrapper {
          padding-top: 135px;
          padding-bottom: 135px; } }
.welcome-article-wrapper > .welcome-article-second-wrapper > .welcome-article-third-wrapper > .welcome-article {
        display: table-cell;
        position: relative;
        padding-bottom: 58px; }
@media (min-width: 769px) {
          .welcome-article-wrapper > .welcome-article-second-wrapper > .welcome-article-third-wrapper > .welcome-article {
            padding-bottom: 58px; } }
.situation .page-body {
  padding-top: 0;
  padding-bottom: 0; }
/**
  General layout of the articles
  Stuff that affects general layout should be put here
*/
.situation-article-wrapper {
  display: table;
  height: 100vh;
  width: 100%;
  position: relative; }
.situation-article-wrapper.situation-article-wrapper-odd {
    background-color: #fff; }
.situation-article-wrapper > .situation-article-second-wrapper {
    display: table-cell;
    vertical-align: middle; }
.situation-article-wrapper > .situation-article-second-wrapper > .situation-article-third-wrapper {
      padding-top: 25px;
      padding-bottom: 45px;
      display: table;
      height: 50vh;
      max-height: 850px;
      max-width: 810px;
      width: 100%; }
@media screen and (max-width: 768px) and (orientation: landscape) {
  .situation-article-wrapper > .situation-article-second-wrapper > .situation-article-third-wrapper {
    padding-top: 75px;
  }
}
@media (min-width: 769px) {
        .situation-article-wrapper > .situation-article-second-wrapper > .situation-article-third-wrapper {
          padding-top: 135px;
          padding-bottom: 135px; } }
.situation-article-wrapper > .situation-article-second-wrapper > .situation-article-third-wrapper > .previous-article {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 25%;
        width: 50%;
        display: block;
        text-align: center;
        padding: 20px; }
.situation-article-wrapper > .situation-article-second-wrapper > .situation-article-third-wrapper > .previous-article .icon {
          width: 11px;
          height: 6px; }
@media (min-width: 769px) {
            .situation-article-wrapper > .situation-article-second-wrapper > .situation-article-third-wrapper > .previous-article .icon {
              width: 16px;
              height: 10px; } }
.situation-article-wrapper > .situation-article-second-wrapper > .situation-article-third-wrapper > .situation-article {
        display: table-cell;
        position: relative;
        padding-bottom: calc(58px + (1em * 1.3 + 2px * 2) + 1rem); }
@media (min-width: 769px) {
          .situation-article-wrapper > .situation-article-second-wrapper > .situation-article-third-wrapper > .situation-article {
            padding-bottom: calc(58px + (1em * 1.3 + 2px * 2) + 1rem); } }
.situation-article .situation-article-header {
  margin-bottom: 50px; }
.situation-article .situation-article-header > :last-child {
    margin-bottom: 0; }
.situation-article .situation-article-body {
  margin-bottom: 1rem; }
/* ---><--- */
.situation-article .situation-article-footer > :last-child {
    margin-bottom: 0; }
.situation-children-form {
  overflow: hidden; }
.situation-children-form.editing .form-group {
    -webkit-transform: translateX(32px);
    -ms-transform: translateX(32px);
    transform: translateX(32px); }
.situation-children-form.editing .form-group .delete-child {
      -webkit-transform: rotate(0) translateY(-50%);
      -ms-transform: rotate(0) translateY(-50%);
      transform: rotate(0) translateY(-50%);
      opacity: 1; }
.situation-children-form .form-group {
    display: block;
    position: relative;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    transition: 0.5s transform cubic-bezier(0.075, 0.82, 0.165, 1); }
.situation-children-form .form-group .form-control-label {
      padding-left: 5px;
      padding-right: 5px; }
.situation-children-form .form-group .form-control:first-of-type {
      width: 1000px;
      max-width: 90px;
      transition: 0.5s max-width cubic-bezier(0.075, 0.82, 0.165, 1);
      will-change: max-width; }
@media (min-width: 375px) {
        .situation-children-form .form-group .form-control:first-of-type {
          max-width: 124px; } }
@media (min-width: 769px) {
        .situation-children-form .form-group .form-control:first-of-type {
          max-width: 300px; } }
.situation-children-form .form-group .form-control:last-of-type {
      width: 94px; }
@media (min-width: 769px) {
        .situation-children-form .form-group .form-control:last-of-type {
          width: 121px; } }
.situation-children-form .form-group:nth-child(1) {
      transition-delay: 0.05s; }
.situation-children-form .form-group:nth-child(1) .delete-child {
        transition-delay: 0.05s; }
.situation-children-form .form-group:nth-child(1) .form-control {
        transition-delay: 0.425s; }
.situation-children-form .form-group:nth-child(2) {
      transition-delay: 0.1s; }
.situation-children-form .form-group:nth-child(2) .delete-child {
        transition-delay: 0.1s; }
.situation-children-form .form-group:nth-child(2) .form-control {
        transition-delay: 0.475s; }
.situation-children-form .form-group:nth-child(3) {
      transition-delay: 0.15s; }
.situation-children-form .form-group:nth-child(3) .delete-child {
        transition-delay: 0.15s; }
.situation-children-form .form-group:nth-child(3) .form-control {
        transition-delay: 0.525s; }
.situation-children-form .form-group:nth-child(4) {
      transition-delay: 0.2s; }
.situation-children-form .form-group:nth-child(4) .delete-child {
        transition-delay: 0.2s; }
.situation-children-form .form-group:nth-child(4) .form-control {
        transition-delay: 0.575s; }
.situation-children-form .form-group:nth-child(5) {
      transition-delay: 0.25s; }
.situation-children-form .form-group:nth-child(5) .delete-child {
        transition-delay: 0.25s; }
.situation-children-form .form-group:nth-child(5) .form-control {
        transition-delay: 0.625s; }
.situation-children-form .form-group:nth-child(6) {
      transition-delay: 0.3s; }
.situation-children-form .form-group:nth-child(6) .delete-child {
        transition-delay: 0.3s; }
.situation-children-form .form-group:nth-child(6) .form-control {
        transition-delay: 0.675s; }
.situation-children-form .form-group:nth-child(7) {
      transition-delay: 0.35s; }
.situation-children-form .form-group:nth-child(7) .delete-child {
        transition-delay: 0.35s; }
.situation-children-form .form-group:nth-child(7) .form-control {
        transition-delay: 0.725s; }
.situation-children-form .form-group .delete-child {
      position: absolute;
      display: block;
      left: -31px;
      top: 50%;
      width: 22px;
      height: 22px;
      transition: 0.5s transform cubic-bezier(0.175, 0.885, 0.32, 1.275), 0.3s opacity cubic-bezier(0.075, 0.82, 0.165, 1);
      -webkit-transform: rotate(-90deg) translateY(-50%);
      -ms-transform: rotate(-90deg) translateY(-50%);
      transform: rotate(-90deg) translateY(-50%);
      -webkit-transform-origin: center top;
      -ms-transform-origin: center top;
      transform-origin: center top;
      background: #333940;
      color: #fff;
      text-align: center;
      border-radius: 50%;
      cursor: pointer;
      opacity: 0; }
.situation-children-form .form-group .delete-child .icon {
        height: 10px;
        width: 10px;
        margin: 6px;
        display: block; }
.situation-breadcrumbs {
  position: fixed;
  right: 10px;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
.situation-breadcrumbs.in .situation-breadcrumb {
    -webkit-transform: translateX(0) scale(1);
    -ms-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
    opacity: 1; }
@media (min-width: 769px) {
    .situation-breadcrumbs {
      right: 20px; } }
.situation-breadcrumb {
  display: block;
  width: 6px;
  height: 6px;
  background-color: #60cd18;
  text-indent: -9999px;
  border-radius: 50%;
  -webkit-transform: translateX(5px) scale(0.05);
  -ms-transform: translateX(5px) scale(0.05);
  transform: translateX(5px) scale(0.05);
  opacity: 0;
  transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.situation-breadcrumb:nth-child(1) {
    transition-delay: 0.03s; }
.situation-breadcrumb:nth-child(2) {
    transition-delay: 0.06s; }
.situation-breadcrumb:nth-child(3) {
    transition-delay: 0.09s; }
.situation-breadcrumb:nth-child(4) {
    transition-delay: 0.12s; }
.situation-breadcrumb:nth-child(5) {
    transition-delay: 0.15s; }
.situation-breadcrumb:nth-child(6) {
    transition-delay: 0.18s; }
.situation-breadcrumb:nth-child(7) {
    transition-delay: 0.21s; }
.situation-breadcrumb:nth-child(8) {
    transition-delay: 0.24s; }
.situation-breadcrumb:nth-child(9) {
    transition-delay: 0.27s; }
.situation-breadcrumb:nth-child(10) {
    transition-delay: 0.3s; }
.situation-breadcrumb[disabled] {
    background-color: #333940; }
.situation-breadcrumb + .situation-breadcrumb {
    margin-top: 5px; }
.situation-loading {
  position: fixed;
  display: none;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 4;
  background-color: #f2f2f2;
  text-align: center; }
.situation-loading .h1 {
    font-weight: 500; }
.situation-loading .container {
    display: table-cell;
    vertical-align: middle; }
.situation-loading .situation-spinner {
    display: inline-block;
    width: 60px;
    height: 60px;
    margin-bottom: 2rem;
    background-image: url("/images/spinners/spinner.gif");
    background-repeat: no-repeat;
    background-size: 60px 60px; }
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx) {
      .situation-loading .situation-spinner {
        background-image: url("/images/spinners/spinner@2x.gif"); } }
.your-schemes .pensionsinfo-notice {
  color: #f05a00;
  font-style: italic; }
.add-manually-card {
  color: #60cd18; }
.add-manually-card .card-body {
    padding: 0; }
.add-manually-card .btn {
    margin-bottom: 0; }
.scheme-card {
  position: relative; }
.scheme-card.open .scheme-card-toggle-btn .open-label {
    display: none; }
.scheme-card.open .scheme-card-toggle-btn .close-label {
    display: inline; }
.scheme-card.open .scheme-card-toggle-btn .icon {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); }
.scheme-card .scheme-card-body {
    transition: height 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    will-change: height;
    width: 100%;
    height: 0;
    overflow: hidden; }
.scheme-card .scheme-card-body .scheme-card-body-inner {
      overflow: hidden; }
@media (min-width: 375px) {
    .scheme-card .scheme-card-footer {
      margin-bottom: -5px; } }
@media (min-width: 769px) {
    .scheme-card .scheme-card-footer {
      margin-bottom: -10px; } }
.scheme-card .scheme-card-footer hr {
    margin-bottom: 15px; }
@media (min-width: 375px) {
      .scheme-card .scheme-card-footer hr {
        line-height: 32.4px; } }
@media (min-width: 769px) {
      .scheme-card .scheme-card-footer hr {
        margin-bottom: 25px; } }
.scheme-card .scheme-card-toggle-btn {
    color: #60cd18; }
.scheme-card .scheme-card-toggle-btn .open-label {
      display: inline; }
.scheme-card .scheme-card-toggle-btn .close-label {
      display: none; }
.scheme-card .scheme-card-toggle-btn .icon {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: rotate(180deg); }
.scheme-card .scheme-card-header .scheme-card-header-service-links {
    position: absolute;
    right: 0;
    top: 15px; }
@media (min-width: 375px) {
      .scheme-card .scheme-card-header .scheme-card-header-service-links {
        top: 20px; } }
@media (min-width: 769px) {
      .scheme-card .scheme-card-header .scheme-card-header-service-links {
        top: 35px; } }
.scheme-card .scheme-card-header .scheme-card-header-service-links a {
      display: inline-block;
      line-height: 32.4px; }
@media (min-width: 375px) {
        .scheme-card .scheme-card-header .scheme-card-header-service-links a {
          line-height: 32.4px; } }
@media (min-width: 769px) {
        .scheme-card .scheme-card-header .scheme-card-header-service-links a {
          line-height: 45.6px; } }
.scheme-card .scheme-card-header .scheme-card-header-service-links a + a {
        margin-left: 10px; }
.scheme-category-card .scheme-category-smiley {
  position: absolute;
  top: 65px;
  left: 0;
  padding: 0 15px; }
@media (min-width: 375px) {
    .scheme-category-card .scheme-category-smiley {
      top: 65px;
      padding: 0 20px; } }
@media (min-width: 769px) {
    .scheme-category-card .scheme-category-smiley {
      top: 95px;
      padding: 0 35px; } }
.scheme-category-card .scheme-category-smiley .media-left {
    padding-right: 15px; }
.scheme-category-card .scheme-category-smiley .black-label {
    display: block;
    font-weight: 300;
    color: #333940;
    font-size: 80%; }
@media (min-width: 375px) {
      .scheme-category-card .scheme-category-smiley .black-label {
        font-size: inherit; } }
.scheme-category-card-footer {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 40px;
  height: 58px;
  padding: 0 15px; }
@media (min-width: 375px) {
    .scheme-category-card-footer {
      padding-left: 20px;
      padding-right: 20px; } }
@media (min-width: 769px) {
    .scheme-category-card-footer {
      display: none; } }
.scheme-category-card-footer .btn {
    line-height: 58px;
    color: #60cd18;
    margin-bottom: 0; }
.scheme-category-card-footer .btn .icon {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: rotate(180deg); }
.scheme-category-card-body {
  display: table;
  width: 100%;
  height: calc(100vh - 10px * 2);
  max-height: 994px; }
@media (min-width: 375px) {
    .scheme-category-card-body {
      height: calc(100vh - 15px * 2); } }
@media (min-width: 769px) {
    .scheme-category-card-body {
      height: auto; } }
.scheme-category-card-body .card-body-inner {
    display: table-cell;
    vertical-align: middle; }
.scheme-category-smiley ~ .scheme-category-card-body {
    padding-top: 140px; }
@media (min-width: 769px) {
      .scheme-category-smiley ~ .scheme-category-card-body {
        padding-top: 145px; } }
@media (min-width: 769px) {
      .scheme-category-smiley ~ .scheme-category-card-body {
        padding-top: 190px; } }
.scheme-category-card-footer ~ .scheme-category-card-body {
    padding-bottom: 58px; }
@media (min-width: 769px) {
      .scheme-category-card-footer ~ .scheme-category-card-body {
        padding-bottom: calc(35px - 1rem); } }
.scheme-category-smiley {
  margin-bottom: 1rem; }
.scheme-category-smiley.scheme-category-smiley-positive, .scheme-category-smiley.scheme-category-smiley-perfect {
    color: #60cd18; }
.scheme-category-smiley.scheme-category-smiley-negative {
    color: #f05a00; }
.scheme-category-smiley.scheme-category-smiley-neutral {
    color: #ffb400; }
.scheme-category-smiley > .media-left,
  .scheme-category-smiley > .media-body {
    vertical-align: middle; }
.scheme-category-smiley .icon {
    width: 36px;
    height: 36px; }
.scheme-category-smiley .h1,
  .scheme-category-smiley .h2,
  .scheme-category-smiley .h3 {
    margin-bottom: 0;
    display: inline-block;
    font-weight: 500; }
.scheme-category-smiley small {
    font-size: 17.6px; }
.scheme-category-smiley small:last-child {
      display: block;
      font-weight: 300;
      margin-top: -3px; }
.scheme-category-overview-row {
  display: none; }
@media (min-width: 992px) {
    .scheme-category-overview-row {
      margin-left: -35px;
      margin-right: -35px;
      width: calc(100% + -35px * -1 * 2);
      display: table; } }
.scheme-category-overview-row .scheme-category-smiley {
    margin-bottom: 0; }
.scheme-category-overview-row .scheme-category-overview-col {
    display: table-cell;
    padding-left: 5px;
    padding-right: 5px;
    max-width: 177px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
.scheme-category-overview-row .scheme-category-overview-col:first-child {
      padding-left: 0; }
.scheme-category-overview-row .scheme-category-overview-col:last-child {
      padding-right: 0; }
.scheme-category-overview-card {
  background: #fff;
  border-radius: 5px; }
.scheme-category-overview-card .card-body {
    padding-top: 0; }
.scheme-category-overview-card .scheme-category-overview-card-header {
    height: auto;
    line-height: 1;
    position: static;
    padding: 10px 15px 0; }
.scheme-category-overview-card .scheme-category-overview-card-header .card-header-title {
      margin-bottom: 12px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(51, 57, 64, 0.2); }
.scheme-category-overview-card .scheme-category-smiley .icon {
    margin-bottom: 8px; }
.scheme-category-overview-card .scheme-category-smiley .media-body {
    color: #333940; }
.scheme-category-overview-card .scheme-category-smiley .media-body.POSITIVE {
    color: #60cd18;}
.scheme-category-overview-card .scheme-category-smiley .media-body.NEUTRAL{
    color: #ffb400; }
.scheme-category-overview-card .scheme-category-smiley .media-body.NEGATIVE{
    color: #f05a00; }
.scheme-category-overview-card .scheme-category-overview-card-body {
    text-align: center; }
@media (min-width: 769px) {
  .scheme-category-card-body-alt {
    text-align: center; }
    .scheme-category-card-body-alt ul {
      padding-top: 35px;
      border-top: 1px solid rgba(51, 57, 64, 0.2);
      margin-left: -10px;
      margin-right: -10px; }
    .scheme-category-card-body-alt li {
      display: inline-block;
      margin-left: 10px;
      margin-right: 10px; } }
.scheme-category-card-body-alt li {
  padding-left: 7px; }
.scheme-category-card-body-alt li:before {
    content: "\2022";
    -webkit-transform: translateX(-7px);
    -ms-transform: translateX(-7px);
    transform: translateX(-7px);
    display: inline-block; }
.scheme-category-card-body-alt-hgroup {
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem; }
.scheme-category-card-body-alt-hgroup .icon {
    color: #60cd18;
    width: 40px;
    height: 40px;
    margin-bottom: 1rem; }
.scheme-category-card-body-alt-hgroup .display1 {
    font-weight: 500;
    margin-bottom: 0; }
.scheme-category-adjustments {
  margin-top: -25px; }
@media (min-width: 375px) {
    .scheme-category-adjustments {
      margin-top: -35px; } }
@media (min-width: 769px) {
    .scheme-category-adjustments {
      margin-top: -2rem; } }
.scheme-category-adjustments-header {
  background-color: #fff; }
.scheme-category-adjustments-header-title {
  text-align: center;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 5px; }
@media (min-width: 375px) {
    .scheme-category-adjustments-header-title {
      padding-top: 25px;
      padding-bottom: 0px; } }
.scheme-category-adjustments-header-notice {
  text-align: center;
  padding-top: 1rem;
  margin-bottom: 2rem; }
.scheme-category-adjustments-header-notice .h3 {
    font-weight: 500;
    margin-bottom: 0; }
.scheme-category-adjustments-header-docking-block {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; }
@media (min-width: 375px) {
    .scheme-category-adjustments-header-docking-block {
      padding-top: 1rem;
      padding-bottom: 1rem; } }
.scheme-category-adjustments-header-docking-block > *:last-child {
    margin-bottom: 0; }
.scheme-category-adjustments-header-docking-block .recommendation-chart-footer {
    margin-bottom: -0.5rem; }
.docked .scheme-category-adjustments-header-docking-block .recommendation-chart-footer {
      border-bottom-color: transparent; }
@media (min-width: 375px) {
      .scheme-category-adjustments-header-docking-block .recommendation-chart-footer {
        margin-bottom: -1rem; } }
.scheme-category-adjustment-card-wrapper:nth-child(odd) {
  background-color: #f2f2f2; }
@media (max-width: 768px) {
  .scheme-category-adjustment-card-wrapper > .container {
    padding-left: 0;
    padding-right: 0; } }
.scheme-category-adjustment-card {
  background-color: transparent; }
@media (max-width: 768px) {
    .scheme-category-adjustment-card {
      margin-left: 0;
      margin-right: 0; } }
@media (min-width: 0) and (max-width: 374px) {
    .scheme-category-adjustment-card .scheme-category-adjustment-card-footer {
      width: calc(100% - 15px * 2);
      left: 15px;
      bottom: calc(15px - 1rem);
      z-index: 1;
      font-size: 80%; } }
@media (min-width: 375px) and (max-width: 768px) {
    .scheme-category-adjustment-card .scheme-category-adjustment-card-footer {
      width: calc(100% - 20px * 2);
      left: 20px;
      bottom: calc(20px - 1rem);
      font-size: inherit; } }
@media (max-width: 768px) {
    .scheme-category-adjustment-card .scheme-category-adjustment-card-footer {
      padding-left: 0;
      padding-right: 0;
      position: absolute; } }
@media (min-width: 769px) {
    .scheme-category-adjustment-card .scheme-category-adjustment-card-footer {
      padding-top: 112px; } }
.scheme-category-adjustment-card-footer-warning-label,
.scheme-category-adjustment-card-footer-reset-label {
  position: absolute;
  left: -9999px;
  bottom: 0;
  transition: opacity .2s;
  opacity: 0; }
@media (min-width: 769px) {
    .scheme-category-adjustment-card-footer-warning-label,
    .scheme-category-adjustment-card-footer-reset-label {
      max-width: 41.66667%; } }
.scheme-category-adjustment-card-footer-help-label {
  transition: opacity .2s; }
.has-changed .scheme-category-adjustment-card-footer-help-label {
    opacity: 0;
    left: -9999px; }
@media (min-width: 769px) {
      .has-changed .scheme-category-adjustment-card-footer-help-label {
        left: 0;
        opacity: 1; } }
.has-warning .scheme-category-adjustment-card-footer-help-label {
    opacity: 0;
    left: -9999px; }
@media (min-width: 769px) {
      .has-warning .scheme-category-adjustment-card-footer-help-label {
        opacity: 0; } }
.scheme-category-adjustment-card-footer-warning-label {
  color: #f05a00; }
@media (min-width: 769px) {
    .scheme-category-adjustment-card-footer-warning-label {
      top: 112px; } }
.has-warning .scheme-category-adjustment-card-footer-warning-label {
    opacity: 1;
    left: 0; }
@media (min-width: 769px) {
      .has-warning .scheme-category-adjustment-card-footer-warning-label {
        padding-left: 35px;
        opacity: 1; } }
.has-warning.has-changed .scheme-category-adjustment-card-footer-warning-label {
    bottom: 1.3rem; }
@media (min-width: 769px) {
  .scheme-category-adjustment-card-footer-reset-label {
    line-height: 1;
    margin-bottom: 62px; } }
.has-changed .scheme-category-adjustment-card-footer-reset-label {
  opacity: 1;
  left: 0; }
@media (min-width: 769px) {
    .has-changed .scheme-category-adjustment-card-footer-reset-label {
      padding-left: 35px;
      opacity: 1; } }
.scheme-category-adjustment-card-body {
  display: table;
  width: 100%; }
.scheme-category-adjustment-card-body .card-body-inner {
    display: table-cell;
    vertical-align: middle; }
.scheme-category-adjustment-card-hgroup {
  text-align: center;
  margin-bottom: 1rem; }
.scheme-category-adjustment-card-hgroup .h1 {
    margin-bottom: 0.5rem; }
.scheme-category-adjustment-card-hgroup .h1 .scheme-category-adjustment-card-hgroup-output {
      display: inline-block; }
.scheme-category-adjustment-card-hgroup .scheme-category-adjustment-card-hgroup-output {
    display: block;
    font-weight: 500; }
.scheme-category-adjustment-card-hgroup .scheme-category-adjustment-card-hgroup-output output {
      color: #60cd18; }
.scheme-category-adjustment-card-hgroup .display1 {
    margin-top: 1.1rem;
    margin-bottom: -3rem; }
.scheme-category-adjustment-hgroup-checkbox label {
  padding-left: 34px; }
@media (min-width: 769px) {
    .scheme-category-adjustment-hgroup-checkbox label {
      padding-left: 44px; } }
.scheme-category-adjustment-hgroup-checkbox .control-indicator {
  width: 23px;
  height: 23px;
  border-radius: 0;
  border-width: 2px;
  top: calc((1em * 1.2 - 23px) / 2);
  margin-top: -2px; }
@media (min-width: 769px) {
    .scheme-category-adjustment-hgroup-checkbox .control-indicator {
      width: 32px;
      height: 32px;
      top: calc((1em * 1.2 - 32px) / 2); } }
.scheme-category-adjustment-hgroup-checkbox .control-indicator:after {
    width: 26px;
    height: 26px; }
@media (min-width: 769px) {
      .scheme-category-adjustment-hgroup-checkbox .control-indicator:after {
        width: 35px;
        height: 35px; } }
.scheme-category-adjustment-card-slider {
  margin-bottom: 1rem;
  padding-top: 74px;
  padding-left: 25px;
  padding-right: 25px; }
@media (min-width: 375px) {
    .scheme-category-adjustment-card-slider {
      margin-bottom: 2rem;
      padding-left: 35px;
      padding-right: 35px; } }
@media (min-width: 769px) {
    .scheme-category-adjustment-card-slider {
      margin-bottom: 2rem;
      padding-left: 20px;
      padding-right: 20px; } }
.scheme-category-adjustment-card-slider.scheme-category-adjustment-card-slider-has-secondary-output {
    padding-top: 98px; }
.scheme-category-adjustments-footer > * {
  border-bottom: 1px solid rgba(51, 57, 64, 0.2);
  background-color: #e6e6e6;
  padding-top: 30px;
  padding-bottom: calc(15px * 2 - 1rem); }
@media (min-width: 375px) {
    .scheme-category-adjustments-footer > * {
      padding-top: 40px;
      padding-bottom: calc(20px * 2 - 1rem); } }
@media (min-width: 769px) {
    .scheme-category-adjustments-footer > * {
      padding-top: 70px;
      padding-bottom: calc(35px * 2 - 1rem); } }
.scheme-category-adjustments-footer .scheme-category-adjustments-follow-summary {
  border-bottom: none;
  overflow: hidden; }
.scheme-category-adjustments-footer .scheme-category-adjustments-follow-summary .h2 {
    margin-bottom: 0; }
.scheme-category-adjustments-footer .scheme-category-adjustments-follow-summary .container {
    max-width: 680px; }
.scheme-category-adjustments-footer .scheme-category-adjustments-follow-summary .form-control-static {
    font-weight: 300; }
.scheme-category-adjustments-footer .scheme-category-adjustments-save-or-reset {
  background-color: #fff;
  border-bottom: none; }
@media (min-width: 0) and (max-width: 374px) {
    .scheme-category-adjustments-footer .scheme-category-adjustments-save-or-reset .btn {
      min-width: auto;
      padding-left: 15px;
      padding-right: 15px; } }
.payout-distribution-adjustments {
  margin-top: -25px; }
@media (min-width: 375px) {
    .payout-distribution-adjustments {
      margin-top: -35px; } }
@media (min-width: 769px) {
    .payout-distribution-adjustments {
      margin-top: -2rem; } }
.payout-distribution-adjustments-section-radio-group .radio {
  margin-bottom: 1rem; }
.payout-distribution-adjustments-section-radio-group .radio input:checked ~ .control-label {
    font-weight: 500; }
.payout-distribution-adjustments-section {
  padding-top: 15px;
  padding-bottom: calc(15px - 1rem);
  overflow: hidden; }
@media (min-width: 375px) {
    .payout-distribution-adjustments-section {
      padding-top: 20px;
      padding-bottom: calc(20px - 1rem); } }
@media (min-width: 769px) {
    .payout-distribution-adjustments-section {
      padding-top: 35px;
      padding-bottom: calc(35px - 1rem); } }
.named-beneficiaries {
  overflow: hidden;
  padding: 1rem 0; }
.named-beneficiaries .named-beneficiary-add-btn-footer .btn {
    margin-bottom: 0; }
.named-beneficiary-card {
  background-color: #f2f2f2; }
.named-beneficiary-card:last-of-type .named-beneficiary-card-footer {
    display: none; }
.named-beneficiary-card .checkbox {
    clear: both;
    margin-bottom: 2rem; }
.named-beneficiary-card-body {
  transition: height 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  will-change: height;
  width: 100%;
  height: 0;
  position: relative; }
.named-beneficiary-card-body .named-beneficiary-card-body-expanded-content,
  .named-beneficiary-card-body .named-beneficiary-card-body-collapsed-content {
    transition: opacity 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; }
.named-beneficiary-card-body .named-beneficiary-card-body-expanded-content {
    opacity: 0; }
.open .named-beneficiary-card-body .named-beneficiary-card-body-expanded-content {
      opacity: 1; }
.named-beneficiary-card-body .named-beneficiary-card-body-collapsed-content {
    opacity: 1;
    z-index: 1; }
.open .named-beneficiary-card-body .named-beneficiary-card-body-collapsed-content {
      opacity: 0;
      z-index: 0; }
.named-beneficiary-card-toggle-btn {
  color: #60cd18;
  position: relative; }
.named-beneficiary-card-toggle-btn .open-label {
    display: inline; }
.named-beneficiary-card-toggle-btn .close-label {
    display: none; }
.named-beneficiary-card-toggle-btn .icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg); }
.open .named-beneficiary-card-toggle-btn .open-label {
    display: none; }
.open .named-beneficiary-card-toggle-btn .close-label {
    display: inline; }
.open .named-beneficiary-card-toggle-btn .icon {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); }
.named-beneficiary-card-slider {
  margin-bottom: 1rem; }
.named-beneficiary-card-slider .h3 {
    padding-bottom: 74px; }
.named-beneficiary-card-slider hr {
    display: none; }
@media (min-width: 769px) {
      .named-beneficiary-card-slider hr {
        display: block; } }
.named-beneficiary-card-slider .named-beneficiary-card-slider-output {
    color: #60cd18;
    font-weight: 500;
    white-space: nowrap; }
.named-beneficiary-card-text-inputs .form-control-label {
  font-weight: 500; }
@media (min-width: 769px) {
  .named-beneficiary-card-text-inputs .form-group {
    float: left;
    width: 50%;
    white-space: nowrap; }
    .named-beneficiary-card-text-inputs .form-group:nth-of-type(odd) {
      clear: both; }
  .named-beneficiary-card-text-inputs br {
    display: none; } }
.payout-distribution-adjustments-section-list-block .payout-distribution-adjustments-section-list-block-heading {
  font-weight: 500; }
.payout-distribution-adjustments-section-list-block .payout-distribution-adjustments-section-radio-group {
  margin-bottom: calc(1rem - 0.75rem); }
.payout-distribution-adjustments-section-list {
  padding-left: 30px; }
.payout-distribution-adjustments-section-list .payout-distribution-adjustments-section-list-item {
    position: relative;
    padding-left: 15px;
    margin-bottom: 0.25rem; }
@media (min-width: 769px) {
      .payout-distribution-adjustments-section-list .payout-distribution-adjustments-section-list-item {
        padding-left: 25px; } }
.payout-distribution-adjustments-section-list .payout-distribution-adjustments-section-list-item:before {
      content: "\2022";
      position: absolute;
      display: block;
      left: 0;
      top: 0;
      display: inline-block; }
.sign-card-body .h3 {
  margin-bottom: 0; }
@media (min-width: 769px) {
  .sign-card-form-group .form-control-static {
    float: right; } }
@media (min-width: 769px) {
  .sign-card-form-group .sign-card-service-links {
    float: right;
    margin-right: 12px;
    font-size: 80%;
    line-height: 30px; } }
.sign-card-form-group .sign-card-service-links a + a {
  margin-left: 8px; }
.sign-card-notice {
  color: #f05a00;
  font-style: italic; }
.smileSelect {
  display: none;
  color: #676d63;
}
.media-object:focus ~ .chicken{
  display: block;
}
.form-inline .form-control-label {
  width: 70px;
}
.cardTitle {
  color: #fff;
}
.cardTitle .h1 {
  margin: 20px;
  padding-top: 5px;
}
.cardContent .h3 {
  margin: 20px;
  color: #fff;
}
.rangeHighLabel {
  float: right;
}
.rangeLabels {
  padding-bottom: 15px;
}
svg#chart {
  background: lightgray;
  position: absolute;
  bottom: -5px;
}
.buttonContainer {
  padding-top: 40px;
}
@media (max-width: 499px) {
  .checkboxPrivacy {
    padding-top: 0px !important;
  }
  .radio label, .checkbox label {
    font-size: 15px;
  }
}
@media (max-width: 376px) {
  .situation-article .situation-article-header {
    margin-top: 50px;
  }
}

/* --->> */

.situation-article {
  position: fixed;
  width: 100vw;
  left: 0;
}

.previous-article {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  display: block !important;
  padding: 20px !important;
  z-index: 1;
}

.page-footer {
  margin-left: -35px;
  width: 100vw;

}

.container {
  padding: 0px;
}

.my-result-container {
  padding-top: 50px;
  padding-left: 35px;
  padding-right: 35px;
  margin-left: auto;
  margin-right: auto;  
}

.checkboxPrivacy {
  padding-top:20px !important;
}

.situation-article-second-wrapper {
  vertical-align: top !important;/*middle;*/
}

.situation-article-wrapper > .situation-article-second-wrapper > .situation-article-third-wrapper {
    padding-top: 0px !important;/*135px;*/
    padding-bottom: 135px;
}

.situation-article .situation-article-footer {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%; }
  @media (max-width:500px){
    .situation-article .situation-article-footer {
      position: absolute;
      bottom: 40px;
      left: 0;
      width: 100%;
    }
  }

.my-container-100 {
  top: 0px;
  width: 100vw;
  height: 73vh;
  max-width: 810px;

  padding-left: 35px;
  padding-right: 35px;
  
  margin-left: auto;
  margin-right: auto;

  position: static;
}

.my-top-space {
  height: 3vh;
  position: relative;
  top: 0px;
}

/* ----> Smartphone (< 768 px) <---- */

@media (max-width:374px){   /* iphone 5 */

  .main-header-a {
    position: fixed !important;
  }

  .my-container-100 {
    height: 92vh;
    padding-left: 20px;
    padding-right: 20px;
    position: fixed !important;
  }

  .my-top-space {
    height: 3vh;
  }
  
  .situation-article-header {
    margin-bottom: 0px !important;
  }

  .checkboxPrivacy {
    padding-top: 0px !important;
  }

  .form-group {
    margin-bottom: 0px !important;
  }

}

@media (min-width:375px){   /* iphone 6, 7 */
  
  .main-header-a {
    position: fixed !important;
  }

  .my-container-100 {
    height: 93vh;
    position: fixed !important;
  }
  
  .my-top-space {
    height: 10vh;
  }
  
  .situation-article-header {
    margin-bottom: 30px !important;
  }

  .form-group {
    margin-bottom: 0px !important;
  }
}


@media (min-width: 400px) {  /* iphone 6, 7 Plus */
  
  .main-header-a {
    position: fixed !important;
  }

  .my-container-100 {
    height: 93vh;
    position: fixed !important;
  }

  .my-top-space {
    height: 20vh;
  }
  
  .situation-article-header {
    margin-bottom: 50px !important;
  }
}

/* Smartphones Landskape (out of requirements) */
@media (orientation : landscape)  /* iphone 5 */
  and (max-width: 568px){

  .main-header-a {
    position: absolute !important;
  }

  .my-container-100 {
    height: 110vh;
    position: static !important;
  }

  .situation-article-wrapper > .situation-article-second-wrapper > .situation-article-third-wrapper > .situation-article {
    padding-bottom: 0px;
  }

  .situation-article .situation-article-footer {
    position: static;
  }

  .landscape-fix {
    height: 30vh;
  }

  .situation-article .situation-article-footer > :last-child {
    margin-top: 30px;
  }
}

@media (orientation : landscape) 
  and (min-width: 667px)
  and (max-width: 768px){

  .main-header-a {
    position: absolute !important;
  }

  .my-container-100 {
    height: 110vh;
    position: static !important;
  }

  .situation-article-wrapper > .situation-article-second-wrapper > .situation-article-third-wrapper > .situation-article {
    padding-bottom: 0px;
  }

  .situation-article .situation-article-footer {
    position: static;
  }

  .landscape-fix {
    height: 30vh;
  }

  .situation-article .situation-article-footer > :last-child {
    margin-top: 30px;
  }

}

/* ----> Tablet (768 px <> 968px) portrait and landscape. <---- */

@media (min-width: 769px) {  /* iPad */
}

/*
iPad Plus -> not in the list

@media (min-width: 1024px) {
}
*/

/* ----> Desktop (> 968px) <---- */
@media (min-width: 969px) {  
  .my-container-100 {
    height: 93vh;
    position: absolute !important;
  }
}

