html,
body {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  color: #fff;
  font-size: 16px;
  font-family: 'Gotham';
  background-color: #222;
  -webkit-transition: background-color 0.325s;
  transition: background-color 0.325s;
}
body.scroll {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
body.white {
  background-color: #fff;
  color: #111;
}
body.white .popup .input__field,
body.white .popup .key__button {
  color: #fff;
  background-color: #111;
}
body.prevent-scroll .site-content__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
body.prevent-scroll .site-content--header .site-content__wrapper {
  top: 70px;
}
.script-warning {
  z-index: 9001;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #222;
}
.script-warning__message {
  max-width: 400px;
  margin: 20px;
  padding: 20px 25px;
  border: 1px solid #555;
}
#pdf-iframe {
  z-index: 9000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
#close-iframe {
  z-index: 9001;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  border: 0;
  background: transparent;
  background-color: transparent;
  color: inherit;
  padding: 0;
  text-decoration: none;
  outline: 0;
  color: #fff;
  background-color: #111;
  padding: 15px 20px;
  font-size: 30px;
}
#close-iframe:after {
  content: "␡";
  font-family: "SSGizmo";
}
.popup .mfp-container {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.popup .mfp-content {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 600px;
  padding: 16px 24px;
  background-color: #222;
  border: 1px solid #646464;
}
.popup .mfp-content .input--textarea .input__field {
  height: 160px;
}
.popup .mfp-close {
  margin: 33px 30px 0 0;
  font-size: 40px;
  -webkit-transition: opacity 0.375s;
  transition: opacity 0.375s;
}
@media only screen and (max-width: 500px) {
  .popup .mfp-close {
    margin: 0;
  }
}
.popup.mfp-bg {
  opacity: 0;
  background-color: #000;
  -webkit-transition: opacity 0.375s;
  transition: opacity 0.375s;
}
.popup.mfp-bg.mfp-ready {
  opacity: 0.5;
}
.popup.mfp-bg.mfp-removing {
  opacity: 0;
}
.popup.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: opacity 0.375s;
  transition: opacity 0.375s;
}
.popup.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.popup.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
.popup .popup-header {
  margin-bottom: 16px;
  font-size: 16px;
  color: #fff;
}
.popup .popup-footer {
  margin-top: 16px;
}
.popup .popup-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.popup .popup-button {
  border: 0;
  background: transparent;
  background-color: transparent;
  color: inherit;
  padding: 0;
  text-decoration: none;
  outline: 0;
  cursor: pointer;
  padding: 10px 15px;
  color: #fff;
  background-color: #111;
  border: 1px solid #555;
  -webkit-transition: border 0.25s;
  transition: border 0.25s;
}
.popup .popup-button:focus {
  border: 1px solid #808080;
}
.accounting-check {
  margin: 80px 0;
}
.checkbox {
  cursor: pointer;
  outline: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 10px;
  margin: 0 -10px;
}
.checkbox__box {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  position: relative;
  margin-top: -1px;
  margin-right: 10px;
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  -webkit-transition: border 0.25s;
  transition: border 0.25s;
}
.checkbox__box:before {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  content: "✓";
  font-family: "SSGizmo";
  font-size: 30px;
  color: #36cc7c;
  position: absolute;
  left: -8px;
  top: -13px;
  opacity: 0;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
.checkbox[data-checked="true"] .checkbox__box {
  border: 1px solid #279a5d;
}
.checkbox[data-checked="true"] .checkbox__box:before {
  opacity: 1;
}
.checkbox__label {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.dropbox-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dropbox-list--hidden {
  display: none;
}
.dropbox-list--open {
  display: block;
  margin-bottom: 50px;
}
.dropbox-list--visible {
  margin-top: -25px;
  margin-bottom: 40px;
}
.dropbox-list--margin-bottom {
  margin-bottom: 20px;
}
.dropbox-list__entry {
  outline: none;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1.6;
  padding: 12px 0;
  border-bottom: 1px solid #555;
  -webkit-transition: background-color 0.25s;
  transition: background-color 0.25s;
}
.dropbox-list__entry:focus {
  background-color: #2d2d2d;
}
.dropbox-list__entry:first-of-type {
  border-top: 1px solid #555;
}
.dropbox-list__entry:last-of-type {
  margin-bottom: 60px;
}
.dropbox-list__entry span {
  pointer-events: none;
}
.dropbox-list__entry span:last-of-type {
  padding-left: 20px;
  color: #646464;
}
.ui-sortable-helper {
  width: auto !important;
  padding: 10px !important;
  display: block;
  border: solid 1px #646464 !important;
}
.dropbox {
  list-style: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: block;
  width: 100%;
  border: 1px solid #555;
  background-color: #111;
  position: relative;
  top: -16px;
  padding: 20px 0 0 40px;
  overflow-y: scroll;
}
.dropbox:empty::after {
  content: "Ingen oppføring";
  padding: 18px 0;
  display: inline-block;
}
.dropboxkey__button--mini {
  width: 30%;
}
.dropbox--hidden {
  display: none;
}
.dropbox--open {
  display: block;
}
.dropbox--visible {
  margin-top: -25px;
}
.dropbox--margin-bottom {
  margin-bottom: 20px;
}
.dropbox__entry {
  outline: none;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1.6;
  letter-spacing: 0.15em;
  padding: 12px 0;
  border-bottom: 1px solid #555;
  -webkit-transition: background-color 0.25s;
  transition: background-color 0.25s;
  background-color: #111;
}
.dropbox__entry:focus {
  background-color: #2d2d2d;
}
.dropbox__entry:last-of-type {
  border-bottom: none;
}
.dropbox__entry span {
  pointer-events: none;
}
.dropbox__entry span:after {
  content: "";
  font-family: "SSGizmo";
  font-size: 20px;
  position: relative;
  top: 4px;
  left: 4px;
}
.site-content--lifecycle-portrait .home__dropbox-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: calc(100vh - 300px);
  border-bottom: solid 1px #646464;
}
.site-content--lifecycle-portrait .home__dropbox-list .dropbox__container {
  width: 100%;
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0px;
  z-index: 100;
  overflow: hidden;
}
.site-content--lifecycle-portrait .home__dropbox-list .key__wrapper {
  font-size: 14px;
  padding-left: 27px;
}
.site-content--lifecycle-portrait .home__dropbox-list .key__button:after {
  content: "";
}
.site-content--lifecycle-portrait .home__dropbox-list .dropbox {
  height: 100%;
  padding: 14px;
  margin: 0;
  z-index: 9000;
}
.site-content--lifecycle-portrait .home__dropbox-list .dropbox__entry {
  margin: 10px;
  padding: 0px 10px 6px 10px;
  letter-spacing: 0.15em;
  border: solid 1px #646464;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.site-content--lifecycle-portrait .home__dropbox-list .dropbox__entry span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.site-content--lifecycle-portrait .home__dropbox-list .dropbox__entry span:after {
  content: "";
}
.form__expandable {
  display: none;
}
.form__expandable--visible {
  display: block;
}
.form__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form__wrapper > .form {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.form__side-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.form__side-nav button {
  border: 0;
  background: transparent;
  background-color: transparent;
  color: inherit;
  padding: 0;
  text-decoration: none;
  outline: 0;
  cursor: pointer;
  width: 100px;
  margin-left: 25px;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px;
  background-color: #111;
  border: 1px solid #555;
  -webkit-transition: border 0.25s;
  transition: border 0.25s;
}
.form__side-nav button:focus {
  border: 1px solid #808080;
}
.form__side-nav button:first-of-type {
  margin-top: 10px;
}
.form__side-nav button:last-of-type {
  margin-bottom: 0;
}
.form__side-nav button.active {
  border: 1px solid #36cc7c;
}
.form__side-nav button.active:focus {
  border: 1px solid #9ae5bd;
}
.grid:before {
  content: '';
  display: table;
}
.grid:after {
  content: '';
  display: table;
  clear: both;
}
.grid > * {
  width: calc(99.9% * 1/2 - (30px - 30px * 1/2));
}
.grid > *:nth-child(1n) {
  float: left;
  margin-right: 30px;
  clear: none;
}
.grid > *:last-child {
  margin-right: 0;
}
.grid > *:nth-child(2n) {
  margin-right: 0;
  float: right;
}
.grid > *:nth-child(2n + 1) {
  clear: both;
}
@media only screen and (max-width: 625px) {
  .grid > * {
    width: calc(99.9% * 1/1 - (0px - 0px * 1/1));
  }
  .grid > *:nth-child(1n) {
    float: left;
    margin-right: 0px;
    clear: none;
  }
  .grid > *:last-child {
    margin-right: 0;
  }
  .grid > *:nth-child(0n) {
    float: right;
  }
}
.input {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 7px;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media only screen and (max-width: 625px) {
  .input {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .input .input__label {
    width: auto !important;
  }
  .input .input__field {
    width: 100%;
  }
}
.input:last-of-type {
  margin-bottom: 0;
}
.input--disabled {
  cursor: default;
}
.input--display {
  opacity: 1;
}
.input--hidden {
  display: none;
}
.input--small-margin {
  margin-bottom: 7px;
}
.input--small-margin .input {
  margin: 0;
}
.input--small-margin .input__label {
  padding: 2px 0;
}
.input--small-margin .input__field {
  padding: 2px 7px;
}
.input--fancy {
  display: block;
  margin: 60px 0;
  color: #aaa;
  background-color: #111;
  border: 1px solid #555;
  -webkit-transition: background-color 0.25s, border 0.25s, opacity 0.5s;
  transition: background-color 0.25s, border 0.25s, opacity 0.5s;
}
.input--fancy.input--active {
  border: 1px solid #808080;
  color: #fff;
}
.input__label {
  width: 160px;
  padding: 7px 0;
  border: 1px solid transparent;
  cursor: pointer;
}
.input--wider-label .input__label {
  width: 225px;
}
.input--disabled .input__label {
  pointer-events: none;
}
.input--fancy .input__label {
  pointer-events: none;
  position: absolute;
  width: auto;
  border: 0;
  padding: 20px 20px;
  -webkit-transition: color 0.25s, -webkit-transform 0.25s;
  transition: color 0.25s, -webkit-transform 0.25s;
  transition: transform 0.25s, color 0.25s;
  transition: transform 0.25s, color 0.25s, -webkit-transform 0.25s;
}
.input--fancy.input--active .input__label {
  -webkit-transform: translateY(-55px);
          transform: translateY(-55px);
}
.input--half .input__field {
  height: 125px !important;
}
.input--high .input__field {
  height: 250px !important;
}
.input--inline {
  margin-top: -16px;
  margin-bottom: 15px;
}
.input--inline.input--textarea .input__field {
  padding: 7px 13px;
}
.input--textarea {
  position: relative;
}
.input--textarea:after,
.input--textarea:before {
  pointer-events: none;
  content: "";
  position: absolute;
  height: 2px;
  background-color: #555;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.input--textarea:after {
  bottom: 3px;
  right: -1px;
  width: 10px;
}
.input--textarea:before {
  bottom: 6px;
  right: -2px;
  width: 18px;
}
.input--textarea .input__field {
  resize: vertical;
  overflow-y: hidden;
  height: 54px;
  min-height: 35px !important;
  max-height: 250px !important;
}
.input__field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: inherit;
  background-color: inherit;
  box-shadow: none;
  outline: none;
  width: 100%;
  padding: 0;
  border-radius: 0px;
  border-color: transparent;
  border: 0;
  color: inherit;
  font-size: inherit;
  cursor: text;
  line-height: normal;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: auto;
  background-color: #111;
  border: 1px solid #555;
  padding: 7px;
  -webkit-transition: background-color 0.25s, border 0.25s, opacity 0.5s;
  transition: background-color 0.25s, border 0.25s, opacity 0.5s;
}
.input__field:focus {
  outline: none;
}
.input__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.input--disabled .input__field {
  cursor: default;
  opacity: 0.5;
}
.input--fancy .input__field {
  cursor: pointer;
  width: 100%;
  padding: 20px 20px;
  border: 0;
  background-color: transparent;
}
.input--display .input__field {
  border: 1px solid transparent;
  background-color: transparent;
  opacity: 1;
}
.input--error .input__field {
  color: #e23737;
}
.input--fancy.input--active .input__field {
  cursor: text;
  border: 0;
}
.input--fancy.input--active .input__field:focus {
  border: 0;
}
.input__field:focus:not(:readonly) {
  border: 1px solid #808080;
}
.input__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: inherit;
  background-color: inherit;
  box-shadow: none;
  outline: none;
  line-height: normal;
  width: 100%;
  padding: 0;
  border-radius: 0px;
  border-color: transparent;
  color: #fff;
  border: 0;
  font-size: inherit;
  cursor: pointer;
  height: 35px;
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 7px;
  background-color: #111;
  border: 1px solid #555;
  -webkit-transition: background-color 0.25s, border 0.25s;
  transition: background-color 0.25s, border 0.25s;
}
.input__select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #fff;
}
.input__select::-ms-expand {
  display: none;
}
.input__select option {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  outline: none;
  padding: 0;
  box-shadow: none;
  background: inherit;
  background-color: inherit;
  color: #fff;
  line-height: normal;
  font-size: inherit;
}
.input__select .hidden {
  display: none;
}
.input__select:disabled {
  background-color: transparent;
  border: 1px solid transparent;
}
.input__select option {
  padding: 7px;
  background-color: #222;
}
@-moz-document url-prefix() {
  .input__select {
    padding-left: 4px;
  }
}
.key {
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.key--disabled {
  pointer-events: none;
  opacity: 0.5;
}
.key--margin-top {
  margin-top: 20px;
}
.key--hidden {
  display: none !important;
}
.key--status {
  margin-bottom: 15px;
}
.key--status .key__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.key--status .key__wrapper {
  font-size: 18px;
  text-align: left;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 15px;
}
.key--space-between .key__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.key.green .key__button {
  border: 1px solid #36cc7c;
}
.key.orange .key__button {
  border: 1px solid #bc9a57;
}
.key.red .key__button {
  border: 1px solid #e23737;
}
.key.true .key__button {
  border: 1px solid #36cc7c;
}
.key.true .key__status {
  border-right: 1px solid #36cc7c;
}
.key--smaller .key__wrapper {
  font-size: 14px;
  padding: 12px 0;
}
.key--medium {
  margin-bottom: 10px;
}
.key--medium .key__wrapper {
  font-size: 15px;
  text-align: left;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 15px;
}
.key--reveal {
  margin-bottom: 15px;
}
.key--reveal .key__button {
  position: relative;
}
.key--reveal .key__button:after {
  content: "";
  font-family: "SSGizmo";
  font-size: 20px;
  position: absolute;
  right: 20px;
  top: 13px;
}
.key--reveal .key__wrapper {
  font-size: 18px;
  text-align: left;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 15px;
}
.key--revealed .key__button:after {
  content: "";
}
.key--tiny {
  display: inline-block;
  width: auto;
}
.key--tiny .key__button {
  width: auto;
  display: inline-block;
}
.key--super-tiny {
  display: inline-block;
  width: auto;
  margin-top: 10px;
}
.key--super-tiny .key__button {
  width: auto;
  display: inline-block;
}
.key--super-tiny .key__wrapper {
  padding: 5px 10px 7px;
}
.key--super-tiny .key__wrapper span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.key--error .key__button {
  border: 1px solid #e23737;
}
.key--error .key__button:focus {
  border: 1px solid #f09b9b;
}
.key--bigger .key__wrapper {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.key--big-label2 .key__wrapper > span:nth-child(2) {
  font-size: 30px;
  margin: -10px 0;
}
.key--boolean {
  margin-bottom: 15px;
}
.key--boolean .key__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.key--boolean .key__wrapper {
  font-size: 14px;
  text-align: left;
  padding: 13px 15px;
}
.key__boolean {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.key__boolean > button {
  border: 0;
  background: transparent;
  background-color: transparent;
  color: inherit;
  padding: 0;
  text-decoration: none;
  outline: 0;
  cursor: pointer;
  text-transform: uppercase;
  padding: 0 13px;
  border-left: 1px solid #555;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
}
.key__boolean > button.true {
  color: #36cc7c;
}
.key__boolean > button.true:focus {
  color: #68d99d;
}
.key__boolean > button.false {
  color: #e23737;
}
.key__boolean > button.false:focus {
  color: #e96969;
}
.key__boolean > button.null {
  color: #bc9a57;
}
.key__boolean > button.null:focus {
  color: #cdb381;
}
.key__boolean > button:focus {
  color: #808080;
}
.key__wrapper {
  pointer-events: none;
}
.key__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  color: #555;
  padding: 3px 15px 0;
  border-right: 1px solid #555;
  -webkit-transition: color 0.25s, border 0.425s;
  transition: color 0.25s, border 0.425s;
}
.key__status:focus {
  outline: 0;
  color: #808080;
}
.key__status--checked,
.key__status--true {
  color: #36cc7c;
}
.key__status--checked:focus,
.key__status--true:focus {
  color: #9ae5bd;
}
.key__status .ss-check {
  pointer-events: none;
}
.key--big {
  text-align: left;
  margin-bottom: 15px;
}
.key--big .key__wrapper {
  font-size: 18px;
  text-align: left;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 15px;
}
.key--navigation {
  text-align: left;
}
.key--navigation .key__button {
  border: 0;
  border-bottom: 1px solid #555;
  -webkit-transition: background-color 0.25s;
  transition: background-color 0.25s;
}
.key--navigation .key__button:focus {
  border: 0;
  border-bottom: 1px solid #555;
  background-color: #292929;
}
.key--navigation .key__wrapper {
  padding: 15px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.key__button {
  border: 0;
  background: transparent;
  background-color: transparent;
  color: inherit;
  padding: 0;
  text-decoration: none;
  outline: 0;
  outline: none;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  cursor: pointer;
  display: block;
  width: 100%;
  border: 1px solid #555;
  background-color: #111;
  -webkit-transition: border 0.425s;
  transition: border 0.425s;
}
.white .key__button {
  background-color: #fff;
}
.key__button:focus {
  border: 1px solid #808080;
}
.key__wrapper {
  display: block;
  width: 100%;
  padding: 15px 20px;
}
.list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list--hidden {
  display: none;
}
.list--open {
  display: block;
  margin-bottom: 50px;
}
.list--visible {
  margin-top: -25px;
  margin-bottom: 40px;
}
.list--margin-bottom {
  margin-bottom: 20px;
}
.list__entry {
  outline: none;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1.6;
  padding: 12px 0;
  border-bottom: 1px solid #555;
  -webkit-transition: background-color 0.25s;
  transition: background-color 0.25s;
}
.list__entry:focus {
  background-color: #2d2d2d;
}
.list__entry:first-of-type {
  border-top: 1px solid #555;
}
.list__entry:last-of-type {
  margin-bottom: 60px;
}
.list__entry span {
  pointer-events: none;
}
.list__entry span:last-of-type {
  padding-left: 20px;
  color: #646464;
}
.menu-list {
  z-index: 2;
  position: fixed;
  right: 0;
  bottom: 0;
  height: calc(100% - 70px);
  width: 100%;
  max-width: 240px;
  overflow: hidden;
  background-color: #111;
  border-left: 1px solid #555;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.menu-list--open {
  pointer-events: auto;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.menu-list__navigation--second {
  margin-top: 90px;
  border-top: 1px solid #555;
}
.menu-list__link {
  outline: none;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  display: block;
  padding: 15px;
  border-bottom: 1px solid #555;
  -webkit-transition: background-color 0.25s;
  transition: background-color 0.25s;
}
.menu-list__link:focus {
  background-color: #292929;
}
.menu-list__helper {
  pointer-events: none;
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
.menu-list__helper--active {
  cursor: pointer;
  pointer-events: auto;
  background-color: rgba(0,0,0,0.35);
}
.menu {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  box-sizing: content-box;
  outline: none;
}
.menu__line-wrapper {
  position: relative;
  overflow: visible;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: height 0.15s linear;
  transition: height 0.15s linear;
}
.menu--active .menu__line-wrapper {
  height: 0%;
}
.menu__line {
  width: 100%;
  height: 2px;
  margin: -1px 0;
  background-color: #fff;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background-color 0.15s, -webkit-transform 0.15s;
  transition: background-color 0.15s, -webkit-transform 0.15s;
  transition: background-color 0.15s, transform 0.15s;
  transition: background-color 0.15s, transform 0.15s, -webkit-transform 0.15s;
}
.menu--active .menu__line:not(:first-of-type):not(:last-of-type) {
  background-color: transparent;
}
.menu--active .menu__line:first-of-type {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.menu--active .menu__line:last-of-type {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.presentation {
  height: 100%;
  position: relative;
}
.presentation__close {
  pointer-events: none;
  z-index: 1;
  width: 64px;
  height: 64px;
  position: absolute;
  bottom: 80px;
  left: calc(50% - 32px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 35px;
  padding-top: 8px;
  background-color: #111;
  border: 1px solid #777;
  opacity: 0;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
.presentation__close--visible {
  pointer-events: auto;
  cursor: pointer;
  opacity: 1;
}
.rich-text--tiny-font {
  font-size: 14px;
}
.rich-text--tiny-font > p {
  padding-bottom: 30px;
}
.rich-text a {
  outline: none;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  text-decoration: underline;
}
.rich-text p {
  margin: 0;
  line-height: 1.5;
  white-space: pre-line;
  padding-bottom: 45px;
}
.rich-text p ~ ul {
  margin-top: -30px;
}
.rich-text > h3 {
  margin: 0;
  margin-bottom: 16px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.rich-text > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 20px;
  margin-bottom: 15px;
}
.rich-text > ul > li {
  position: relative;
  margin-bottom: 5px;
}
.rich-text > ul > li:before {
  content: "-";
  position: absolute;
  left: -15px;
}
.signature-pad {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-height: 200px;
}
.signature-pad .key {
  width: 100%;
}
.signature-pad__canvas {
  background-color: transparent;
  -webkit-filter: invert(100%);
          filter: invert(100%);
}
.white .signature-pad__canvas {
  -webkit-filter: none;
          filter: none;
}
.popup .signature-pad__canvas {
  border: 1px solid #555;
  -webkit-filter: invert(100%);
          filter: invert(100%);
}
.signature-pad__canvas--hidden {
  display: none;
}
.signature-pad__sub-title {
  margin: 16px 0 0;
  white-space: pre-wrap;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.signature-pad__signature {
  width: 100%;
  margin-bottom: 20px;
  -webkit-filter: invert(100%);
          filter: invert(100%);
}
.white .signature-pad__signature {
  -webkit-filter: none;
          filter: none;
}
.site-content {
  -webkit-transition: opacity 0.275s;
  transition: opacity 0.275s;
}
.site-content--loading {
  pointer-events: none;
  opacity: 0;
}
.site-content--header {
  padding-top: 70px;
}
.site-content--login,
.site-content--forgot-password {
  -webkit-box-align: center;
      -ms-flex-align: center;
              -ms-grid-row-align: center;
          align-items: center;
}
.site-content--login .site-content__page,
.site-content--forgot-password .site-content__page {
  margin: auto;
  padding-top: 0;
}
.site-content--presentation-view .status {
  display: none;
}
.site-content--presentation-view .site-content__wrapper {
  height: 100vh;
}
.site-content--presentation-view .site-content__page {
  margin: 0;
  padding: 0;
  height: 100%;
  max-width: 100%;
  overflow: hidden;
}
.site-content--lifecycle-portrait .site-content__page {
  max-width: 100%;
  padding: 60px 25px;
}
.site-content--lifecycle-portrait .site-header__wrapper {
  max-width: 100%;
}
.site-content--home .list--visible {
  margin-top: 30px;
}
.site-content--home .list__entry:first-of-type {
  border-top: none;
}
.site-content--insurance-solution-product .site-content__page {
  max-width: 100%;
  padding: 60px 25px;
}
.site-content--insurance-solution-product .site-header__wrapper {
  max-width: 100%;
}
.site-content__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-height: calc(100vh - 70px);
}
.site-content__page {
  width: 100%;
  max-width: 670px;
  margin: 0 auto;
  padding: 60px 15px;
}
.site-header {
  z-index: 3;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  background-color: #111;
  border-bottom: 1px solid #555;
}
.site-header__wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 15px;
  max-width: 688px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.site-header__logo {
  margin: 0;
  padding: 8px 0;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.site-header__logo a {
  outline: none;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  display: block;
  padding: 10px;
  height: 100%;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
.site-header__logo a:hover,
.site-header__logo a:focus {
  opacity: 0.5;
}
.site-header__logo img {
  pointer-events: none;
  display: block;
  height: 100%;
}
.site-header .menu {
  height: 18px;
  width: 25px;
  padding: 10px;
  margin: 10px 0;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
.site-header .menu:hover,
.site-header .menu:focus {
  opacity: 0.5;
}
.slide {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  outline: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  -webkit-transition: opacity 0.375s;
  transition: opacity 0.375s;
}
.slide--active {
  opacity: 1;
}
.slide--miniature {
  pointer-events: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: static;
  opacity: 1;
  height: 200px;
  margin-bottom: 30px;
  border: 1px solid #e23737;
  -webkit-transition: border 0.375s;
  transition: border 0.375s;
}
.slide--miniature:focus {
  border: 1px solid #ec7d7d;
}
.slide--miniature.slide--active {
  border: 1px solid #36cc7c;
}
.slide--miniature.slide--active:focus {
  border: 1px solid #9ae5bd;
}
.slide__wrapper {
  pointer-events: none;
  height: 100%;
  margin: 175px auto;
  padding: 0 80px;
  max-width: 1215px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.slide--miniature .slide__wrapper {
  margin: 30px 0 0;
  padding: 0 20px;
}
.slide__title {
  top: 20px;
  position: relative;
  margin-bottom: 60px;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.slide--miniature .slide__title {
  font-size: 8px;
  margin-bottom: 30px;
}
.slide__title:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 38px;
  border-top: 3px solid #fff;
}
.slide--miniature .slide__title:before {
  width: 10px;
  top: -5px;
  border-top: 1px solid #fff;
}
.slide__logo > img {
  display: block;
  height: 48px;
  margin-top: -4px;
}
.slide--miniature .slide__logo > img {
  margin-top: 5px;
  height: 18px;
}
.slide__points {
  width: 100%;
}
.slide__point {
  position: relative;
  max-width: 320px;
  font-size: 20px;
  line-height: 1.3;
  padding-left: 20px;
  margin-bottom: 10px;
}
.slide--miniature .slide__point {
  font-size: 6px;
  padding-left: 5px;
  margin-bottom: 2px;
  max-width: 100px;
}
.slide__point:before {
  content: "-";
  position: absolute;
  left: 0;
}
.slide__signature {
  margin-top: 30px;
}
.slide--miniature .slide__signature {
  margin-top: 10px;
}
.slide__signature > img {
  display: block;
  width: 250px;
  margin-left: 60px;
}
.slide--miniature .slide__signature > img {
  width: 70px;
  margin-left: 30px;
}
.slide__grid-point-header {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.slide--miniature .slide__grid-point-header {
  font-size: 5px;
  margin-bottom: 2px;
}
.slide__grid-points {
  width: 100%;
}
.slide__grid-points:before {
  content: '';
  display: table;
}
.slide__grid-points:after {
  content: '';
  display: table;
  clear: both;
}
.slide__grid-point {
  width: calc(99.9% * 1/4 - (30px - 30px * 1/4));
  margin-bottom: 30px;
}
.slide__grid-point:nth-child(1n) {
  float: left;
  margin-right: 30px;
  clear: none;
}
.slide__grid-point:last-child {
  margin-right: 0;
}
.slide__grid-point:nth-child(4n) {
  margin-right: 0;
  float: right;
}
.slide__grid-point:nth-child(4n + 1) {
  clear: both;
}
.slide--miniature .slide__grid-point {
  width: calc(99.9% * 1/4 - (10px - 10px * 1/4));
  margin-bottom: 5px;
}
.slide--miniature .slide__grid-point:nth-child(1n) {
  float: left;
  margin-right: 10px;
  clear: none;
}
.slide--miniature .slide__grid-point:last-child {
  margin-right: 0;
}
.slide--miniature .slide__grid-point:nth-child(4n) {
  margin-right: 0;
  float: right;
}
.slide--miniature .slide__grid-point:nth-child(4n + 1) {
  clear: both;
}
.slide__grid-point .slide__point {
  font-size: 18px;
  margin-bottom: 5px;
}
.slide--miniature .slide__grid-point .slide__point {
  font-size: 6px;
  margin-bottom: 0px;
  line-height: 1;
}
.status {
  pointer-events: none;
  z-index: 9001;
  position: fixed;
  top: 0;
  width: 100%;
  margin-top: 5px;
  height: 60px;
}
.status > * {
  position: absolute;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.status__spinner {
  -webkit-transition: opacity 2.5s;
  transition: opacity 2.5s;
  opacity: 0;
}
.status__success {
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  opacity: 0;
  color: #36cc7c;
  padding-top: 7px;
  font-size: 40px;
}
.status__error {
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  opacity: 0;
  color: #e23737;
  padding-top: 7px;
  font-size: 40px;
}
.table {
  width: 100%;
  height: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
.table input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: inherit;
  background-color: inherit;
  box-shadow: none;
  outline: none;
  width: 100%;
  padding: 0;
  border-radius: 0px;
  border-color: transparent;
  border: 0;
  color: inherit;
  font-size: inherit;
  cursor: text;
  line-height: normal;
  padding: 10px 12px;
}
.table input:focus {
  outline: none;
}
.table input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.table textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: inherit;
  background-color: inherit;
  box-shadow: none;
  outline: none;
  width: 100%;
  padding: 0;
  border-radius: 0px;
  border-color: transparent;
  border: 0;
  color: inherit;
  font-size: inherit;
  cursor: text;
  line-height: normal;
  height: 36px;
  padding: 10px 12px;
  resize: none;
  overflow-y: hidden;
}
.table textarea:focus {
  outline: none;
}
.table textarea::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.table .input-wrapper {
  height: 100%;
  cursor: text;
}
.table .ss-gizmo {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  position: relative;
  top: 2px;
}
.table--interactive {
  background-color: #111;
  border: 1px solid #555;
  margin-bottom: 50px;
}
.table--interactive .table__cell {
  border: 1px solid #555;
}
.table--interactive .table__header input {
  font-size: 18px;
  font-weight: 600;
  padding: 14px 12px;
}
.table--extra {
  margin-top: 60px;
  margin-bottom: 0px;
}
.table__header {
  text-align: left;
  border-top: 1px solid #646464;
  border-bottom: 1px solid #646464;
}
.table__cell {
  height: 100%;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: inherit;
  text-transform: uppercase;
}
.table--grouped .table__cell {
  padding: 7px 9px;
}
.table__cell--clickable {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.table__cell--left {
  text-align: left;
}
.table__cell--right {
  text-align: right;
}
.table__cell--right textarea {
  text-align: right !important;
}
.table__cell--error {
  color: #f62525;
}
.table__cell--sum {
  text-align: right !important;
  border-left: 0 !important;
}
.table__cell--no-border {
  border-right: 0 !important;
}
.table__cell--input {
  padding: 0;
}
.table__cell--delete,
.table__cell--duplicate {
  padding-top: 0;
  padding-bottom: 0;
  cursor: pointer;
  text-align: center !important;
}
.table__cell--delete .ss-gizmo,
.table__cell--duplicate .ss-gizmo {
  font-size: 16px;
}
.table__cell--close {
  padding-top: 0;
  padding-bottom: 0;
  cursor: pointer;
  text-align: center;
}
.table__cell--close .ss-gizmo {
  font-size: 18px;
}
.table__body .table__cell:not(:first-of-type) {
  text-align: right;
}
.table--grouped .table__body {
  border-top: 1px solid;
  border-bottom: 1px solid;
}
.table--grouped .table__body .table__row:nth-of-type(odd) {
  background-color: #e6e7e8;
}
.title {
  padding-bottom: 30px;
  -webkit-transition: color 0.375s;
  transition: color 0.375s;
}
.title.green {
  color: #36cc7c;
}
.title.orange {
  color: #bc9a57;
}
.title.red {
  color: #e23737;
}
.title--subtle {
  margin-top: 65px;
  padding-bottom: 3px;
}
.title--small {
  margin-top: -10px;
}
.title__wrapper {
  border-bottom: 1px solid #555;
  padding-bottom: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.title--subtle .title__wrapper {
  border: 0;
  padding-bottom: 15px;
}
.title--small .title__wrapper {
  border: 0;
}
.title--space-between .title__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.title__label {
  margin: 0;
  font-weight: inherit;
  width: 100%;
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.title--subtle .title__label {
  color: #646464;
  font-size: 17px;
}
.title--small .title__label {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: none;
}
.title__back {
  outline: none;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  padding: 7px 7px 7px 25px;
  margin: -12px -7px -7px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.title__back:focus .title__back__label {
  border: 1px solid #808080;
  border-left: 0;
}
.title__back:focus .title__back__label:before,
.title__back:focus .title__back__label:after {
  border-left: 1px solid #808080;
}
.title__back:focus .title__back__label:after {
  border-top: 1px solid #808080;
}
.title__back__label {
  pointer-events: none;
  position: relative;
  padding: 10px 12px 9px 7px;
  line-height: 1;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #111;
  border: 1px solid #555;
  border-left: 0;
  -webkit-transition: border 0.25s;
  transition: border 0.25s;
}
.white .title__back__label {
  background-color: #fff;
}
.white .title__back__label:before,
.white .title__back__label:after {
  background-color: #fff;
}
.title__back__label:before,
.title__back__label:after {
  position: absolute;
  content: "";
  left: -10px;
  height: 75%;
  width: 12px;
  border-left: 1px solid #555;
  background-color: #111;
  -webkit-transition: border 0.25s;
  transition: border 0.25s;
}
.title__back__label:before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.title__back__label:after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-top: 1px solid #555;
}
