:root {
  --font-frende: Studio6, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-ionicons: "Ionicons";
  --brand-white: #fff7f1;
  --brand-red: #c60c30;
  --brand-dark: #3f0613;
  --brand-cream: #ffead2;
  --brand-beige: #ffc69d;
  --brand-pink: #ff8e99;
  --brand-peach: #dc1234;
  --brand-brown: #87010b;
  --brand-green: #007162;
  --brand-blue: #0e5eab;
  --brand-blue-5: #F3EFED;
  --brand-black: #3E0714;
  --brand-yellow: #f9c50a;
  --input-fill: #FFF0E1;
  --help-text: #794E56;
  --frende-red-pill: #ef3346;
  --color-frende-red: #c60c30;
  --color-frende-black: #393a41;
  --color-frende-light-blue: #f6f8fa;
  --color-lenker: #306ba1;
  --color-godkjent: #468330;
  --color-vasel: #f9c50a;
  --color-disabled: #aaaaaa;
  --color-blue-80: #5c8ab5;
  --color-blue-60: #88aac9;
  --color-blue-40: #b4c9dc;
  --color-blue-20: #e0e8f0;
  --color-black-100: #000000;
  --color-black-87: #222222;
  --color-black-80: #333333;
  --color-black-70: #4b4b4b;
  --color-black-55: #737373;
  --color-black-28: #9c9c9c;
  --color-black-13: #c4c4c4;
  --color-black-9: #e5e5e5;
  --color-black-7: #ededed;
  --color-black-header: #333333;
  --color-white: #ffffff;
  --color-background: #eef0f2;
  --color-selected: #192e4f;
  --screen-sx: 480px;
  --screen-sm: 768px;
  --screen-md: 922px;
  --screen-lg: 1170px;
  --full-view: 1440px;
  --component-max-width: 700px;
  --input-component-max-width: 500px; }

/********************************* Core ******************************/
[data-tooltip] {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }
  [data-tooltip]:before, [data-tooltip]:after {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    z-index: 999999;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  [data-tooltip]:before {
    content: '';
    border: 6px solid transparent; }
  [data-tooltip]:after {
    height: 22px;
    padding: 11px 11px 0 11px;
    font-size: 13px;
    line-height: 11px;
    content: attr(data-tooltip);
    white-space: nowrap; }
  [data-tooltip].simptip-position-top:before {
    border-top-color: #87010b; }
  [data-tooltip].simptip-position-top:after {
    background-color: #87010b;
    color: #fff7f1; }
  [data-tooltip].simptip-position-bottom:before {
    border-bottom-color: #87010b; }
  [data-tooltip].simptip-position-bottom:after {
    background-color: #87010b;
    color: #fff7f1; }
  [data-tooltip].simptip-position-left:before {
    border-left-color: #87010b; }
  [data-tooltip].simptip-position-left:after {
    background-color: #87010b;
    color: #fff7f1; }
  [data-tooltip].simptip-position-right:before {
    border-right-color: #87010b; }
  [data-tooltip].simptip-position-right:after {
    background-color: #87010b;
    color: #fff7f1; }
  [data-tooltip].simptip-position-top.half-arrow:before {
    border-right: 7px solid #87010b; }
  [data-tooltip].simptip-position-bottom.half-arrow:before {
    border-right: 7px solid #87010b; }
  [data-tooltip]:hover, [data-tooltip]:focus {
    background-color: transparent; }
    [data-tooltip]:hover:before, [data-tooltip]:hover:after, [data-tooltip]:focus:before, [data-tooltip]:focus:after {
      opacity: 1;
      visibility: visible; }

/******************************* Position ****************************/
.simptip-position-left:before, .simptip-position-right:before, .simptip-position-left:after, .simptip-position-right:after {
  bottom: 50%; }

.simptip-position-left:before, .simptip-position-right:before {
  margin-bottom: -5px; }

.simptip-position-left:after, .simptip-position-right:after {
  margin-bottom: -14.66667px; }

.half-arrow.simptip-position-left:before, .half-arrow.simptip-position-right:before {
  bottom: 16px;
  border-style: none;
  border-top: 7px solid transparent; }

.simptip-multiline.simptip-position-left:before, .simptip-multiline.simptip-position-right:before, .simptip-multiline.simptip-position-left:after, .simptip-multiline.simptip-position-right:after {
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  -webkit-filter: blur(0px);
  filter: blur(0px);
  margin-bottom: 0; }

.simptip-multiline.simptip-position-left:before, .simptip-multiline.simptip-position-right:before {
  margin-bottom: 0; }

.simptip-multiline.half-arrow.simptip-position-left:before, .simptip-multiline.half-arrow.simptip-position-right:before {
  margin-bottom: -2px; }

.simptip-position-right:before, .simptip-position-right:after {
  left: 100%; }

.simptip-position-right:before {
  margin-left: -2px; }

.simptip-position-right:after {
  margin-left: 10px; }

.simptip-position-right.simptip-movable:before {
  margin-left: -10px; }

.simptip-position-right.simptip-movable:after {
  margin-left: 2px; }

.simptip-position-right.simptip-movable:hover:before, .simptip-position-right.simptip-movable:hover:after {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px); }

.simptip-position-right.simptip-movable.half-arrow:before {
  margin-left: -5px; }

.simptip-position-right.simptip-movable.simptip-multiline:hover:before, .simptip-position-right.simptip-movable.simptip-multiline:hover:after {
  -webkit-transform: translate(10px, 50%);
  -moz-transform: translate(10px, 50%);
  -ms-transform: translate(10px, 50%);
  -o-transform: translate(10px, 50%);
  transform: translate(10px, 50%); }

.simptip-position-right.half-arrow:before {
  margin-left: 3px;
  border-right: 7px solid #87010b; }

.simptip-position-left:before, .simptip-position-left:after {
  right: 100%; }

.simptip-position-left:before {
  margin-right: -2px; }

.simptip-position-left:after {
  margin-right: 10px; }

.simptip-position-left.simptip-movable:before {
  margin-right: -10px; }

.simptip-position-left.simptip-movable:after {
  margin-right: 2px; }

.simptip-position-left.simptip-movable:hover:before, .simptip-position-left.simptip-movable:hover:after {
  -webkit-transform: translateX(-10px);
  -moz-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  -o-transform: translateX(-10px);
  transform: translateX(-10px); }

.simptip-position-left.simptip-movable.half-arrow:before {
  margin-right: -5px; }

.simptip-position-left.simptip-movable.simptip-multiline:hover:before, .simptip-position-left.simptip-movable.simptip-multiline:hover:after {
  -webkit-transform: translate(-10px, 50%);
  -moz-transform: translate(-10px, 50%);
  -ms-transform: translate(-10px, 50%);
  -o-transform: translate(-10px, 50%);
  transform: translate(-10px, 50%); }

.simptip-position-left.half-arrow:before {
  margin-right: 3px;
  border-left: 7px solid #87010b; }

.simptip-position-top:before, .simptip-position-bottom:before, .simptip-position-top:after, .simptip-position-bottom:after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%); }

.simptip-position-top:after, .simptip-position-bottom:after {
  width: auto; }

.half-arrow.simptip-position-top:before, .half-arrow.simptip-position-bottom:before {
  border-style: none;
  border-right: 7px solid #87010b; }

.simptip-position-bottom:before, .simptip-position-bottom:after {
  top: 100%; }

.simptip-position-bottom:before {
  margin-top: -5px; }

.simptip-position-bottom:after {
  margin-top: 7px; }

.simptip-position-bottom:hover:before, .simptip-position-bottom:hover:after {
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0); }

.simptip-position-bottom.simptip-movable:before {
  margin-top: -15px; }

.simptip-position-bottom.simptip-movable:after {
  margin-top: -3px; }

.simptip-position-bottom.simptip-movable:hover:before, .simptip-position-bottom.simptip-movable:hover:after {
  -webkit-transform: translate(-50%, 10px);
  -moz-transform: translate(-50%, 10px);
  -ms-transform: translate(-50%, 10px);
  -o-transform: translate(-50%, 10px);
  transform: translate(-50%, 10px); }

.simptip-position-bottom.simptip-movable.half-arrow:before {
  margin-top: -10px; }

.simptip-position-bottom.half-arrow:before {
  margin-top: 0;
  border-top: 7px solid transparent; }

.simptip-position-top:before, .simptip-position-top:after {
  bottom: 100%; }

.simptip-position-top:before {
  margin-bottom: -5px; }

.simptip-position-top:after {
  margin-bottom: 7px; }

.simptip-position-top:hover:before, .simptip-position-top:hover:after {
  -webkit-transform: translate(-50%, 0px);
  -moz-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  -o-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px); }

.simptip-position-top.simptip-movable:before {
  margin-bottom: -15px; }

.simptip-position-top.simptip-movable:after {
  margin-bottom: -3px; }

.simptip-position-top.simptip-movable:hover:before, .simptip-position-top.simptip-movable:hover:after {
  -webkit-transform: translate(-50%, -10px);
  -moz-transform: translate(-50%, -10px);
  -ms-transform: translate(-50%, -10px);
  -o-transform: translate(-50%, -10px);
  transform: translate(-50%, -10px); }

.simptip-position-top.simptip-movable.half-arrow:before {
  margin-bottom: -10px; }

.simptip-position-top.half-arrow:before {
  margin-bottom: 0;
  border-bottom: 7px solid transparent; }

/******************************* Features ****************************/
.simptip-movable:before, .simptip-movable:after {
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  transition: all 0.1s linear; }

.simptip-smooth:after {
  -webkit-border-radius: 4px;
  border-radius: 4px; }

.simptip-fade:before, .simptip-fade:after {
  -webkit-transition: opacity 0.2s linear, visibility 0.2s linear;
  -moz-transition: opacity 0.2s linear, visibility 0.2s linear;
  -o-transition: opacity 0.2s linear, visibility 0.2s linear;
  -ms-transition: opacity 0.2s linear, visibility 0.2s linear;
  transition: opacity 0.2s linear, visibility 0.2s linear; }

.simptip-multiline:after {
  height: auto;
  width: 150px;
  padding: 11px;
  line-height: 19px;
  white-space: normal;
  text-align: left; }

/**************************** Diverse Colors *************************/
.simptip-success.simptip-position-top:before {
  border-top-color: #62c462; }

.simptip-success.simptip-position-top:after {
  background-color: #62c462;
  color: #fff7f1; }

.simptip-success.simptip-position-bottom:before {
  border-bottom-color: #62c462; }

.simptip-success.simptip-position-bottom:after {
  background-color: #62c462;
  color: #fff7f1; }

.simptip-success.simptip-position-left:before {
  border-left-color: #62c462; }

.simptip-success.simptip-position-left:after {
  background-color: #62c462;
  color: #fff7f1; }

.simptip-success.simptip-position-right:before {
  border-right-color: #62c462; }

.simptip-success.simptip-position-right:after {
  background-color: #62c462;
  color: #fff7f1; }

.simptip-success.simptip-position-top.half-arrow:before {
  border-right: 7px solid #62c462; }

.simptip-success.simptip-position-bottom.half-arrow:before {
  border-right: 7px solid #62c462; }

.simptip-info.simptip-position-top:before {
  border-top-color: #5bc0de; }

.simptip-info.simptip-position-top:after {
  background-color: #5bc0de;
  color: #fff7f1; }

.simptip-info.simptip-position-bottom:before {
  border-bottom-color: #5bc0de; }

.simptip-info.simptip-position-bottom:after {
  background-color: #5bc0de;
  color: #fff7f1; }

.simptip-info.simptip-position-left:before {
  border-left-color: #5bc0de; }

.simptip-info.simptip-position-left:after {
  background-color: #5bc0de;
  color: #fff7f1; }

.simptip-info.simptip-position-right:before {
  border-right-color: #5bc0de; }

.simptip-info.simptip-position-right:after {
  background-color: #5bc0de;
  color: #fff7f1; }

.simptip-info.simptip-position-top.half-arrow:before {
  border-right: 7px solid #5bc0de; }

.simptip-info.simptip-position-bottom.half-arrow:before {
  border-right: 7px solid #5bc0de; }

.simptip-danger.simptip-position-top:before {
  border-top-color: #e74c3c; }

.simptip-danger.simptip-position-top:after {
  background-color: #e74c3c;
  color: #fff7f1; }

.simptip-danger.simptip-position-bottom:before {
  border-bottom-color: #e74c3c; }

.simptip-danger.simptip-position-bottom:after {
  background-color: #e74c3c;
  color: #fff7f1; }

.simptip-danger.simptip-position-left:before {
  border-left-color: #e74c3c; }

.simptip-danger.simptip-position-left:after {
  background-color: #e74c3c;
  color: #fff7f1; }

.simptip-danger.simptip-position-right:before {
  border-right-color: #e74c3c; }

.simptip-danger.simptip-position-right:after {
  background-color: #e74c3c;
  color: #fff7f1; }

.simptip-danger.simptip-position-top.half-arrow:before {
  border-right: 7px solid #e74c3c; }

.simptip-danger.simptip-position-bottom.half-arrow:before {
  border-right: 7px solid #e74c3c; }

.simptip-warning.simptip-position-top:before {
  border-top-color: #e67e22; }

.simptip-warning.simptip-position-top:after {
  background-color: #e67e22;
  color: #fff7f1; }

.simptip-warning.simptip-position-bottom:before {
  border-bottom-color: #e67e22; }

.simptip-warning.simptip-position-bottom:after {
  background-color: #e67e22;
  color: #fff7f1; }

.simptip-warning.simptip-position-left:before {
  border-left-color: #e67e22; }

.simptip-warning.simptip-position-left:after {
  background-color: #e67e22;
  color: #fff7f1; }

.simptip-warning.simptip-position-right:before {
  border-right-color: #e67e22; }

.simptip-warning.simptip-position-right:after {
  background-color: #e67e22;
  color: #fff7f1; }

.simptip-warning.simptip-position-top.half-arrow:before {
  border-right: 7px solid #e67e22; }

.simptip-warning.simptip-position-bottom.half-arrow:before {
  border-right: 7px solid #e67e22; }

:root {
  --font-frende: Studio6, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-ionicons: "Ionicons";
  --brand-white: #fff7f1;
  --brand-red: #c60c30;
  --brand-dark: #3f0613;
  --brand-cream: #ffead2;
  --brand-beige: #ffc69d;
  --brand-pink: #ff8e99;
  --brand-peach: #dc1234;
  --brand-brown: #87010b;
  --brand-green: #007162;
  --brand-blue: #0e5eab;
  --brand-blue-5: #F3EFED;
  --brand-black: #3E0714;
  --brand-yellow: #f9c50a;
  --input-fill: #FFF0E1;
  --help-text: #794E56;
  --frende-red-pill: #ef3346;
  --color-frende-red: #c60c30;
  --color-frende-black: #393a41;
  --color-frende-light-blue: #f6f8fa;
  --color-lenker: #306ba1;
  --color-godkjent: #468330;
  --color-vasel: #f9c50a;
  --color-disabled: #aaaaaa;
  --color-blue-80: #5c8ab5;
  --color-blue-60: #88aac9;
  --color-blue-40: #b4c9dc;
  --color-blue-20: #e0e8f0;
  --color-black-100: #000000;
  --color-black-87: #222222;
  --color-black-80: #333333;
  --color-black-70: #4b4b4b;
  --color-black-55: #737373;
  --color-black-28: #9c9c9c;
  --color-black-13: #c4c4c4;
  --color-black-9: #e5e5e5;
  --color-black-7: #ededed;
  --color-black-header: #333333;
  --color-white: #ffffff;
  --color-background: #eef0f2;
  --color-selected: #192e4f;
  --screen-sx: 480px;
  --screen-sm: 768px;
  --screen-md: 922px;
  --screen-lg: 1170px;
  --full-view: 1440px;
  --component-max-width: 700px;
  --input-component-max-width: 500px; }

.access-group {
  margin: 0px -15px;
  padding: 15px;
  border: 2px solid #ffc69d; }
  .access-group .group-title {
    color: #ffc69d;
    background-color: #fff7f1;
    display: inline-block;
    position: absolute;
    margin-top: -30px;
    padding: 0px 20px; }

.card-link-list {
  width: 100%; }
  .card-link-list .card {
    padding: 8px 15px;
    width: 100%;
    text-align: left;
    border-radius: 0px;
    margin: 15px 8px 15px 0px;
    border: 1px solid #3f0613; }
    .card-link-list .card .col-8,
    .card-link-list .card .col-4 {
      padding: 0px; }
    .card-link-list .card h5, .card-link-list .card h6 {
      margin-bottom: 0px; }
    .card-link-list .card .link-section {
      margin-top: 10px; }
      .card-link-list .card .link-section .link-type {
        position: relative;
        display: inline-block;
        width: 100%;
        font-size: 16px; }
        .card-link-list .card .link-section .link-type:after {
          width: 30px;
          height: 30px;
          right: -15px;
          position: absolute;
          content: "\f119";
          font-family: Ionicons;
          font-size: 35px;
          display: inline-block;
          color: #dc1234;
          transition: right .5s; }
    .card-link-list .card:hover h4:after,
    .card-link-list .card:hover .link-type:after {
      right: -20px;
      color: currentcolor; }
    .card-link-list .card a.cover-all {
      display: block;
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0px;
      left: 0px; }
  .card-link-list .only-link {
    text-decoration: none;
    color: inherit; }
    .card-link-list .only-link .card {
      cursor: pointer;
      padding: 20px 45px 20px 30px;
      border: 1px solid #3f0613; }
      .card-link-list .only-link .card:after {
        width: 30px;
        height: 30px;
        right: 20px;
        top: calc(50% - 25px);
        position: absolute;
        content: "\f119";
        font-family: Ionicons;
        font-size: 35px;
        display: inline-block;
        color: #dc1234;
        transition: right .5s; }
      .card-link-list .only-link .card:hover:after {
        right: 15px;
        color: currentColor; }

.color-block .color-display {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 24px 0px 48px 0px; }
  .color-block .color-display[style='background-color:#FFF7F1'], .color-block .color-display[style='background-color:#fff7f1'] {
    border: 1px solid #3f0613; }

.color-block .color-codes {
  column-count: 2; }
  @media (max-width: 768px) {
    .color-block .color-codes {
      column-count: 1; } }
.color-block .sub-title {
  font-weight: bold; }

.table-wrapper {
  overflow-x: auto; }
  .table-wrapper:-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey; }

:root {
  --font-frende: Studio6, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-ionicons: "Ionicons";
  --brand-white: #fff7f1;
  --brand-red: #c60c30;
  --brand-dark: #3f0613;
  --brand-cream: #ffead2;
  --brand-beige: #ffc69d;
  --brand-pink: #ff8e99;
  --brand-peach: #dc1234;
  --brand-brown: #87010b;
  --brand-green: #007162;
  --brand-blue: #0e5eab;
  --brand-blue-5: #F3EFED;
  --brand-black: #3E0714;
  --brand-yellow: #f9c50a;
  --input-fill: #FFF0E1;
  --help-text: #794E56;
  --frende-red-pill: #ef3346;
  --color-frende-red: #c60c30;
  --color-frende-black: #393a41;
  --color-frende-light-blue: #f6f8fa;
  --color-lenker: #306ba1;
  --color-godkjent: #468330;
  --color-vasel: #f9c50a;
  --color-disabled: #aaaaaa;
  --color-blue-80: #5c8ab5;
  --color-blue-60: #88aac9;
  --color-blue-40: #b4c9dc;
  --color-blue-20: #e0e8f0;
  --color-black-100: #000000;
  --color-black-87: #222222;
  --color-black-80: #333333;
  --color-black-70: #4b4b4b;
  --color-black-55: #737373;
  --color-black-28: #9c9c9c;
  --color-black-13: #c4c4c4;
  --color-black-9: #e5e5e5;
  --color-black-7: #ededed;
  --color-black-header: #333333;
  --color-white: #ffffff;
  --color-background: #eef0f2;
  --color-selected: #192e4f;
  --screen-sx: 480px;
  --screen-sm: 768px;
  --screen-md: 922px;
  --screen-lg: 1170px;
  --full-view: 1440px;
  --component-max-width: 700px;
  --input-component-max-width: 500px; }

.faq-container > ul.faq-list {
  width: 100%;
  display: table;
  table-layout: fixed;
  border-collapse: collapse; }
  .faq-container > ul.faq-list > li {
    display: table-cell;
    word-wrap: break-word;
    padding: 5px 0px;
    vertical-align: top; }
    .faq-container > ul.faq-list > li > .qa-container:first-child {
      border-top: 1px solid #3f0613; }

.faq-container .qa-container {
  padding: 16px;
  padding-bottom: 6px;
  cursor: pointer;
  border-bottom: 1px solid #3f0613; }
  .faq-container .qa-container:hover, .faq-container .qa-container:focus {
    background-color: #ffead2; }
  .faq-container .qa-container .question {
    display: inline-table;
    width: 100%;
    color: #3f0613;
    padding-bottom: 15px; }
    .faq-container .qa-container .question:hover, .faq-container .qa-container .question:focus {
      background-color: #ffead2; }
    .faq-container .qa-container .question:after {
      width: 10px;
      font-weight: bold;
      color: #dc1234;
      display: table-cell;
      height: 100%;
      vertical-align: middle;
      content: "\f3d0";
      font-family: Ionicons;
      font-size: 22px;
      transform: rotate(0deg);
      padding-right: 5px;
      transition: transform .3s ease-out; }
  .faq-container .qa-container .answer {
    transition: max-height .3s ease-out; }
    .faq-container .qa-container .answer .rich-text {
      margin-top: 10px; }
  .faq-container .qa-container[aria-expanded="true"] {
    background-color: #ffead2; }
    .faq-container .qa-container[aria-expanded="true"] .question {
      font-weight: bold; }
      .faq-container .qa-container[aria-expanded="true"] .question:after {
        transform: rotate(-180deg);
        padding-left: 5px; }

.flexy-table .rich-text {
  margin: 0 !important; }

.flexy-table tr th {
  background-color: #87010b;
  color: #fff7f1;
  border-bottom-color: #fff7f1 !important;
  font-weight: normal; }
  .flexy-table tr th a {
    color: #fff7f1;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    text-decoration-color: #ffc69d; }
    .flexy-table tr th a svg,
    .flexy-table tr th a .icon {
      display: inline-block;
      vertical-align: middle;
      width: 24px;
      height: 24px;
      margin-right: 8px;
      margin-top: 4px;
      stroke: #fff7f1;
      fill: none; }
    .flexy-table tr th a.selected {
      font-weight: bold !important; }
    .flexy-table tr th a:hover, .flexy-table tr th a.hover, .flexy-table tr th a:active, .flexy-table tr th a:focus {
      color: #87010b;
      background-color: #ffc69d;
      padding: 2px 0; }
    .flexy-table tr th a.no-effect:hover, .flexy-table tr th a.no-effect:focus {
      color: inherit;
      background: none; }
    .flexy-table tr th a.disabled {
      pointer-events: none !important;
      color: #aaa !important;
      text-decoration-color: #aaa !important; }
      .flexy-table tr th a.disabled svg,
      .flexy-table tr th a.disabled .icon {
        stroke: #aaa !important; }
    .flexy-table tr th a .visual-link {
      color: #fff7f1;
      text-decoration: underline;
      text-underline-offset: 4px;
      text-decoration-thickness: 2px;
      text-decoration-color: #ffc69d; }
      .flexy-table tr th a .visual-link svg,
      .flexy-table tr th a .visual-link .icon {
        display: inline-block;
        vertical-align: middle;
        width: 24px;
        height: 24px;
        margin-right: 8px;
        margin-top: 4px;
        stroke: #fff7f1;
        fill: none; }
      .flexy-table tr th a .visual-link.selected {
        font-weight: bold !important; }
      .flexy-table tr th a .visual-link:hover, .flexy-table tr th a .visual-link.hover, .flexy-table tr th a .visual-link:active, .flexy-table tr th a .visual-link:focus {
        color: #87010b;
        background-color: #ffc69d;
        padding: 2px 0; }
      .flexy-table tr th a .visual-link.no-effect:hover, .flexy-table tr th a .visual-link.no-effect:focus {
        color: inherit;
        background: none; }
      .flexy-table tr th a .visual-link.disabled {
        pointer-events: none !important;
        color: #aaa !important;
        text-decoration-color: #aaa !important; }
        .flexy-table tr th a .visual-link.disabled svg,
        .flexy-table tr th a .visual-link.disabled .icon {
          stroke: #aaa !important; }

.flexy-table tr:last-child th {
  border-block-color: #87010b !important; }

.flexy-table.alternating_color tr:nth-child(odd) {
  background-color: #ffead2; }

.flexy-table.column-lines tr td {
  border-right: 1px solid #87010b; }
  .flexy-table.column-lines tr td:first-child {
    border-left: 1px solid #87010b; }

.flexy-table.column-lines tr th {
  border-right: 1px solid #fff7f1; }
  .flexy-table.column-lines tr th:first-child {
    border-left: 1px solid #87010b; }
  .flexy-table.column-lines tr th:last-child {
    border-right: 1px solid #87010b; }

.html-component-style {
  margin: 20px 0px; }
  .html-component-style:first-child {
    padding-top: 20px; }
  .html-component-style h3 {
    font-size: 25px; }
  .html-component-style h4 {
    font-size: 20px; }
  .html-component-style .html-component-state {
    margin-bottom: 20px; }
    .html-component-style .html-component-state ul.header {
      list-style: none;
      margin-bottom: 20px; }
      .html-component-style .html-component-state ul.header li {
        display: inline;
        margin: 5px 15px 5px 0px; }
        .html-component-style .html-component-state ul.header li a.visual-link {
          border-bottom: none; }
          .html-component-style .html-component-state ul.header li a.visual-link:hover, .html-component-style .html-component-state ul.header li a.visual-link:active, .html-component-style .html-component-state ul.header li a.visual-link:focus, .html-component-style .html-component-state ul.header li a.visual-link[aria-expanded='true'] {
            color: inherit;
            border-bottom: 2px solid #87010b;
            background-size: 100% 0; }
          .html-component-style .html-component-state ul.header li a.visual-link[aria-expanded='true'] {
            color: #3f0613; }
    .html-component-style .html-component-state ul.details {
      list-style: none;
      margin-top: 15px; }
      .html-component-style .html-component-state ul.details li img {
        max-width: 100%; }
      .html-component-style .html-component-state ul.details ul.all-states {
        list-style: none; }
        .html-component-style .html-component-state ul.details ul.all-states li {
          padding: 10px 20px 10px 0px;
          vertical-align: top; }
          .html-component-style .html-component-state ul.details ul.all-states li > span {
            font-style: italic; }
    .html-component-style .html-component-state input[type="radio"].frende-input + .frende-radio-label span.radio-mark svg {
      margin-top: -3px; }

.helper-flex-container.icon {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-flow: row wrap;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-flex-flow: row wrap; }

.icon-box {
  border: 1px solid transparent;
  text-align: center;
  margin: 10px 10px 10px 0;
  padding: 20px 0 15px 0;
  width: 197px;
  height: 150px;
  background-color: #f6f8fa;
  position: relative; }
  .icon-box svg {
    width: 70px;
    height: 70px; }
  .icon-box a {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0s 2s, opacity 2s linear;
    -moz-transition: visibility 0s 2s, opacity 2s linear;
    -o-transition: visibility 0s 2s, opacity 2s linear;
    transition: visibility 0s 2s, opacity 2s linear; }
    .icon-box a svg.download {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: #6299ab; }
  .icon-box:hover {
    border: 1px solid #d0d0d0; }
    .icon-box:hover a {
      visibility: visible;
      opacity: 1;
      -webkit-transition: opacity 2s linear;
      -moz-transition: opacity 2s linear;
      -o-transition: opacity 2s linear;
      transition: opacity 2s linear; }

#ninja-slider {
  background: #f5f8fa; }

.info-card {
  padding: 52px;
  border-radius: 30px; }
  .info-card.dark {
    background-color: #3f0613;
    color: #fff7f1; }
    .info-card.dark a {
      color: #fff7f1;
      text-decoration: underline;
      text-underline-offset: 4px;
      text-decoration-thickness: 2px;
      text-decoration-color: #ffc69d; }
      .info-card.dark a svg,
      .info-card.dark a .icon {
        display: inline-block;
        vertical-align: middle;
        width: 24px;
        height: 24px;
        margin-right: 8px;
        margin-top: 4px;
        stroke: #fff7f1;
        fill: none; }
      .info-card.dark a.selected {
        font-weight: bold !important; }
      .info-card.dark a:hover, .info-card.dark a.hover, .info-card.dark a:active, .info-card.dark a:focus {
        color: #3f0613;
        background-color: #ffc69d;
        padding: 2px 0; }
      .info-card.dark a.no-effect:hover, .info-card.dark a.no-effect:focus {
        color: inherit;
        background: none; }
      .info-card.dark a.disabled {
        pointer-events: none !important;
        color: #aaa !important;
        text-decoration-color: #aaa !important; }
        .info-card.dark a.disabled svg,
        .info-card.dark a.disabled .icon {
          stroke: #aaa !important; }
  .info-card.brown {
    background-color: #87010b;
    color: #fff7f1; }
    .info-card.brown a {
      color: #fff7f1;
      text-decoration: underline;
      text-underline-offset: 4px;
      text-decoration-thickness: 2px;
      text-decoration-color: #ffc69d; }
      .info-card.brown a svg,
      .info-card.brown a .icon {
        display: inline-block;
        vertical-align: middle;
        width: 24px;
        height: 24px;
        margin-right: 8px;
        margin-top: 4px;
        stroke: #fff7f1;
        fill: none; }
      .info-card.brown a.selected {
        font-weight: bold !important; }
      .info-card.brown a:hover, .info-card.brown a.hover, .info-card.brown a:active, .info-card.brown a:focus {
        color: #87010b;
        background-color: #ffc69d;
        padding: 2px 0; }
      .info-card.brown a.no-effect:hover, .info-card.brown a.no-effect:focus {
        color: inherit;
        background: none; }
      .info-card.brown a.disabled {
        pointer-events: none !important;
        color: #aaa !important;
        text-decoration-color: #aaa !important; }
        .info-card.brown a.disabled svg,
        .info-card.brown a.disabled .icon {
          stroke: #aaa !important; }
  .info-card.dark h1, .info-card.dark h2, .info-card.dark h3, .info-card.dark h4, .info-card.dark h5, .info-card.dark h6, .info-card.brown h1, .info-card.brown h2, .info-card.brown h3, .info-card.brown h4, .info-card.brown h5, .info-card.brown h6 {
    color: #fff7f1; }
  .info-card.dark ul, .info-card.brown ul {
    list-style-image: url(/static/img/list-type-disk-cream.svg?a9f37726b9fa); }
  .info-card.cream {
    background-color: #ffead2; }
  .info-card.beige {
    background-color: #ffc69d; }
  .info-card .rich-text {
    margin: 0; }

hr.hr-line {
  border-top: 1px solid transparent;
  opacity: 1; }
  hr.hr-line.show {
    border-top-color: #ffc69d; }

h3.title {
  color: #3f0613;
  margin-bottom: 15px;
  padding: 5px 0px; }

.video-block .video-player {
  width: 100%;
  outline: none; }

.video-block .video-title {
  font-weight: bold; }

.video-block iframe {
  width: 100%;
  height: 500px;
  background-color: #ffead2; }

.video-grid .video-card {
  width: 200px;
  margin: 15px 15px 15px 0px; }
  @media (max-width: 480px) {
    .video-grid .video-card {
      margin-left: auto;
      margin-right: auto; } }
  .video-grid .video-card .card {
    height: 100%;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
    cursor: pointer; }
    .video-grid .video-card .card .main-image {
      border-top-right-radius: .25rem;
      border-top-left-radius: .25rem;
      background-color: #87010b;
      height: 130px;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      position: relative;
      text-align: center;
      overflow: hidden; }
      .video-grid .video-card .card .main-image svg {
        color: #fff7f1;
        max-width: 200;
        max-height: 130px; }
    .video-grid .video-card .card h6 {
      text-align: left;
      font-weight: normal;
      padding: 10px 10px 0px 10px;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      height: 3.5rem; }
    .video-grid .video-card .card .description {
      text-align: left;
      padding: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      max-height: 5.5rem;
      font-size: 16px; }
  .video-grid .video-card .video-player {
    width: 100%;
    outline: none; }
  .video-grid .video-card .video-title {
    font-weight: bold; }

#_id-video-grid-lightbox-container {
  max-width: 100%;
  max-height: 100%;
  text-align: center; }
  #_id-video-grid-lightbox-container iframe {
    max-width: 100%; }
  #_id-video-grid-lightbox-container video {
    width: 100%;
    height: 100%; }

.card {
  padding: 25px 15px;
  margin: 15px 15px 15px 0px;
  cursor: default;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05); }
  @media (max-width: 480px) {
    .card {
      margin-left: auto;
      margin-right: auto; } }
  .card .icon-holder {
    display: inline-block;
    background: #393a41;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 15px; }
    .card .icon-holder svg {
      stroke: #ffffff;
      stroke-width: .3px; }
  .card .title {
    margin-bottom: 8px; }
    .card .title h3 {
      margin-bottom: 0px; }
    .card .title a.visual-link h3 {
      display: inline; }
    .card .title a.visual-link:hover h3, .card .title a.visual-link:focus h3 {
      color: #ffffff; }
  .card .description {
    min-height: 50px; }
    .card .description .rich-text {
      margin: 0px; }

:root {
  --font-frende: Studio6, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-ionicons: "Ionicons";
  --brand-white: #fff7f1;
  --brand-red: #c60c30;
  --brand-dark: #3f0613;
  --brand-cream: #ffead2;
  --brand-beige: #ffc69d;
  --brand-pink: #ff8e99;
  --brand-peach: #dc1234;
  --brand-brown: #87010b;
  --brand-green: #007162;
  --brand-blue: #0e5eab;
  --brand-blue-5: #F3EFED;
  --brand-black: #3E0714;
  --brand-yellow: #f9c50a;
  --input-fill: #FFF0E1;
  --help-text: #794E56;
  --frende-red-pill: #ef3346;
  --color-frende-red: #c60c30;
  --color-frende-black: #393a41;
  --color-frende-light-blue: #f6f8fa;
  --color-lenker: #306ba1;
  --color-godkjent: #468330;
  --color-vasel: #f9c50a;
  --color-disabled: #aaaaaa;
  --color-blue-80: #5c8ab5;
  --color-blue-60: #88aac9;
  --color-blue-40: #b4c9dc;
  --color-blue-20: #e0e8f0;
  --color-black-100: #000000;
  --color-black-87: #222222;
  --color-black-80: #333333;
  --color-black-70: #4b4b4b;
  --color-black-55: #737373;
  --color-black-28: #9c9c9c;
  --color-black-13: #c4c4c4;
  --color-black-9: #e5e5e5;
  --color-black-7: #ededed;
  --color-black-header: #333333;
  --color-white: #ffffff;
  --color-background: #eef0f2;
  --color-selected: #192e4f;
  --screen-sx: 480px;
  --screen-sm: 768px;
  --screen-md: 922px;
  --screen-lg: 1170px;
  --full-view: 1440px;
  --component-max-width: 700px;
  --input-component-max-width: 500px; }

.faq-container > ul.faq-list {
  width: 100%;
  display: table;
  table-layout: fixed;
  border-collapse: collapse; }
  .faq-container > ul.faq-list > li {
    display: table-cell;
    word-wrap: break-word;
    padding: 5px 0px;
    vertical-align: top; }
    .faq-container > ul.faq-list > li > .qa-container:first-child {
      border-top: 1px solid #3f0613; }

.faq-container .qa-container {
  padding: 16px;
  padding-bottom: 6px;
  cursor: pointer;
  border-bottom: 1px solid #3f0613; }
  .faq-container .qa-container:hover, .faq-container .qa-container:focus {
    background-color: #ffead2; }
  .faq-container .qa-container .question {
    display: inline-table;
    width: 100%;
    color: #3f0613;
    padding-bottom: 15px; }
    .faq-container .qa-container .question:hover, .faq-container .qa-container .question:focus {
      background-color: #ffead2; }
    .faq-container .qa-container .question:after {
      width: 10px;
      font-weight: bold;
      color: #dc1234;
      display: table-cell;
      height: 100%;
      vertical-align: middle;
      content: "\f3d0";
      font-family: Ionicons;
      font-size: 22px;
      transform: rotate(0deg);
      padding-right: 5px;
      transition: transform .3s ease-out; }
  .faq-container .qa-container .answer {
    transition: max-height .3s ease-out; }
    .faq-container .qa-container .answer .rich-text {
      margin-top: 10px; }
  .faq-container .qa-container[aria-expanded="true"] {
    background-color: #ffead2; }
    .faq-container .qa-container[aria-expanded="true"] .question {
      font-weight: bold; }
      .faq-container .qa-container[aria-expanded="true"] .question:after {
        transform: rotate(-180deg);
        padding-left: 5px; }

.feedback {
  text-align: center; }
  .feedback .feedback-title {
    text-align: center; }
  .feedback .feedback-rating {
    unicode-bidi: bidi-override;
    direction: rtl;
    text-align: center;
    font-size: 32px; }
    .feedback .feedback-rating > input {
      display: none; }
    .feedback .feedback-rating > span {
      display: inline-block;
      position: relative;
      width: 1.1em; }
      .feedback .feedback-rating > span:hover, .feedback .feedback-rating > span:hover ~ span {
        color: transparent; }
        .feedback .feedback-rating > span:hover:before, .feedback .feedback-rating > span:hover:hover ~ span:before, .feedback .feedback-rating > span:hover ~ span:before, .feedback .feedback-rating > span:hover ~ span:hover ~ span:before {
          content: "\2605";
          position: absolute;
          left: 0;
          color: gold; }
    .feedback .feedback-rating > label {
      display: inline-block;
      position: relative;
      width: 0.8em;
      font-weight: normal;
      font-size: 40px; }
      .feedback .feedback-rating > label:hover, .feedback .feedback-rating > label:hover ~ label {
        color: transparent; }
        .feedback .feedback-rating > label:hover:before, .feedback .feedback-rating > label:hover:hover ~ label:before, .feedback .feedback-rating > label:hover ~ label:before, .feedback .feedback-rating > label:hover ~ label:hover ~ label:before {
          content: "\2605";
          position: absolute;
          left: 0;
          color: gold; }
  .feedback input[type="radio"]:checked + label,
  .feedback input[type="radio"]:checked + label ~ label {
    color: transparent; }
    .feedback input[type="radio"]:checked + label:before,
    .feedback input[type="radio"]:checked + label ~ label:before,
    .feedback input[type="radio"]:checked + label ~ label:before,
    .feedback input[type="radio"]:checked + label ~ label ~ label:before {
      content: "\2605";
      position: absolute;
      left: 0;
      color: gold; }
  .feedback textarea {
    border-radius: 5px;
    border: 1px solid #306ba1; }

.bottom-feedback-link {
  float: right; }

.mobile-filter {
  position: relative;
  background-color: #ffffff;
  border-bottom: 2px solid #ededed;
  border-top: 2px solid #ededed; }
  .mobile-filter ul.filter-header-menu > li {
    padding: 0px 15px;
    display: inline-block; }
    .mobile-filter ul.filter-header-menu > li span {
      padding-right: 25px;
      position: relative;
      border-bottom: 2px solid transparent;
      font-size: 18px;
      margin-top: 5px; }
      .mobile-filter ul.filter-header-menu > li span:after {
        content: "";
        position: absolute;
        top: 8px;
        right: 0px;
        width: 20px;
        height: 20px;
        transform: rotate(180deg);
        background: url('data:image/svg+xml,<svg version="1.2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" overflow="visible" preserveAspectRatio="none" viewBox="0 0 24 24" width="24" height="24"><g><path xmlns:default="http://www.w3.org/2000/svg" d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z" style="fill: rgb(57, 58, 65);" vector-effect="non-scaling-stroke"/></g></svg>'); }
    .mobile-filter ul.filter-header-menu > li.active {
      background-color: #4d4f53;
      color: #ffffff; }
      .mobile-filter ul.filter-header-menu > li.active span {
        color: #ffffff; }
        .mobile-filter ul.filter-header-menu > li.active span:after {
          top: 5px;
          transform: rotate(0deg);
          background: url('data:image/svg+xml,<svg version="1.2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" overflow="visible" preserveAspectRatio="none" viewBox="0 0 24 24" width="24" height="24"><g><path xmlns:default="http://www.w3.org/2000/svg" d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z" style="fill: rgb(255, 255, 255);" vector-effect="non-scaling-stroke"/></g></svg>'); }
  .mobile-filter ul.filter-menu {
    background-color: #4d4f53; }
    .mobile-filter ul.filter-menu > li {
      list-style-type: none; }
      .mobile-filter ul.filter-menu > li h3 {
        display: none; }
      .mobile-filter ul.filter-menu > li ul.filter-list {
        position: relative;
        list-style: none;
        display: none;
        padding: 0px;
        width: 100%;
        left: 0;
        z-index: 1000;
        background: #4d4f53; }
        .mobile-filter ul.filter-menu > li ul.filter-list li {
          padding: 4px 0px 4px 10px;
          margin: 2px 0px;
          background-color: #4d4f53;
          border-left: 3px solid transparent;
          display: list-item; }
          .mobile-filter ul.filter-menu > li ul.filter-list li:first-child {
            margin-top: 0px; }
          .mobile-filter ul.filter-menu > li ul.filter-list li:hover, .mobile-filter ul.filter-menu > li ul.filter-list li:focus, .mobile-filter ul.filter-menu > li ul.filter-list li:active {
            border-left: 3px solid #306ba1; }
            .mobile-filter ul.filter-menu > li ul.filter-list li:hover a, .mobile-filter ul.filter-menu > li ul.filter-list li:focus a, .mobile-filter ul.filter-menu > li ul.filter-list li:active a {
              text-decoration: none;
              color: #c60c30; }
              .mobile-filter ul.filter-menu > li ul.filter-list li:hover a svg, .mobile-filter ul.filter-menu > li ul.filter-list li:focus a svg, .mobile-filter ul.filter-menu > li ul.filter-list li:active a svg {
                fill: #c60c30; }
          .mobile-filter ul.filter-menu > li ul.filter-list li a {
            display: inline-block;
            padding: 5px 0px;
            width: 100%;
            color: #ffffff; }
            .mobile-filter ul.filter-menu > li ul.filter-list li a svg {
              width: 24px;
              height: 24px;
              fill: #ffffff; }
          .mobile-filter ul.filter-menu > li ul.filter-list li .chkbox-wrapper {
            background-color: #4d4f53; }
            .mobile-filter ul.filter-menu > li ul.filter-list li .chkbox-wrapper label {
              color: #ffffff; }
      .mobile-filter ul.filter-menu > li.active h3 {
        display: none; }
      .mobile-filter ul.filter-menu > li.active ul.filter-list {
        display: inherit; }

.top-filter,
.right-pane {
  padding: 0px 15px;
  padding-top: 81px; }
  @media (max-width: 922px) {
    .top-filter.lr-padding-0,
    .right-pane.lr-padding-0 {
      padding: 15px !important; } }
  .top-filter ul.filter-menu > li,
  .right-pane ul.filter-menu > li {
    padding: 24px;
    background-color: #ffead2;
    border-radius: 24px;
    display: list-item;
    list-style: none;
    font-size: 16px;
    margin: 20px 0px; }
    .top-filter ul.filter-menu > li:first-child,
    .right-pane ul.filter-menu > li:first-child {
      margin-top: 0px; }
    .top-filter ul.filter-menu > li:last-child,
    .right-pane ul.filter-menu > li:last-child {
      margin-bottom: 0px; }
    .top-filter ul.filter-menu > li h3,
    .right-pane ul.filter-menu > li h3 {
      position: relative;
      padding: 10px 0px 10px 0px;
      margin-top: 0px;
      margin-bottom: 0px;
      border-bottom: 1px solid #3f0613;
      font-size: 18px; }
    .top-filter ul.filter-menu > li ul.filter-list,
    .right-pane ul.filter-menu > li ul.filter-list {
      list-style: none;
      padding: 0px;
      width: 100%;
      left: 0;
      z-index: 1000;
      background: #3f0613; }
      .top-filter ul.filter-menu > li ul.filter-list li,
      .right-pane ul.filter-menu > li ul.filter-list li {
        padding: 4px 8px 4px 0px;
        margin: 1px 0px;
        background-color: #ffead2;
        display: list-item;
        color: #306ba1;
        word-break: break-word; }
        .top-filter ul.filter-menu > li ul.filter-list li a,
        .right-pane ul.filter-menu > li ul.filter-list li a {
          display: inline-block;
          padding: 5px 0px;
          width: 100%;
          position: relative; }
          .top-filter ul.filter-menu > li ul.filter-list li a svg,
          .right-pane ul.filter-menu > li ul.filter-list li a svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
            vertical-align: top;
            display: none !important; }
          .top-filter ul.filter-menu > li ul.filter-list li a span:not(span.forword-arrow),
          .right-pane ul.filter-menu > li ul.filter-list li a span:not(span.forword-arrow) {
            display: inline-block;
            width: calc(100% - 30px); }
          .top-filter ul.filter-menu > li ul.filter-list li a span.forword-arrow,
          .right-pane ul.filter-menu > li ul.filter-list li a span.forword-arrow {
            position: absolute;
            width: 15px;
            height: 2px;
            background-color: #ef3346;
            margin-left: 9px;
            margin-top: 9px;
            transition: margin-left .5s;
            right: 5px;
            bottom: 17px; }
            .top-filter ul.filter-menu > li ul.filter-list li a span.forword-arrow:after, .top-filter ul.filter-menu > li ul.filter-list li a span.forword-arrow:before,
            .right-pane ul.filter-menu > li ul.filter-list li a span.forword-arrow:after,
            .right-pane ul.filter-menu > li ul.filter-list li a span.forword-arrow:before {
              content: '';
              position: absolute;
              width: 10px;
              height: 2px;
              right: -3px;
              background-color: #ef3346; }
            .top-filter ul.filter-menu > li ul.filter-list li a span.forword-arrow:after,
            .right-pane ul.filter-menu > li ul.filter-list li a span.forword-arrow:after {
              top: -3px;
              transform: rotate(45deg); }
            .top-filter ul.filter-menu > li ul.filter-list li a span.forword-arrow::before,
            .right-pane ul.filter-menu > li ul.filter-list li a span.forword-arrow::before {
              top: 3px;
              transform: rotate(-45deg); }
        .top-filter ul.filter-menu > li ul.filter-list li:hover a, .top-filter ul.filter-menu > li ul.filter-list li:focus a, .top-filter ul.filter-menu > li ul.filter-list li:active a,
        .right-pane ul.filter-menu > li ul.filter-list li:hover a,
        .right-pane ul.filter-menu > li ul.filter-list li:focus a,
        .right-pane ul.filter-menu > li ul.filter-list li:active a {
          text-decoration: none;
          color: #dc1234; }
          .top-filter ul.filter-menu > li ul.filter-list li:hover a span.forword-arrow, .top-filter ul.filter-menu > li ul.filter-list li:focus a span.forword-arrow, .top-filter ul.filter-menu > li ul.filter-list li:active a span.forword-arrow,
          .right-pane ul.filter-menu > li ul.filter-list li:hover a span.forword-arrow,
          .right-pane ul.filter-menu > li ul.filter-list li:focus a span.forword-arrow,
          .right-pane ul.filter-menu > li ul.filter-list li:active a span.forword-arrow {
            background-color: currentColor;
            right: 0px; }
            .top-filter ul.filter-menu > li ul.filter-list li:hover a span.forword-arrow:after, .top-filter ul.filter-menu > li ul.filter-list li:hover a span.forword-arrow::before, .top-filter ul.filter-menu > li ul.filter-list li:focus a span.forword-arrow:after, .top-filter ul.filter-menu > li ul.filter-list li:focus a span.forword-arrow::before, .top-filter ul.filter-menu > li ul.filter-list li:active a span.forword-arrow:after, .top-filter ul.filter-menu > li ul.filter-list li:active a span.forword-arrow::before,
            .right-pane ul.filter-menu > li ul.filter-list li:hover a span.forword-arrow:after,
            .right-pane ul.filter-menu > li ul.filter-list li:hover a span.forword-arrow::before,
            .right-pane ul.filter-menu > li ul.filter-list li:focus a span.forword-arrow:after,
            .right-pane ul.filter-menu > li ul.filter-list li:focus a span.forword-arrow::before,
            .right-pane ul.filter-menu > li ul.filter-list li:active a span.forword-arrow:after,
            .right-pane ul.filter-menu > li ul.filter-list li:active a span.forword-arrow::before {
              background-color: currentColor; }

.top-filter {
  padding: 15px 0px; }

.top-menu-fixed-items .dropdown-menu .dropdown-list-container .dropdown-list a {
  padding: 4px 0px; }

.top-menu-fixed-items .profile .nav-link.show {
  display: block !important; }

.search-overview {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.975);
  z-index: 10001;
  min-height: 100%; }
  .search-overview ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #737373;
    opacity: 1;
    /* Firefox */ }
  .search-overview :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #737373; }
  .search-overview ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #737373; }
  .search-overview .search-query-container {
    padding: 0 5%;
    position: relative;
    background-color: #3f0613; }
    .search-overview .search-query-container .logo-and-button {
      width: 100%;
      height: 60px;
      padding-bottom: 30px;
      position: relative; }
      .search-overview .search-query-container .logo-and-button a {
        display: block;
        padding: 20px 0;
        margin-right: 20px; }
        @media (min-width: 768px) {
          .search-overview .search-query-container .logo-and-button a {
            padding: 30px 0; } }
        .search-overview .search-query-container .logo-and-button a img {
          min-width: 146px;
          max-width: 228px; }
      .search-overview .search-query-container .logo-and-button > svg#close {
        width: 17px;
        height: 17px;
        stroke: #ffffff !important;
        stroke-width: 2;
        position: absolute;
        right: 0;
        top: 30px; }
    .search-overview .search-query-container .form-container {
      max-width: 600px;
      width: 100%;
      font-family: Studio6;
      font-size: 22px;
      color: #ffffff;
      padding: 10px 0 0px 0;
      margin-left: auto;
      margin-right: auto; }
      .search-overview .search-query-container .form-container form {
        width: 100%;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        border-bottom: 2px solid #ccc; }
      .search-overview .search-query-container .form-container svg {
        margin: 10px 12.5px 5px 5px;
        height: 35px;
        width: 35px;
        stroke: #ffffff;
        stroke-width: 1.5; }
      .search-overview .search-query-container .form-container .input-container {
        display: inline-block;
        -ms-flex: auto;
        flex: auto;
        margin-bottom: 0px; }
        .search-overview .search-query-container .form-container .input-container input {
          -webkit-appearance: none;
          border: none;
          background: 0 0;
          padding: 10px 0;
          width: 100%;
          min-width: 210px;
          outline: 0; }
  .search-overview .search-results-container {
    padding: 0 8.33333%;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center; }
    .search-overview .search-results-container .search-count {
      margin: 50px 0 0 0;
      max-width: 600px;
      width: 100%;
      color: #4d4f53; }
      .search-overview .search-results-container .search-count span {
        font-style: italic; }
    .search-overview .search-results-container .search-results {
      margin: 20px 0;
      max-width: 600px;
      width: 100%;
      color: #4d4f53; }
      .search-overview .search-results-container .search-results ul {
        padding: 0;
        list-style: none; }
        .search-overview .search-results-container .search-results ul li {
          margin-bottom: 30px; }
      .search-overview .search-results-container .search-results a {
        font-size: 24px;
        margin-bottom: 12px; }
        @media (max-width: 768px) {
          .search-overview .search-results-container .search-results a {
            font-size: 22px; } }
      .search-overview .search-results-container .search-results p.url {
        font-style: italic;
        font-size: 12px;
        font-weight: normal;
        margin-top: 0px;
        height: auto;
        color: #333333;
        line-height: inherit; }
      .search-overview .search-results-container .search-results p.search-summary {
        color: #333333;
        font-size: 18px;
        margin-top: 12px; }
  .search-overview ul.search-section {
    list-style: none;
    margin-top: 10px;
    text-align: center; }
    .search-overview ul.search-section li {
      display: inline-block;
      margin: 10px 0px; }
  .search-overview button, .search-overview input, .search-overview optgroup, .search-overview select, .search-overview textarea {
    color: inherit;
    font: inherit;
    margin: 0; }
  .search-overview .pagination {
    justify-content: center;
    min-width: 50%;
    margin-bottom: 60px; }
    .search-overview .pagination .step-links {
      min-width: 100%;
      text-align: center; }
      .search-overview .pagination .step-links .current {
        padding: 0px 10%; }
    .search-overview .pagination .disabled {
      pointer-events: none; }
      .search-overview .pagination .disabled a {
        color: #9c9c9c; }
  .search-overview #loading {
    text-align: center;
    display: none; }

.page-access-view .menu-container {
  width: 100%;
  display: flex;
  justify-content: space-between; }
  .page-access-view .menu-container .left-nav {
    display: inline-block; }
  .page-access-view .menu-container .right-nav {
    float: right; }

.page-access-view .summary-info {
  margin: 20px 0 20px 20px; }
  .page-access-view .summary-info .info {
    font-weight: 700; }

.page-access-view .export-list {
  float: right;
  padding: 0px !important; }

.page-access-view .allocated-cell {
  background-color: #007162;
  color: #fff7f1; }

.access-list .ui-dialog-titlebar .ui-dialog-title {
  display: none; }

.access-list .ui-button.ui-corner-all.ui-widget.ui-button-icon-only.ui-dialog-titlebar-close {
  margin-top: 0px; }

.itooltip {
  position: relative;
  display: inline-block; }
  .itooltip .itooltiptext {
    background-color: #3E0714;
    color: #fff7f1;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    opacity: 0; }
    .itooltip .itooltiptext.right {
      top: -5px;
      left: 105%; }
      .itooltip .itooltiptext.right:after {
        content: " ";
        position: absolute;
        top: 50%;
        right: 100%;
        /* To the left of the tooltip */
        margin-top: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: transparent #3E0714 transparent transparent; }
    .itooltip .itooltiptext.left {
      top: -5px;
      right: 105%; }
      .itooltip .itooltiptext.left:after {
        content: " ";
        position: absolute;
        top: 50%;
        left: 100%;
        /* To the right of the tooltip */
        margin-top: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: transparent transparent transparent #3E0714; }
    .itooltip .itooltiptext.top {
      bottom: 100%;
      left: 50%;
      transform: translate(-50%, 0); }
      .itooltip .itooltiptext.top:after {
        content: " ";
        position: absolute;
        top: 100%;
        /* At the bottom of the tooltip */
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #3E0714 transparent transparent transparent; }
    .itooltip .itooltiptext.bottom {
      top: 100%;
      left: 50%;
      transform: translate(-50%, 0); }
      .itooltip .itooltiptext.bottom:after {
        content: " ";
        position: absolute;
        bottom: 100%;
        /* At the top of the tooltip */
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: transparent transparent #3E0714 transparent; }
  .itooltip:hover .itooltiptext {
    animation: cssAnimation 0s 0.5s forwards;
    opacity: 0; }

@keyframes cssAnimation {
  to {
    opacity: 1; } }

ul.input-form {
  list-style: none;
  max-width: 800px;
  margin-bottom: 20px; }
  @media (max-width: 480px) {
    ul.input-form {
      width: 90%; } }
  ul.input-form > li {
    margin: 10px 0px;
    text-align: left; }
    ul.input-form > li label {
      vertical-align: top; }
    ul.input-form > li select {
      width: 100%;
      padding: 6px 12px; }
    ul.input-form > li textarea {
      height: 4em; }
    ul.input-form > li ul {
      list-style: none; }

a.btn.loading,
button.loading {
  position: relative;
  pointer-events: none; }
  a.btn.loading img.loading,
  button.loading img.loading {
    display: block; }
  a.btn.loading .label,
  button.loading .label {
    opacity: 0; }

img.loading {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: none; }

@keyframes highlight {
  from {
    background-color: #ffffbb; }
  to {
    background-color: rgba(255, 255, 187, 0); } }

.show {
  display: inherit !important; }

.hide {
  display: none !important; }

.highlight {
  background-image: none;
  background-color: #FFFFBB; }

.sg-content-text ul, ol {
  margin-left: 23px; }

.sg-anchor-box {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px; }

.home-image {
  width: 100%;
  height: 100%;
  padding: 10px 0px; }

.sg-anchor-links {
  color: #666666;
  margin-right: 15px;
  margin-bottom: 10px; }

/* ---------------------------------------------------
    Color page
----------------------------------------------------- */
.sg-color-box {
  margin: 10px;
  border: 1px solid rgba(86, 61, 124, 0.15);
  width: 250px;
  height: 150px;
  -webkit-box-shadow: 5px 5px 15px -6px #000000;
  box-shadow: 5px 5px 15px -6px #000000;
  overflow: hidden;
  padding: 10px; }
  .sg-color-box p {
    font-size: 16px !important;
    padding: 0;
    margin: 2px 0 2px 0; }

.sg-color-txt-bottom {
  margin: 0px 3px 3px 10px;
  font-size: 14px;
  width: 250px; }

.stream-containt .dropdown-text {
  margin-left: -4px;
  padding-left: 24px; }

.ui-dialog {
  z-index: 1000000 !important; }

.ui-widget-header {
  border: none;
  background: none;
  font-family: Studio6, "Helvetica Neue", Helvetica, Arial, sans-serif; }

.ui-button.ui-corner-all.ui-widget.ui-button-icon-only.ui-dialog-titlebar-close {
  background-color: inherit;
  border: none;
  outline: none;
  right: 1em;
  width: 15px;
  height: 15px; }

.ui-widget-overlay {
  background: #393a41;
  opacity: .7;
  filter: Alpha(Opacity=70); }

.ui-button-icon.ui-icon.ui-icon-closethick {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1" width="12" height="12" viewBox="0 0 24 24" style="stroke-width: 3px;stroke: rgb(34, 34, 34);"> <g stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" fill="none"> <path d="M.5.5l23 23M23.5.5l-23 23"/></g> </svg>');
  background-position-x: 0px;
  background-position-y: 0px;
  width: 13px;
  height: 13px; }

.quote {
  border-left: 2px solid #c60c30;
  padding-left: 15px;
  font-size: 18px;
  font-style: italic; }

.no-transition {
  transition: none !important; }

.access-groups,
.published-time {
  color: #3f0613;
  margin-top: 80px;
  margin-bottom: 30px;
  font-size: 14px;
  font-style: italic;
  font-weight: normal; }

.access-groups {
  margin-top: 0px; }

.helper-flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-flow: row wrap;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-flex-flow: row wrap; }

.disabled {
  pointer-events: none !important;
  color: #aaa !important; }

.brand-img {
  height: 26px; }

.pg-wrapper {
  padding-top: 0px;
  margin-left: 0px !important; }
  .pg-wrapper.header {
    position: relative;
    width: 100%;
    padding-left: 0px;
    padding-right: 0px; }

.footer-wrapper {
  margin-top: 60px; }
  @media (max-width: 480px) {
    .footer-wrapper {
      margin-top: 40px; } }
ul {
  list-style-image: url(/static/img/list-type-disk.svg?488bf6382bbc); }
  ul ul {
    list-style-image: none;
    list-style-type: '-'; }

.back-arrow {
  margin-right: 30px;
  cursor: pointer; }
  .back-arrow:before {
    width: 30px;
    left: 17px;
    color: currentColor;
    position: absolute;
    height: 100%;
    content: "\f117";
    font-family: Ionicons;
    font-size: 35px;
    display: inline-block;
    transition: left .5s; }
  .back-arrow.without-tail:before {
    content: "\f3cf"; }
  .back-arrow:hover:before {
    left: 12px; }

.rich-text h6 {
  line-height: 32px; }

.rich-text p {
  line-height: 24px; }

.section-selection-menu .section-item svg {
  fill: #3f0613 !important;
  stroke: #3f0613 !important;
  width: 16px;
  height: 16px;
  margin-top: -4px; }

.top-navigation {
  width: 100%;
  margin-left: auto;
  margin-right: auto; }
  @media (min-width: 1170px) {
    .top-navigation .menu-container {
      padding: 0px 50px; } }
.top-navigation .dropdown-menu {
  width: 254px; }
  .top-navigation .dropdown-menu a svg.access-icon {
    margin-left: 0px;
    width: 14px;
    height: 14px; }

.top-navigation .itooltip[aria-expanded='true'] .itooltiptext {
  display: none; }

.wrapper.vertical-nav .v-nav .nav-header > span {
  line-height: 36px; }

.content-body {
  margin-top: 32px; }

.systest .top-navigation {
  border-bottom: 2px solid #007162; }

.access-tooltip-span .access-icon.padlock-svg-icon {
  fill: currentColor;
  width: 20px;
  height: 20px; }

.statistics-area {
  margin: 24px 0px; }

.gstat-table {
  font-size: 14px;
  margin-bottom: 56px; }
  .gstat-table caption {
    font-size: 16px; }
  .gstat-table thead tr th {
    text-align: center; }
  .gstat-table thead tr.stat-super-header th {
    border-bottom: 1px solid #fff7f1; }
  .gstat-table tbody tr th,
  .gstat-table tbody tr td {
    font-size: 14px; }
  .gstat-table tbody tr td:first-child {
    padding-left: 16px; }
  .gstat-table tbody tr th {
    text-align: center; }
  .gstat-table tbody tr td:not(:first-child):not(:nth-child(2)):not(:nth-child(3)) {
    text-align: right;
    white-space: nowrap; }
  .gstat-table tbody :nth-child(1) td:first-child {
    padding-left: 8px; }
  .gstat-table.report tbody {
    margin-top: 12px; }
    .gstat-table.report tbody:nth-child(odd) {
      background-color: #FFF0E1; }
    .gstat-table.report tbody tr td {
      border-bottom: none; }
  .gstat-table.report tr:hover {
    background-color: #ffead2 !important; }
  .gstat-table.report tr.page {
    border-top: 1px solid #3f0613; }
  .gstat-table.report tr:not(.page) td:first-child:before {
    content: "-";
    margin-right: 4px; }
  .gstat-table.report tbody:last-child tr {
    border-bottom: 1px solid #3f0613; }

table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr:hover {
  background-color: #fff0e1; }

table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th {
  background-color: #87010b;
  color: #fff7f1;
  border-bottom-color: #fff7f1 !important;
  font-weight: normal; }
  table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a {
    color: #fff7f1;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    text-decoration-color: #ffc69d; }
    table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a svg,
    table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a .icon {
      display: inline-block;
      vertical-align: middle;
      width: 24px;
      height: 24px;
      margin-right: 8px;
      margin-top: 4px;
      stroke: #fff7f1;
      fill: none; }
    table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a.selected {
      font-weight: bold !important; }
    table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a:hover, table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a.hover, table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a:active, table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a:focus {
      color: #3f0613;
      background-color: #ffc69d;
      padding: 2px 0; }
    table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a.no-effect:hover, table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a.no-effect:focus {
      color: inherit;
      background: none; }
    table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a.disabled {
      pointer-events: none !important;
      color: #aaa !important;
      text-decoration-color: #aaa !important; }
      table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a.disabled svg,
      table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a.disabled .icon {
        stroke: #aaa !important; }
    table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a .visual-link {
      color: #fff7f1;
      text-decoration: underline;
      text-underline-offset: 4px;
      text-decoration-thickness: 2px;
      text-decoration-color: #ffc69d; }
      table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a .visual-link svg,
      table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a .visual-link .icon {
        display: inline-block;
        vertical-align: middle;
        width: 24px;
        height: 24px;
        margin-right: 8px;
        margin-top: 4px;
        stroke: #fff7f1;
        fill: none; }
      table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a .visual-link.selected {
        font-weight: bold !important; }
      table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a .visual-link:hover, table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a .visual-link.hover, table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a .visual-link:active, table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a .visual-link:focus {
        color: #3f0613;
        background-color: #ffc69d;
        padding: 2px 0; }
      table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a .visual-link.no-effect:hover, table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a .visual-link.no-effect:focus {
        color: inherit;
        background: none; }
      table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a .visual-link.disabled {
        pointer-events: none !important;
        color: #aaa !important;
        text-decoration-color: #aaa !important; }
        table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a .visual-link.disabled svg,
        table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th a .visual-link.disabled .icon {
          stroke: #aaa !important; }

table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr:last-child th {
  border-block-color: #87010b !important; }

table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr td {
  border-right: 1px solid #87010b; }
  table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr td:first-child {
    border-left: 1px solid #87010b; }

table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th {
  border-right: 1px solid #fff7f1; }
  table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th:first-child {
    border-left: 1px solid #87010b; }
  table:not(.flexy-table):not(.table-header-rotated):not(.diagram table) tr th:last-child {
    border-right: 1px solid #87010b; }

.access-section {
  margin-bottom: 30px;
  margin-top: 60px; }
  .access-section .access-group {
    font-size: 14px;
    border: none; }
    .access-section .access-group .group-title {
      font-size: 18px;
      padding-left: 30px;
      z-index: 1; }
      .access-section .access-group .group-title::before {
        content: attr(data-hide); }
      .access-section .access-group .group-title::after {
        content: "\f3d1";
        font-family: Ionicons;
        font-size: 20px;
        text-rendering: auto;
        transform: rotate(270deg);
        position: absolute;
        margin-top: -2px;
        margin-left: 4px;
        left: 4px;
        -webkit-transition: all .4s ease;
        -moz-transition: all .4s ease;
        transition: all .4s ease; }
      .access-section .access-group .group-title.collapsed::before {
        content: attr(data-show); }
      .access-section .access-group .group-title.collapsed::after {
        transform: rotate(90deg); }
    .access-section .access-group #id-mergefields {
      border: 2px solid #ffc69d;
      padding: 15px;
      margin: -17px; }
