﻿@charset "UTF-8";
/*
    For normal styles, later layers have precedence over earlier ones.
    For !important styles, earlier layers have precedence over later ones.
*/
@layer main, visibility;
/* 
    TODO: turn all parts into proper layers, rather than importing them into a layer 
    For now the imports work as a nice step up.
    Note that 'visibility' a already a proper layer, hence the simplified import.
*/
@layer visibility {
  .display-none {
    display: none;
  }
  .display-block {
    display: block;
  }
  .display-grid {
    display: grid;
  }
  .display-contents {
    display: contents;
  }
  .display-inline-block {
    display: inline-block;
  }
  .visibility-hidden {
    visibility: hidden;
  }
  .cursor-pointer {
    cursor: pointer;
  }
  .white-space-nowrap {
    white-space: nowrap;
  }
  .white-space-pre-wrap {
    white-space: pre-wrap;
  }
  .span-columns-all {
    grid-column: 1/-1;
  }
  .justify-items-center {
    justify-items: center;
  }
  .text-align-right {
    text-align: right;
  }
  .text-align-center {
    text-align: center;
  }
  .text-align-left {
    text-align: left;
  }
  .align-items-center {
    align-items: center;
  }
  .align-content-center {
    align-content: center;
  }
  .align-self-cener {
    align-self: center;
  }
  .padding-left-right-2px {
    padding-left: 2px;
    padding-right: 2px;
  }
  .padding-left-2px {
    padding-left: 2px;
  }
  .padding-left-5px {
    padding-left: 5px;
  }
  .overflow-y-scroll {
    overflow-y: scroll;
  }
  .no-margin {
    margin: 0;
  }
  .smoketest-image-main {
    width: 100%;
  }
  .smoketest-image-sub {
    width: 50%;
  }
  .font-size-small {
    font-size: small;
  }
  .font-size-smaller {
    font-size: smaller;
  }
  .width100percent {
    width: 100%;
  }
}
@layer main {
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /*
      These variables are specific to RaboTaxatie 
  */
  /* note that in case of errors (like max < min) the 'min' will win */
  /*
    Individual strip layouts
  */
  .title-strip-layout {
    display: grid;
    grid-area: strip;
    grid-template-areas: "logo title actions";
    grid-template-columns: 80px 1fr max-content;
    width: 100%;
    align-items: center;
  }
  /*.personal-strip-layout {
      display: grid;
      grid-area: strip;
      grid-template-areas: 'logo personal';
      grid-template-columns: $--logo-width 1fr;
      grid-template-rows: minmax(80px, auto);
      justify-content: space-between;
      width: 100%;
      align-items: center;
  }*/
  .navigation-strip-layout {
    display: grid;
    grid-area: strip;
    grid-template-areas: "sl navigation sr";
    grid-template-columns: 80px 1fr 80px;
    width: 100%;
    justify-content: space-between;
  }
  /* The content strip is narrower than the header strip, by the width of the logo. */
  .content-strip-layout {
    grid-area: strip;
    display: grid;
    grid-template-areas: "sl content sr";
    grid-template-columns: 0 1fr 0;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /*
      These variables are specific to RaboTaxatie 
  */
  /* note that in case of errors (like max < min) the 'min' will win */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  #environment {
    transform: rotate(340deg);
    position: fixed;
    left: 10px;
    margin-top: 50px;
    color: darkorange;
    font-size: large;
    font-weight: 500;
  }
  #host {
    transform: rotate(20deg);
    position: fixed;
    right: 10px;
    margin-top: 50px;
    color: darkorange;
    font-size: large;
    font-weight: 500;
  }
  /*
    Individual strip placements and global styling
  */
  #header-strip {
    grid-area: header;
    background-color: white;
  }
  #title-strip {
    grid-area: title;
  }
  #navigation-strip {
    grid-area: navigation;
    background-color: #000099;
    color: #FFF;
  }
  #content-strip {
    grid-area: content;
    /*overflow: auto;*/
  }
  /*
    Individual element placements and styling
  */
  .navigation-chevron {
    padding-top: 3px;
  }
  .fc-navigation-text {
    color: white;
  }
  .logo {
    grid-area: logo;
    align-self: center;
  }
  .title {
    grid-area: title;
    font-size: 30pt;
    color: #009;
  }
  .title-actions {
    display: flex;
    column-gap: 20px;
    grid-area: actions;
    align-self: center;
  }
  .title-action-layout {
    display: grid;
    grid-column-gap: 8px;
    grid-template-areas: "icon text";
    font-size: 12pt;
    float: right;
  }
  .title-action-icon {
    grid-area: icon;
    margin-top: 2px;
  }
  .title-action-icon.inverse {
    border-radius: 3px;
    box-shadow: 0 0 5px #000099;
    background-color: #000099;
    color: white;
  }
  .title-action-text {
    grid-area: text;
  }
  #navigation {
    /*display: none;*/
  }
  .fc-navigation {
    grid-area: navigation;
    align-self: flex-start;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12pt;
  }
  .personal {
    grid-area: personal;
  }
  .personal-layout {
    display: grid;
    grid-template-columns: 0.2fr 0.3fr 0.2fr 0.3fr;
    grid-gap: 10px;
  }
  .content {
    grid-area: content;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 25px;
  }
  #content-backlayer {
    display: block;
    box-shadow: 0 0 10px gray;
    background-color: white;
    z-index: 1;
  }
  #content-loadinglayer {
    color: #000099;
    z-index: 10;
  }
  #content-frontlayer {
    display: none;
    background-color: white;
    background-color: transparent;
    z-index: 100;
  }
  /*
                  Generic styling
  */
  hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #FD6400;
    margin: 1em 0;
    padding: 0;
  }
  hr.sub {
    border-top: 1px solid lightgray;
  }
  hr.sub-narrow {
    border-top: 1px solid lightgray;
    margin: 0.3em 0;
  }
  hr.sub-narrow-light {
    border-top: 1px solid #EEE;
    margin: 0.3em 0;
  }
  .actionIcons {
    white-space: nowrap;
    text-align: left;
  }
  .actionIcons a {
    text-decoration: none !important;
  }
  .typeahead__container {
    font: unset !important;
    margin: 0 -4px;
  }
  .typeahead__list > li {
    border: 0 !important;
  }
  .typeahead__list .typeahead__item > a,
  .typeahead__dropdown .typeahead__dropdown-item > a {
    padding-left: 14px !important;
  }
  .typeahead__list .typeahead__item:not([disabled]) > a:hover,
  .typeahead__list .typeahead__item:not([disabled]) > a:focus,
  .typeahead__list .typeahead__item:not([disabled]).active > a,
  .typeahead__dropdown .typeahead__dropdown-item:not([disabled]) > a:hover,
  .typeahead__dropdown .typeahead__dropdown-item:not([disabled]) > a:focus,
  .typeahead__dropdown .typeahead__dropdown-item:not([disabled]).active > a {
    color: #fff !important;
    background-color: #007bff !important;
  }
  .typeahead__footer {
    font-size: 80%;
    font-weight: 400;
    font-style: italic;
    padding-left: 14px;
  }
  thead tr {
    position: sticky;
    top: 0;
    background-color: #f9f9f9;
    z-index: 1;
  }
  /*@media (max-width: 1200px) {
      .hideSM {
          display: none;
      }
  }*/
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  .fc-warning-container {
    border: 2px #FD6400 solid;
    padding: 15px;
  }
  .fc-on {
    color: limegreen;
  }
  .fc-off {
    color: darkorange;
  }
  .fc-small {
    font-size: 80%;
    font-weight: 400;
  }
  .fc-border, .fc-card-side-card .fc-card-border, .fc-card-main .fc-card-border {
    border: 1px solid #dee2e6 !important;
  }
  .fc-rounded, .fc-card-side-card .fc-card-border, .fc-card-main .fc-card-border {
    border-radius: 0.25rem !important;
  }
  .fc-shadow, .fc-card-main .fc-actionable, .fc-filter, .fc-type {
    box-shadow: 2px 4px 8px 0 rgba(0, 0, 0, 0.15);
  }
  .fc-active {
    cursor: pointer !important;
  }
  .fc-inactive {
    cursor: default !important;
    color: lightgray !important;
  }
  .fc-hover:hover .fc-hover-child {
    color: #FD6400;
  }
  .fc-dataheader {
    color: #333;
    font-weight: bold;
  }
  .fc-data-label, .fc-table-grid .fc-table-header-row, .fc-objects-cvzeg-grid .fc-table-header-row, .fc-objects-cvzeg-readonly-grid .fc-table-header-row, .fc-objects-agri-grid .fc-table-header-row, .fc-objects-agri-readonly-grid .fc-table-header-row, .fc-objects-shipping-grid .fc-table-header-row, .fc-objects-shipping-readonly-grid .fc-table-header-row, .fc-data-label-required, .fc-table-grid .fc-table-header-row .fc-table-header-required, .fc-objects-cvzeg-grid .fc-table-header-row .fc-table-header-required, .fc-objects-cvzeg-readonly-grid .fc-table-header-row .fc-table-header-required, .fc-objects-agri-grid .fc-table-header-row .fc-table-header-required, .fc-objects-agri-readonly-grid .fc-table-header-row .fc-table-header-required, .fc-objects-shipping-grid .fc-table-header-row .fc-table-header-required, .fc-objects-shipping-readonly-grid .fc-table-header-row .fc-table-header-required, .fc-required.fc-data-label-required, .fc-data-label.fc-required {
    color: #666;
    padding-bottom: 2px;
  }
  .fc-data-label.fc-required::before, .fc-table-grid .fc-required.fc-table-header-row::before, .fc-objects-cvzeg-grid .fc-required.fc-table-header-row::before, .fc-objects-cvzeg-readonly-grid .fc-required.fc-table-header-row::before, .fc-objects-agri-grid .fc-required.fc-table-header-row::before, .fc-objects-agri-readonly-grid .fc-required.fc-table-header-row::before, .fc-objects-shipping-grid .fc-required.fc-table-header-row::before, .fc-objects-shipping-readonly-grid .fc-required.fc-table-header-row::before, .fc-required.fc-data-label-required::before, .fc-table-grid .fc-table-header-row .fc-required.fc-table-header-required::before, .fc-objects-cvzeg-grid .fc-table-header-row .fc-required.fc-table-header-required::before, .fc-objects-cvzeg-readonly-grid .fc-table-header-row .fc-required.fc-table-header-required::before, .fc-objects-agri-grid .fc-table-header-row .fc-required.fc-table-header-required::before, .fc-objects-agri-readonly-grid .fc-table-header-row .fc-required.fc-table-header-required::before, .fc-objects-shipping-grid .fc-table-header-row .fc-required.fc-table-header-required::before, .fc-objects-shipping-readonly-grid .fc-table-header-row .fc-required.fc-table-header-required::before {
    color: #FD6400;
    content: "* ";
  }
  .fc-data-label-required::before, .fc-table-grid .fc-table-header-row .fc-table-header-required::before, .fc-objects-cvzeg-grid .fc-table-header-row .fc-table-header-required::before, .fc-objects-cvzeg-readonly-grid .fc-table-header-row .fc-table-header-required::before, .fc-objects-agri-grid .fc-table-header-row .fc-table-header-required::before, .fc-objects-agri-readonly-grid .fc-table-header-row .fc-table-header-required::before, .fc-objects-shipping-grid .fc-table-header-row .fc-table-header-required::before, .fc-objects-shipping-readonly-grid .fc-table-header-row .fc-table-header-required::before {
    color: #FD6400;
    content: "* ";
  }
  .fc-data {
    color: #333;
  }
  .fc-data.indentation {
    padding-left: 0.75em;
  }
  .fc-header-title {
    font-size: 30pt;
    color: #009;
  }
  .fc-title {
    font-size: 30pt;
    color: #009;
    line-height: 1em;
  }
  .fc-subtitle {
    color: #666;
    font-weight: bold;
    line-height: 1em;
    padding-bottom: 2px;
  }
  .fc-subtitle.indentation {
    padding-left: 0.75em;
  }
  .fc-sectiontitle {
    font-size: 18pt;
    color: #000099;
    font-weight: bold;
    padding-bottom: 5px;
  }
  .fc-hidden {
    visibility: hidden !important;
  }
  .fc-required {
    color: #FD6400;
  }
  .fc-text-hint {
    font-style: italic;
    font-weight: normal;
  }
  .fc-text-danger {
    color: #FD6400;
  }
  .fc-text-regressiontester {
    font-style: italic;
    font-weight: normal;
    color: red;
  }
  .fc-text-regressioncreator {
    font-style: italic;
    font-weight: normal;
    color: lawngreen;
  }
  .fc-ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
  .fc-sticky-0 {
    position: sticky;
    top: 0;
  }
  .fc-sticky-10 {
    position: sticky;
    top: 10px;
  }
  a.fc-nostyle:link {
    text-decoration: inherit;
    color: inherit;
    cursor: auto;
  }
  a.fc-nostyle:visited {
    text-decoration: inherit;
    color: inherit;
    cursor: auto;
  }
  .fc-cursor-pointer {
    cursor: pointer;
  }
  .fc-viewbag-message {
    font-family: inherit;
    /* Wraps long lines */
    white-space: pre-wrap;
    /* Breaks long words if needed */
    word-wrap: break-word;
    /* Ensure compatibility */
    overflow-wrap: break-word;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  .fc-default-grid {
    display: grid;
    align-items: center;
    column-gap: 0;
    row-gap: 0;
    grid-template-columns: min-content auto;
  }
  .fc-columns-grid-1 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
    grid-template-columns: 1fr;
  }
  .fc-columns-grid-1.fc-maxwidth {
    grid-template-columns: minmax(100px, 600px);
  }
  .fc-columns-grid-2 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "l r";
    gap: 50px;
    align-items: start;
  }
  .fc-columns-grid-2.fc-grid-tight {
    grid-template-columns: max-content max-content;
  }
  .fc-columns-grid-3 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "l m r";
    gap: 50px;
    align-items: start;
  }
  .fc-columns-grid-3.fc-grid-tight {
    grid-template-columns: max-content max-content max-content;
  }
  .fc-columns-grid-n {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    column-gap: 40px;
    row-gap: 15px;
    justify-content: space-evenly;
  }
  .fc-cardsview-title-grid {
    display: grid;
    grid-template-areas: "title sortlabel sort";
    grid-template-columns: 1fr auto auto;
    column-gap: 15px;
    align-items: center;
  }
  .fc-cardsview-title-plus-grid {
    display: grid;
    grid-template-areas: "title sortlabel sort plus";
    grid-template-columns: 1fr auto auto auto;
    column-gap: 15px;
    align-items: center;
  }
  .fc-search-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr min-content;
    align-items: end;
  }
  .fc-wide-narrow-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr max-content;
    align-items: end;
  }
  .fc-fileupload-grid {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    grid-template-columns: 1fr;
  }
  .fc-fileuploadcontrol-grid {
    display: grid;
    grid-template-rows: 16px;
    grid-template-columns: max-content;
  }
  .fc-cards-grid-1 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(1, 1fr);
    align-items: stretch;
    row-gap: 10px;
    grid-template-columns: 1fr;
  }
  .fc-cards-grid-1.fc-maxwidth {
    grid-template-columns: minmax(100px, 600px);
  }
  .fc-cards-grid-2 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    row-gap: 10px;
    column-gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
  .fc-cards-grid-2.fc-grid-icon-right {
    grid-template-areas: "card icon";
    grid-template-columns: auto min-content;
  }
  .fc-cards-grid-2.fc-grid-icon-left {
    grid-template-areas: "icon card";
    grid-template-columns: min-content auto;
  }
  .fc-filters-grid-2 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    column-gap: 90px;
  }
  .fc-filters-grid-2.fc-filters-sub-grid {
    justify-content: space-evenly;
    column-gap: unset;
    grid-template-columns: repeat(2, auto);
  }
  .fc-filters-grid-3 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    column-gap: 60px;
  }
  .fc-filters-grid-4 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    column-gap: 40px;
  }
  .fc-filters-grid-n {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 280px));
    align-items: stretch;
    column-gap: 40px;
    row-gap: 15px;
    justify-content: center;
    grid-auto-rows: 1fr;
  }
  .fc-filters-grid-n.justify-start {
    justify-content: start;
  }
  .fc-types-grid-n {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 150px));
    align-items: stretch;
    column-gap: 40px;
    row-gap: 15px;
    justify-content: center;
    grid-auto-rows: 1fr;
  }
  .fc-types-grid-n.justify-start {
    justify-content: start;
  }
  .fc-wizard-grid-n {
    display: flex;
    /*grid-template-columns: repeat(auto-fill, minmax(35px, min-content));*/
    /*align-items: start !important;*/
    column-gap: 15px;
    /*row-gap: 15px;*/
  }
  .fc-form-grid {
    display: grid;
    row-gap: 5px;
    align-items: baseline;
    grid-template-columns: 1fr;
  }
  .fc-form-grid .fc-form-checkbox {
    display: grid;
    grid-column: 1/3;
    row-gap: 0;
    column-gap: 10px;
    grid-template-areas: "control label";
    grid-template-columns: 16px 1fr;
    align-items: center;
  }
  .fc-form-grid .fc-form-checkbox.fc-form-checkbox-reverse-order {
    grid-template-areas: "label control";
    grid-template-columns: min-content auto;
  }
  .fc-form-grid-h {
    display: grid;
    row-gap: 10px;
    column-gap: 30px;
    align-items: baseline;
    grid-auto-rows: max-content;
    grid-template-areas: "label control";
    grid-template-columns: max-content minmax(min-content, 1fr);
  }
  .fc-form-grid-h.halign-center {
    column-gap: 10px;
    grid-template-columns: auto auto;
  }
  .fc-form-grid-h .fc-form-checkbox {
    display: grid;
    grid-column: 1/3;
    row-gap: 0;
    column-gap: 10px;
    grid-template-areas: "control label";
    grid-template-columns: 16px 1fr;
    align-items: center;
  }
  .fc-form-grid-h .fc-form-checkbox.fc-form-checkbox-reverse-order {
    grid-template-areas: "label control";
    grid-template-columns: min-content auto;
  }
  .fc-form-grid-h-extra {
    display: grid;
    row-gap: 10px;
    column-gap: 30px;
    grid-auto-rows: max-content;
    grid-template-areas: "label control extra";
    align-items: center;
    grid-template-columns: max-content minmax(200px, max-content) 1fr;
  }
  .fc-form-grid-h-extra.halign-center {
    column-gap: 10px;
    grid-template-columns: auto auto auto;
  }
  .fc-form-grid-h-extra .fc-form-checkbox {
    display: grid;
    grid-column: 1/4;
    row-gap: 0;
    column-gap: 10px;
    grid-template-areas: "control label";
    grid-template-columns: 16px 1fr;
    align-items: center;
  }
  .fc-form-grid-h-extra .fc-form-checkbox.fc-form-checkbox-reverse-order {
    grid-template-areas: "label control";
    grid-template-columns: min-content auto;
  }
  .fc-form-cell {
    display: grid;
    align-items: center;
    row-gap: 0;
    column-gap: 10px;
    grid-template-areas: "label" "control";
  }
  .fc-form-cell-checkbox {
    display: grid;
    align-items: center;
    row-gap: 0;
    column-gap: 10px;
    grid-template-areas: "control label";
    grid-template-columns: 16px 1fr;
  }
  .fc-form-cell-checkbox.checkbox-reverse-order {
    grid-template-areas: "label control";
    grid-template-columns: min-content auto;
  }
  .fc-data-grid {
    display: grid;
    align-items: start;
    row-gap: 0;
    column-gap: 15px;
    grid-template-areas: "label data";
    grid-template-columns: 190px auto;
  }
  .fc-data-grid.flexwidth {
    grid-template-columns: auto auto;
  }
  .fc-data-grid.indentation {
    padding-left: 0.75em;
  }
  .fc-data-grid.indentation-2x {
    padding-left: 1.5em;
  }
  .fc-data-control {
    display: grid;
    align-items: start;
    width: 250px;
  }
  .fc-data-control.fc-input-full-width {
    width: 100%;
  }
  .fc-radio-grid {
    display: flex;
    column-gap: 15px;
  }
  .fc-warning-date-grid {
    display: grid;
    column-gap: 5px;
    grid-template-columns: 1fr auto;
    /*align-items: self-end; // Use this when using RFS font*/
    align-items: center;
    white-space: nowrap;
  }
  .fc-warning-date-grid .fc-icon, .fc-warning-date-grid .fc-icon-pause, .fc-warning-date-grid .fc-icon-play, .fc-warning-date-grid .fc-icon-validation-nok, .fc-warning-date-grid .fc-icon-validation-ok, .fc-warning-date-grid .fc-icon-angle-double-down, .fc-warning-date-grid .fc-icon-check, .fc-warning-date-grid .fc-icon-link, .fc-warning-date-grid .fc-icon-sitemap, .fc-warning-date-grid .fc-icon-caret-down, .fc-warning-date-grid .fc-icon-supercircle-border, .fc-warning-date-grid .fc-icon-supercircle-area, .fc-warning-date-grid .fc-icon-check2, .fc-warning-date-grid .fc-announcement-icon.fc-approved, .fc-warning-date-grid .fc-icon-danger, .fc-warning-date-grid .fc-announcement-icon.fc-problem, .fc-warning-date-grid .fc-icon-alert, .fc-warning-date-grid .fc-announcement-icon.fc-alert, .fc-warning-date-grid .fc-icon-plus, .fc-warning-date-grid .fc-icon-info-area-nooffset, .fc-warning-date-grid .fc-icon-info-nooffset, .fc-warning-date-grid .fc-icon-info-area, .fc-warning-date-grid .fc-icon-info, .fc-warning-date-grid .fc-announcement-icon.fc-info, .fc-warning-date-grid .fc-icon-filter, .fc-warning-date-grid .fc-icon-arrow--right, .fc-warning-date-grid .fc-icon-select-new, .fc-warning-date-grid .fc-icon-chevron, .fc-warning-date-grid .fc-icon-select, .fc-warning-date-grid .fc-icon-search, .fc-warning-date-grid .fc-icon-select-in-table, .fc-warning-date-grid .fc-icon-edit, .fc-warning-date-grid .fc-icon-trash, .fc-warning-date-grid .fc-icon-copy, .fc-warning-date-grid .fc-icon-spinner {
    color: #FD6400;
  }
  .fc-servicemessages-grid {
    display: grid;
    column-gap: 15px;
    grid-template-columns: auto 1fr auto;
  }
  .fc-button-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, max-content));
  }
  .fc-button-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, max-content));
  }
  .fc-objects-cvzeg-grid {
    grid-template-columns: minmax(150px, 1.2fr) max-content 1fr min-content min-content;
  }
  .fc-objects-cvzeg-grid .fc-objects-cvzeg-grid-footer-row {
    display: contents;
  }
  .fc-objects-cvzeg-grid .fc-objects-cvzeg-grid-footer-row .fc-objects-cvzeg-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
    margin-right: 14px;
  }
  .fc-objects-cvzeg-readonly-grid {
    grid-template-columns: minmax(200px, 1.2fr) max-content min-content 1fr;
  }
  .fc-objects-cvzeg-readonly-grid .fc-objects-cvzeg-grid-footer-row {
    display: contents;
  }
  .fc-objects-cvzeg-readonly-grid .fc-objects-cvzeg-grid-footer-row .fc-objects-cvzeg-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
  }
  .fc-objects-agri-grid {
    grid-template-columns: minmax(150px, 1.2fr) max-content min-content min-content;
  }
  .fc-objects-agri-grid .fc-objects-agri-grid-footer-row {
    display: contents;
  }
  .fc-objects-agri-grid .fc-objects-agri-grid-footer-row .fc-objects-agri-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
    margin-right: 14px;
  }
  .fc-objects-agri-readonly-grid {
    grid-template-columns: minmax(200px, 1.2fr) 1fr 1fr;
  }
  .fc-objects-agri-readonly-grid .fc-objects-agri-grid-footer-row {
    display: contents;
  }
  .fc-objects-agri-readonly-grid .fc-objects-agri-grid-footer-row .fc-objects-agri-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
  }
  .fc-objects-shipping-grid {
    grid-template-columns: max-content max-content max-content min-content;
  }
  .fc-objects-shipping-grid .fc-objects-shipping-grid-footer-row {
    display: contents;
  }
  .fc-objects-shipping-grid .fc-objects-shipping-grid-footer-row .fc-objects-shipping-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
    margin-right: 14px;
  }
  .fc-objects-shipping-readonly-grid {
    grid-template-columns: minmax(200px, 1.2fr) 1fr 1fr;
  }
  .fc-objects-shipping-readonly-grid .fc-objects-shipping-grid-footer-row {
    display: contents;
  }
  .fc-objects-shipping-readonly-grid .fc-objects-shipping-grid-footer-row .fc-objects-shipping-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
  }
  .fc-regio-grid {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    row-gap: 10px;
    column-gap: 50px;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
  }
  .fc-regio-grid.fc-grid-icon-right {
    grid-template-areas: "card icon";
    grid-template-columns: auto min-content;
  }
  .fc-regio-grid.fc-grid-icon-left {
    grid-template-areas: "icon card";
    grid-template-columns: min-content auto;
  }
  .fc-smoketest-grid {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(1, 1fr);
    width: 30%;
    margin: auto;
  }
  /*.fc-layout-marginleft {
      grid-area: marginLeft;
      background-color: #F3F5F6;
  }

  .fc-layout-marginright {
      grid-area: marginRight;
      background-color: #F3F5F6;
  }

  .fc-layout-shadowleft {
      grid-area: shadowleft;
      background-image: url('../Images/Shadow-Left.png');
      min-height: 100vh;
  }

  .fc-layout-shadowright {
      grid-area: shadowright;
      background-image: url('../Images/Shadow-Right.png');
      min-height: 100vh;
  }

  .fc-layout-logo {
      grid-area: logo;
  }

  .fc-layout-header {
      grid-area: header;
  }

  .fc-layout-date {
      grid-area: date;
      padding-top: 11px;
      background-color: $--rabo-blue;
      color: white;
      font-size: 12pt;
      font-weight: normal;
      text-align: center;
  }

  .fc-layout-name {
      grid-area: name;
      padding-top: 11px;
      background-color: $--rabo-blue;
      color: white;
      font-size: 12pt;
      font-weight: normal;
      text-align: right;
      border-left-style: solid;
      border-left-color: $--rabo-dark-orange;
      border-left-width: 2px;
      padding-right: 10px;
  }

  .fc-layout-menu {
      grid-area: menu;
  }

  .fc-layout-content {
      grid-area: content;
  }

  .fc-layout-divider-blue {
      grid-area: divider1;
      background-color: $--rabo-blue;
  }

  .fc-layout-divider-grey {
      grid-area: divider2;
      background-color: rgba(0,0,0,0.125);
  }

  .fc-layout-grid {
      @include fc-grid;
      align-items: stretch;
      grid-template-areas: 'marginLeft shadowleft logo divider0 header shadowright marginRight' 'marginLeft shadowleft date divider1 name shadowright marginRight' 'marginLeft shadowleft menu divider2 content shadowright marginRight';
      grid-template-columns: 20px 6px 210px 1px auto 6px 20px;
      grid-template-rows: 76px 40px auto;
      background-color: white;
      min-width: 1000px;
  }*/
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  .rfs-icon--size-super-small:before {
    font-size: 12px;
  }
  .rfs-icon--size-extra-small:before, .fc-icon-link.fc-icon-extra-small:before, .fc-icon-sitemap.fc-icon-extra-small:before, .fc-icon-supercircle-border.fc-icon-extra-small:before, .fc-icon-supercircle-area.fc-icon-extra-small:before, .fc-icon-check2.fc-icon-extra-small:before, .fc-icon-extra-small.fc-announcement-icon.fc-approved:before, .fc-icon-alert.fc-icon-extra-small:before, .fc-icon-extra-small.fc-announcement-icon.fc-alert:before, .fc-icon-download.fc-icon-extra-small:before, .fc-icon-cross-thick.fc-icon-extra-small:before, .fc-icon-cross-nooffset.fc-icon-extra-small:before, .fc-icon-cross.fc-icon-extra-small:before, .fc-icon-attach.fc-icon-extra-small:before, .fc-icon-info-area-nooffset.fc-icon-extra-small:before, .fc-icon-info-nooffset.fc-icon-extra-small:before, .fc-icon-info-area.fc-icon-extra-small:before, .fc-icon-info.fc-icon-extra-small:before, .fc-icon-extra-small.fc-announcement-icon.fc-info:before, .fc-icon-filter.fc-icon-extra-small:before, .fc-icon-arrow--right.fc-icon-extra-small:before, .fc-icon-extra-small.fc-icon-select-new:before, .fc-icon-search.fc-icon-extra-small:before {
    font-size: 16px;
  }
  .rfs-icon--size-small:before, .fc-icon-link.fc-icon-small:before, .fc-icon-sitemap.fc-icon-small:before, .fc-icon-supercircle-border.fc-icon-small:before, .fc-icon-supercircle-area.fc-icon-small:before, .fc-icon-check2.fc-icon-small:before, .fc-icon-small.fc-announcement-icon.fc-approved:before, .fc-icon-alert.fc-icon-small:before, .fc-icon-small.fc-announcement-icon.fc-alert:before, .fc-icon-download.fc-icon-small:before, .fc-icon-cross-thick.fc-icon-small:before, .fc-icon-cross-nooffset.fc-icon-small:before, .fc-icon-cross.fc-icon-small:before, .fc-icon-attach.fc-icon-small:before, .fc-icon-info-area-nooffset.fc-icon-small:before, .fc-icon-info-nooffset.fc-icon-small:before, .fc-icon-info-area.fc-icon-small:before, .fc-icon-info.fc-icon-small:before, .fc-icon-small.fc-announcement-icon.fc-info:before, .fc-icon-filter.fc-icon-small:before, .fc-icon-arrow--right.fc-icon-small:before, .fc-icon-small.fc-icon-select-new:before, .fc-icon-search.fc-icon-small:before {
    font-size: 24px;
  }
  /* part of rfs */
  /*.rfs-icon--size-medium:before {
      font-size: 32px;
  }*/
  /* part of rfs */
  /*.rfs-icon--size-large:before {
      font-size: 64px;
  }*/
  /* TODO: Revisit Font-Sizes */
  .fc-icon, .fc-icon-pause, .fc-icon-play, .fc-icon-validation-nok, .fc-icon-validation-ok, .fc-icon-angle-double-down, .fc-icon-check, .fc-icon-link, .fc-icon-sitemap, .fc-icon-caret-down, .fc-icon-supercircle-border, .fc-icon-supercircle-area, .fc-icon-check2, .fc-announcement-icon.fc-approved, .fc-icon-danger, .fc-announcement-icon.fc-problem, .fc-icon-alert, .fc-announcement-icon.fc-alert, .fc-icon-plus, .fc-icon-info-area-nooffset, .fc-icon-info-nooffset, .fc-icon-info-area, .fc-icon-info, .fc-announcement-icon.fc-info, .fc-icon-filter, .fc-icon-arrow--right, .fc-icon-select-new, .fc-icon-chevron, .fc-icon-select, .fc-icon-search, .fc-icon-select-in-table, .fc-icon-edit, .fc-icon-trash, .fc-icon-copy, .fc-icon-spinner {
    color: #000099;
    text-decoration: none !important;
  }
  /* A poor-mans parent-selector. But it helps not having to add fc-inactive to individual icons when an element is supposed to be inactive. */
  :not(.fc-inactive) > .fc-icon-button, :not(.fc-inactive) > .fc-icon-download, :not(.fc-inactive) > .fc-icon-cross-thick, :not(.fc-inactive) > .fc-icon-cross-nooffset, :not(.fc-inactive) > .fc-icon-cross, :not(.fc-inactive) > .fc-icon-attach {
    color: #000099;
    cursor: pointer;
  }
  /* A poor-mans parent-selector. But it helps not having to add fc-inactive to individual icons when an element is supposed to be inactive. */
  :not(.fc-inactive) > .fc-icon-button:not(.fc-inactive):hover, :not(.fc-inactive) > .fc-icon-download:not(.fc-inactive):hover, :not(.fc-inactive) > .fc-icon-cross-thick:not(.fc-inactive):hover, :not(.fc-inactive) > .fc-icon-cross-nooffset:not(.fc-inactive):hover, :not(.fc-inactive) > .fc-icon-cross:not(.fc-inactive):hover, :not(.fc-inactive) > .fc-icon-attach:not(.fc-inactive):hover, :not(.fc-inactive) > .fc-icon-button:not(.fc-inactive).hover, :not(.fc-inactive) > .fc-icon-download:not(.fc-inactive).hover, :not(.fc-inactive) > .fc-icon-cross-thick:not(.fc-inactive).hover, :not(.fc-inactive) > .fc-icon-cross-nooffset:not(.fc-inactive).hover, :not(.fc-inactive) > .fc-icon-cross:not(.fc-inactive).hover, :not(.fc-inactive) > .fc-icon-attach:not(.fc-inactive).hover {
    color: #FD6400;
  }
  .fc-icon.disabled, .disabled.fc-icon-pause, .disabled.fc-icon-play, .disabled.fc-icon-validation-nok, .disabled.fc-icon-validation-ok, .disabled.fc-icon-angle-double-down, .disabled.fc-icon-check, .disabled.fc-icon-link, .disabled.fc-icon-sitemap, .disabled.fc-icon-caret-down, .disabled.fc-icon-supercircle-border, .disabled.fc-icon-supercircle-area, .disabled.fc-icon-check2, .disabled.fc-announcement-icon.fc-approved, .disabled.fc-icon-danger, .disabled.fc-announcement-icon.fc-problem, .disabled.fc-icon-alert, .disabled.fc-announcement-icon.fc-alert, .disabled.fc-icon-plus, .disabled.fc-icon-info-area-nooffset, .disabled.fc-icon-info-nooffset, .disabled.fc-icon-info-area, .disabled.fc-icon-info, .disabled.fc-announcement-icon.fc-info, .disabled.fc-icon-filter, .disabled.fc-icon-arrow--right, .disabled.fc-icon-select-new, .disabled.fc-icon-chevron, .disabled.fc-icon-select, .disabled.fc-icon-search, .disabled.fc-icon-select-in-table, .disabled.fc-icon-edit, .disabled.fc-icon-trash, .disabled.fc-icon-copy, .disabled.fc-icon-spinner {
    color: #CCC;
  }
  .fc-icon-spinner {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
  }
  .fc-icon-spinner:hover, .fc-icon-spinner.hover {
    color: #000099;
  }
  .fc-icon-copy {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
  }
  .fc-icon-trash {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
  }
  /*.fc-icon-trash {
      @extend .fc-icon;
      @include iconSize(true);
      @extend .rfs-icons !optional;
      @extend .rfs-icon--type-prullenbak !optional;
  }*/
  .fc-icon-edit {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
  }
  /*
  .fc-icon-edit {
      @extend .fc-icon;
      @include iconSize(true);
      @extend .rfs-icons !optional;
      @extend .rfs-icon--type-potlood !optional;
  }
  */
  .fc-icon-select-in-table {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
  }
  .fc-icon-search {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-search.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-search .rfs-icon:before, .fc-icon-search .fc-input-date-iconclear:before, .fc-icon-search .fc-input-date-icon:before, .fc-icon-search .fc-icon-link:before, .fc-icon-search .fc-icon-sitemap:before, .fc-icon-search .fc-icon-supercircle-border:before, .fc-icon-search .fc-icon-supercircle-area:before, .fc-icon-search .fc-icon-check2:before, .fc-icon-search .fc-announcement-icon.fc-approved:before, .fc-icon-search .fc-icon-alert:before, .fc-icon-search .fc-announcement-icon.fc-alert:before, .fc-icon-search .fc-icon-download:before, .fc-icon-search .fc-icon-cross-thick:before, .fc-icon-search .fc-icon-cross-nooffset:before, .fc-icon-search .fc-icon-cross:before, .fc-icon-search .fc-icon-attach:before, .fc-icon-search .fc-icon-info-area-nooffset:before, .fc-icon-search .fc-icon-info-nooffset:before, .fc-icon-search .fc-icon-info-area:before, .fc-icon-search .fc-icon-info:before, .fc-icon-search .fc-announcement-icon.fc-info:before, .fc-icon-search .fc-icon-filter:before, .fc-icon-search .fc-icon-arrow--right:before, .fc-icon-search .fc-icon-select-new:before, .fc-icon-search .fc-icon-search:before, .fc-icon-search [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  .fc-icon-chevron, .fc-icon-select {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
  }
  .fc-icon-arrow--right, .fc-icon-select-new {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-arrow--right.fc-icon-super-small, .fc-icon-super-small.fc-icon-select-new {
    font-size: 12px;
  }
  .fc-icon-arrow--right .rfs-icon:before, .fc-icon-arrow--right .fc-input-date-iconclear:before, .fc-icon-arrow--right .fc-input-date-icon:before, .fc-icon-arrow--right .fc-icon-link:before, .fc-icon-arrow--right .fc-icon-sitemap:before, .fc-icon-arrow--right .fc-icon-supercircle-border:before, .fc-icon-arrow--right .fc-icon-supercircle-area:before, .fc-icon-arrow--right .fc-icon-check2:before, .fc-icon-arrow--right .fc-announcement-icon.fc-approved:before, .fc-icon-arrow--right .fc-icon-alert:before, .fc-icon-arrow--right .fc-announcement-icon.fc-alert:before, .fc-icon-arrow--right .fc-icon-download:before, .fc-icon-arrow--right .fc-icon-cross-thick:before, .fc-icon-arrow--right .fc-icon-cross-nooffset:before, .fc-icon-arrow--right .fc-icon-cross:before, .fc-icon-arrow--right .fc-icon-attach:before, .fc-icon-arrow--right .fc-icon-info-area-nooffset:before, .fc-icon-arrow--right .fc-icon-info-nooffset:before, .fc-icon-arrow--right .fc-icon-info-area:before, .fc-icon-arrow--right .fc-icon-info:before, .fc-icon-arrow--right .fc-announcement-icon.fc-info:before, .fc-icon-arrow--right .fc-icon-filter:before, .fc-icon-select-new .rfs-icon:before, .fc-icon-select-new .fc-input-date-iconclear:before, .fc-icon-select-new .fc-input-date-icon:before, .fc-icon-select-new .fc-icon-link:before, .fc-icon-select-new .fc-icon-sitemap:before, .fc-icon-select-new .fc-icon-supercircle-border:before, .fc-icon-select-new .fc-icon-supercircle-area:before, .fc-icon-select-new .fc-icon-check2:before, .fc-icon-select-new .fc-announcement-icon.fc-approved:before, .fc-icon-select-new .fc-icon-alert:before, .fc-icon-select-new .fc-announcement-icon.fc-alert:before, .fc-icon-select-new .fc-icon-download:before, .fc-icon-select-new .fc-icon-cross-thick:before, .fc-icon-select-new .fc-icon-cross-nooffset:before, .fc-icon-select-new .fc-icon-cross:before, .fc-icon-select-new .fc-icon-attach:before, .fc-icon-select-new .fc-icon-info-area-nooffset:before, .fc-icon-select-new .fc-icon-info-nooffset:before, .fc-icon-select-new .fc-icon-info-area:before, .fc-icon-select-new .fc-icon-info:before, .fc-icon-select-new .fc-announcement-icon.fc-info:before, .fc-icon-select-new .fc-icon-filter:before, .fc-icon-arrow--right .fc-icon-search:before, .fc-icon-select-new .fc-icon-search:before, .fc-icon-arrow--right .fc-icon-arrow--right:before, .fc-icon-select-new .fc-icon-arrow--right:before, .fc-icon-arrow--right .fc-icon-select-new:before, .fc-icon-select-new .fc-icon-select-new:before, .fc-icon-arrow--right [class*=rfs-icon--type]:before, .fc-icon-select-new [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  /*.fc-icon-filter {
      @extend .fc-icon;
      @include iconSize(false);
      @extend .fas !optional;
      @extend .fa-clipboard-check !optional;
  }*/
  .fc-icon-filter {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
    padding-top: 3px;
  }
  .fc-icon-filter.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-filter .rfs-icon:before, .fc-icon-filter .fc-input-date-iconclear:before, .fc-icon-filter .fc-input-date-icon:before, .fc-icon-filter .fc-icon-link:before, .fc-icon-filter .fc-icon-sitemap:before, .fc-icon-filter .fc-icon-supercircle-border:before, .fc-icon-filter .fc-icon-supercircle-area:before, .fc-icon-filter .fc-icon-check2:before, .fc-icon-filter .fc-announcement-icon.fc-approved:before, .fc-icon-filter .fc-icon-alert:before, .fc-icon-filter .fc-announcement-icon.fc-alert:before, .fc-icon-filter .fc-icon-download:before, .fc-icon-filter .fc-icon-cross-thick:before, .fc-icon-filter .fc-icon-cross-nooffset:before, .fc-icon-filter .fc-icon-cross:before, .fc-icon-filter .fc-icon-attach:before, .fc-icon-filter .fc-icon-info-area-nooffset:before, .fc-icon-filter .fc-icon-info-nooffset:before, .fc-icon-filter .fc-icon-info-area:before, .fc-icon-filter .fc-icon-info:before, .fc-icon-filter .fc-announcement-icon.fc-info:before, .fc-icon-filter .fc-icon-search:before, .fc-icon-filter .fc-icon-arrow--right:before, .fc-icon-filter .fc-icon-select-new:before, .fc-icon-filter .fc-icon-filter:before, .fc-icon-filter [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  /*.fc-icon-info {
      @extend .fc-icon;
      @include iconSize(false);
      @extend .fas !optional;
      @extend .fa-info-circle !optional;
  }*/
  .fc-icon-info, .fc-announcement-icon.fc-info {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-info.fc-icon-super-small, .fc-icon-super-small.fc-announcement-icon.fc-info {
    font-size: 12px;
  }
  .fc-icon-info .rfs-icon:before, .fc-icon-info .fc-input-date-iconclear:before, .fc-icon-info .fc-input-date-icon:before, .fc-announcement-icon.fc-info .rfs-icon:before, .fc-announcement-icon.fc-info .fc-input-date-iconclear:before, .fc-announcement-icon.fc-info .fc-input-date-icon:before, .fc-icon-info .fc-icon-link:before, .fc-announcement-icon.fc-info .fc-icon-link:before, .fc-icon-info .fc-icon-sitemap:before, .fc-announcement-icon.fc-info .fc-icon-sitemap:before, .fc-icon-info .fc-icon-supercircle-border:before, .fc-announcement-icon.fc-info .fc-icon-supercircle-border:before, .fc-icon-info .fc-icon-supercircle-area:before, .fc-announcement-icon.fc-info .fc-icon-supercircle-area:before, .fc-icon-info .fc-icon-check2:before, .fc-announcement-icon.fc-info .fc-icon-check2:before, .fc-icon-info .fc-announcement-icon.fc-approved:before, .fc-announcement-icon.fc-info .fc-announcement-icon.fc-approved:before, .fc-icon-info .fc-icon-alert:before, .fc-announcement-icon.fc-info .fc-icon-alert:before, .fc-icon-info .fc-announcement-icon.fc-alert:before, .fc-announcement-icon.fc-info .fc-announcement-icon.fc-alert:before, .fc-icon-info .fc-icon-download:before, .fc-announcement-icon.fc-info .fc-icon-download:before, .fc-icon-info .fc-icon-cross-thick:before, .fc-announcement-icon.fc-info .fc-icon-cross-thick:before, .fc-icon-info .fc-icon-cross-nooffset:before, .fc-announcement-icon.fc-info .fc-icon-cross-nooffset:before, .fc-icon-info .fc-icon-cross:before, .fc-announcement-icon.fc-info .fc-icon-cross:before, .fc-icon-info .fc-icon-attach:before, .fc-announcement-icon.fc-info .fc-icon-attach:before, .fc-icon-info .fc-icon-info-area-nooffset:before, .fc-announcement-icon.fc-info .fc-icon-info-area-nooffset:before, .fc-icon-info .fc-icon-info-nooffset:before, .fc-announcement-icon.fc-info .fc-icon-info-nooffset:before, .fc-icon-info .fc-icon-info-area:before, .fc-announcement-icon.fc-info .fc-icon-info-area:before, .fc-icon-info .fc-icon-search:before, .fc-announcement-icon.fc-info .fc-icon-search:before, .fc-icon-info .fc-icon-arrow--right:before, .fc-announcement-icon.fc-info .fc-icon-arrow--right:before, .fc-icon-info .fc-icon-select-new:before, .fc-announcement-icon.fc-info .fc-icon-select-new:before, .fc-icon-info .fc-icon-filter:before, .fc-announcement-icon.fc-info .fc-icon-filter:before, .fc-icon-info .fc-icon-info:before, .fc-announcement-icon.fc-info .fc-icon-info:before, .fc-icon-info .fc-announcement-icon.fc-info:before, .fc-announcement-icon.fc-info .fc-announcement-icon.fc-info:before, .fc-icon-info [class*=rfs-icon--type]:before, .fc-announcement-icon.fc-info [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  .fc-icon-info-area {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-info-area.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-info-area .rfs-icon:before, .fc-icon-info-area .fc-input-date-iconclear:before, .fc-icon-info-area .fc-input-date-icon:before, .fc-icon-info-area .fc-icon-link:before, .fc-icon-info-area .fc-icon-sitemap:before, .fc-icon-info-area .fc-icon-supercircle-border:before, .fc-icon-info-area .fc-icon-supercircle-area:before, .fc-icon-info-area .fc-icon-check2:before, .fc-icon-info-area .fc-announcement-icon.fc-approved:before, .fc-icon-info-area .fc-icon-alert:before, .fc-icon-info-area .fc-announcement-icon.fc-alert:before, .fc-icon-info-area .fc-icon-download:before, .fc-icon-info-area .fc-icon-cross-thick:before, .fc-icon-info-area .fc-icon-cross-nooffset:before, .fc-icon-info-area .fc-icon-cross:before, .fc-icon-info-area .fc-icon-attach:before, .fc-icon-info-area .fc-icon-info-area-nooffset:before, .fc-icon-info-area .fc-icon-info-nooffset:before, .fc-icon-info-area .fc-icon-search:before, .fc-icon-info-area .fc-icon-arrow--right:before, .fc-icon-info-area .fc-icon-select-new:before, .fc-icon-info-area .fc-icon-filter:before, .fc-icon-info-area .fc-icon-info:before, .fc-icon-info-area .fc-announcement-icon.fc-info:before, .fc-icon-info-area .fc-icon-info-area:before, .fc-icon-info-area [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  .fc-icon-info-nooffset {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-info-nooffset.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-info-nooffset .rfs-icon:before, .fc-icon-info-nooffset .fc-input-date-iconclear:before, .fc-icon-info-nooffset .fc-input-date-icon:before, .fc-icon-info-nooffset .fc-icon-link:before, .fc-icon-info-nooffset .fc-icon-sitemap:before, .fc-icon-info-nooffset .fc-icon-supercircle-border:before, .fc-icon-info-nooffset .fc-icon-supercircle-area:before, .fc-icon-info-nooffset .fc-icon-check2:before, .fc-icon-info-nooffset .fc-announcement-icon.fc-approved:before, .fc-icon-info-nooffset .fc-icon-alert:before, .fc-icon-info-nooffset .fc-announcement-icon.fc-alert:before, .fc-icon-info-nooffset .fc-icon-download:before, .fc-icon-info-nooffset .fc-icon-cross-thick:before, .fc-icon-info-nooffset .fc-icon-cross-nooffset:before, .fc-icon-info-nooffset .fc-icon-cross:before, .fc-icon-info-nooffset .fc-icon-attach:before, .fc-icon-info-nooffset .fc-icon-info-area-nooffset:before, .fc-icon-info-nooffset .fc-icon-search:before, .fc-icon-info-nooffset .fc-icon-arrow--right:before, .fc-icon-info-nooffset .fc-icon-select-new:before, .fc-icon-info-nooffset .fc-icon-filter:before, .fc-icon-info-nooffset .fc-icon-info:before, .fc-icon-info-nooffset .fc-announcement-icon.fc-info:before, .fc-icon-info-nooffset .fc-icon-info-area:before, .fc-icon-info-nooffset .fc-icon-info-nooffset:before, .fc-icon-info-nooffset [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: 0;
  }
  .fc-icon-info-area-nooffset {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-info-area-nooffset.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-info-area-nooffset .rfs-icon:before, .fc-icon-info-area-nooffset .fc-input-date-iconclear:before, .fc-icon-info-area-nooffset .fc-input-date-icon:before, .fc-icon-info-area-nooffset .fc-icon-link:before, .fc-icon-info-area-nooffset .fc-icon-sitemap:before, .fc-icon-info-area-nooffset .fc-icon-supercircle-border:before, .fc-icon-info-area-nooffset .fc-icon-supercircle-area:before, .fc-icon-info-area-nooffset .fc-icon-check2:before, .fc-icon-info-area-nooffset .fc-announcement-icon.fc-approved:before, .fc-icon-info-area-nooffset .fc-icon-alert:before, .fc-icon-info-area-nooffset .fc-announcement-icon.fc-alert:before, .fc-icon-info-area-nooffset .fc-icon-download:before, .fc-icon-info-area-nooffset .fc-icon-cross-thick:before, .fc-icon-info-area-nooffset .fc-icon-cross-nooffset:before, .fc-icon-info-area-nooffset .fc-icon-cross:before, .fc-icon-info-area-nooffset .fc-icon-attach:before, .fc-icon-info-area-nooffset .fc-icon-search:before, .fc-icon-info-area-nooffset .fc-icon-arrow--right:before, .fc-icon-info-area-nooffset .fc-icon-select-new:before, .fc-icon-info-area-nooffset .fc-icon-filter:before, .fc-icon-info-area-nooffset .fc-icon-info:before, .fc-icon-info-area-nooffset .fc-announcement-icon.fc-info:before, .fc-icon-info-area-nooffset .fc-icon-info-area:before, .fc-icon-info-area-nooffset .fc-icon-info-nooffset:before, .fc-icon-info-area-nooffset .fc-icon-info-area-nooffset:before, .fc-icon-info-area-nooffset [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: 0;
  }
  .fc-icon-plus {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
  }
  .fc-icon-attach {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-attach.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-attach .rfs-icon:before, .fc-icon-attach .fc-input-date-iconclear:before, .fc-icon-attach .fc-input-date-icon:before, .fc-icon-attach .fc-icon-link:before, .fc-icon-attach .fc-icon-sitemap:before, .fc-icon-attach .fc-icon-supercircle-border:before, .fc-icon-attach .fc-icon-supercircle-area:before, .fc-icon-attach .fc-icon-check2:before, .fc-icon-attach .fc-announcement-icon.fc-approved:before, .fc-icon-attach .fc-icon-alert:before, .fc-icon-attach .fc-announcement-icon.fc-alert:before, .fc-icon-attach .fc-icon-download:before, .fc-icon-attach .fc-icon-cross-thick:before, .fc-icon-attach .fc-icon-cross-nooffset:before, .fc-icon-attach .fc-icon-cross:before, .fc-icon-attach .fc-icon-search:before, .fc-icon-attach .fc-icon-arrow--right:before, .fc-icon-attach .fc-icon-select-new:before, .fc-icon-attach .fc-icon-filter:before, .fc-icon-attach .fc-icon-info:before, .fc-icon-attach .fc-announcement-icon.fc-info:before, .fc-icon-attach .fc-icon-info-area:before, .fc-icon-attach .fc-icon-info-nooffset:before, .fc-icon-attach .fc-icon-info-area-nooffset:before, .fc-icon-attach .fc-icon-attach:before, .fc-icon-attach [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  .fc-icon-cross {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-cross.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-cross .rfs-icon:before, .fc-icon-cross .fc-input-date-iconclear:before, .fc-icon-cross .fc-input-date-icon:before, .fc-icon-cross .fc-icon-link:before, .fc-icon-cross .fc-icon-sitemap:before, .fc-icon-cross .fc-icon-supercircle-border:before, .fc-icon-cross .fc-icon-supercircle-area:before, .fc-icon-cross .fc-icon-check2:before, .fc-icon-cross .fc-announcement-icon.fc-approved:before, .fc-icon-cross .fc-icon-alert:before, .fc-icon-cross .fc-announcement-icon.fc-alert:before, .fc-icon-cross .fc-icon-download:before, .fc-icon-cross .fc-icon-cross-thick:before, .fc-icon-cross .fc-icon-cross-nooffset:before, .fc-icon-cross .fc-icon-search:before, .fc-icon-cross .fc-icon-arrow--right:before, .fc-icon-cross .fc-icon-select-new:before, .fc-icon-cross .fc-icon-filter:before, .fc-icon-cross .fc-icon-info:before, .fc-icon-cross .fc-announcement-icon.fc-info:before, .fc-icon-cross .fc-icon-info-area:before, .fc-icon-cross .fc-icon-info-nooffset:before, .fc-icon-cross .fc-icon-info-area-nooffset:before, .fc-icon-cross .fc-icon-attach:before, .fc-icon-cross .fc-icon-cross:before, .fc-icon-cross [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  .fc-icon-cross-nooffset {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-cross-nooffset.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-cross-nooffset .rfs-icon:before, .fc-icon-cross-nooffset .fc-input-date-iconclear:before, .fc-icon-cross-nooffset .fc-input-date-icon:before, .fc-icon-cross-nooffset .fc-icon-link:before, .fc-icon-cross-nooffset .fc-icon-sitemap:before, .fc-icon-cross-nooffset .fc-icon-supercircle-border:before, .fc-icon-cross-nooffset .fc-icon-supercircle-area:before, .fc-icon-cross-nooffset .fc-icon-check2:before, .fc-icon-cross-nooffset .fc-announcement-icon.fc-approved:before, .fc-icon-cross-nooffset .fc-icon-alert:before, .fc-icon-cross-nooffset .fc-announcement-icon.fc-alert:before, .fc-icon-cross-nooffset .fc-icon-download:before, .fc-icon-cross-nooffset .fc-icon-cross-thick:before, .fc-icon-cross-nooffset .fc-icon-search:before, .fc-icon-cross-nooffset .fc-icon-arrow--right:before, .fc-icon-cross-nooffset .fc-icon-select-new:before, .fc-icon-cross-nooffset .fc-icon-filter:before, .fc-icon-cross-nooffset .fc-icon-info:before, .fc-icon-cross-nooffset .fc-announcement-icon.fc-info:before, .fc-icon-cross-nooffset .fc-icon-info-area:before, .fc-icon-cross-nooffset .fc-icon-info-nooffset:before, .fc-icon-cross-nooffset .fc-icon-info-area-nooffset:before, .fc-icon-cross-nooffset .fc-icon-attach:before, .fc-icon-cross-nooffset .fc-icon-cross:before, .fc-icon-cross-nooffset .fc-icon-cross-nooffset:before, .fc-icon-cross-nooffset [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: 0;
  }
  .fc-icon-cross-thick {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-cross-thick.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-cross-thick .rfs-icon:before, .fc-icon-cross-thick .fc-input-date-iconclear:before, .fc-icon-cross-thick .fc-input-date-icon:before, .fc-icon-cross-thick .fc-icon-link:before, .fc-icon-cross-thick .fc-icon-sitemap:before, .fc-icon-cross-thick .fc-icon-supercircle-border:before, .fc-icon-cross-thick .fc-icon-supercircle-area:before, .fc-icon-cross-thick .fc-icon-check2:before, .fc-icon-cross-thick .fc-announcement-icon.fc-approved:before, .fc-icon-cross-thick .fc-icon-alert:before, .fc-icon-cross-thick .fc-announcement-icon.fc-alert:before, .fc-icon-cross-thick .fc-icon-download:before, .fc-icon-cross-thick .fc-icon-search:before, .fc-icon-cross-thick .fc-icon-arrow--right:before, .fc-icon-cross-thick .fc-icon-select-new:before, .fc-icon-cross-thick .fc-icon-filter:before, .fc-icon-cross-thick .fc-icon-info:before, .fc-icon-cross-thick .fc-announcement-icon.fc-info:before, .fc-icon-cross-thick .fc-icon-info-area:before, .fc-icon-cross-thick .fc-icon-info-nooffset:before, .fc-icon-cross-thick .fc-icon-info-area-nooffset:before, .fc-icon-cross-thick .fc-icon-attach:before, .fc-icon-cross-thick .fc-icon-cross:before, .fc-icon-cross-thick .fc-icon-cross-nooffset:before, .fc-icon-cross-thick .fc-icon-cross-thick:before, .fc-icon-cross-thick [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  .fc-icon-download {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-download.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-download .rfs-icon:before, .fc-icon-download .fc-input-date-iconclear:before, .fc-icon-download .fc-input-date-icon:before, .fc-icon-download .fc-icon-link:before, .fc-icon-download .fc-icon-sitemap:before, .fc-icon-download .fc-icon-supercircle-border:before, .fc-icon-download .fc-icon-supercircle-area:before, .fc-icon-download .fc-icon-check2:before, .fc-icon-download .fc-announcement-icon.fc-approved:before, .fc-icon-download .fc-icon-alert:before, .fc-icon-download .fc-announcement-icon.fc-alert:before, .fc-icon-download .fc-icon-search:before, .fc-icon-download .fc-icon-arrow--right:before, .fc-icon-download .fc-icon-select-new:before, .fc-icon-download .fc-icon-filter:before, .fc-icon-download .fc-icon-info:before, .fc-icon-download .fc-announcement-icon.fc-info:before, .fc-icon-download .fc-icon-info-area:before, .fc-icon-download .fc-icon-info-nooffset:before, .fc-icon-download .fc-icon-info-area-nooffset:before, .fc-icon-download .fc-icon-attach:before, .fc-icon-download .fc-icon-cross:before, .fc-icon-download .fc-icon-cross-nooffset:before, .fc-icon-download .fc-icon-cross-thick:before, .fc-icon-download .fc-icon-download:before, .fc-icon-download [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  /*.fc-icon-plus {
      @extend .fc-icon;
      @include iconSize(true);
      @include rfs-icon;
      @extend .rfs-icon--type-times-circle !optional;
      transform: rotate(45deg);
  }*/
  .fc-icon-alert, .fc-announcement-icon.fc-alert {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-alert.fc-icon-super-small, .fc-icon-super-small.fc-announcement-icon.fc-alert {
    font-size: 12px;
  }
  .fc-icon-alert .rfs-icon:before, .fc-icon-alert .fc-input-date-iconclear:before, .fc-icon-alert .fc-input-date-icon:before, .fc-announcement-icon.fc-alert .rfs-icon:before, .fc-announcement-icon.fc-alert .fc-input-date-iconclear:before, .fc-announcement-icon.fc-alert .fc-input-date-icon:before, .fc-icon-alert .fc-icon-link:before, .fc-announcement-icon.fc-alert .fc-icon-link:before, .fc-icon-alert .fc-icon-sitemap:before, .fc-announcement-icon.fc-alert .fc-icon-sitemap:before, .fc-icon-alert .fc-icon-supercircle-border:before, .fc-announcement-icon.fc-alert .fc-icon-supercircle-border:before, .fc-icon-alert .fc-icon-supercircle-area:before, .fc-announcement-icon.fc-alert .fc-icon-supercircle-area:before, .fc-icon-alert .fc-icon-check2:before, .fc-icon-alert .fc-announcement-icon.fc-approved:before, .fc-announcement-icon.fc-alert .fc-icon-check2:before, .fc-announcement-icon.fc-alert .fc-announcement-icon.fc-approved:before, .fc-icon-alert .fc-icon-search:before, .fc-announcement-icon.fc-alert .fc-icon-search:before, .fc-icon-alert .fc-icon-arrow--right:before, .fc-announcement-icon.fc-alert .fc-icon-arrow--right:before, .fc-icon-alert .fc-icon-select-new:before, .fc-announcement-icon.fc-alert .fc-icon-select-new:before, .fc-icon-alert .fc-icon-filter:before, .fc-announcement-icon.fc-alert .fc-icon-filter:before, .fc-icon-alert .fc-icon-info:before, .fc-icon-alert .fc-announcement-icon.fc-info:before, .fc-announcement-icon.fc-alert .fc-icon-info:before, .fc-announcement-icon.fc-alert .fc-announcement-icon.fc-info:before, .fc-icon-alert .fc-icon-info-area:before, .fc-announcement-icon.fc-alert .fc-icon-info-area:before, .fc-icon-alert .fc-icon-info-nooffset:before, .fc-announcement-icon.fc-alert .fc-icon-info-nooffset:before, .fc-icon-alert .fc-icon-info-area-nooffset:before, .fc-announcement-icon.fc-alert .fc-icon-info-area-nooffset:before, .fc-icon-alert .fc-icon-attach:before, .fc-announcement-icon.fc-alert .fc-icon-attach:before, .fc-icon-alert .fc-icon-cross:before, .fc-announcement-icon.fc-alert .fc-icon-cross:before, .fc-icon-alert .fc-icon-cross-nooffset:before, .fc-announcement-icon.fc-alert .fc-icon-cross-nooffset:before, .fc-icon-alert .fc-icon-cross-thick:before, .fc-announcement-icon.fc-alert .fc-icon-cross-thick:before, .fc-icon-alert .fc-icon-download:before, .fc-announcement-icon.fc-alert .fc-icon-download:before, .fc-icon-alert .fc-icon-alert:before, .fc-announcement-icon.fc-alert .fc-icon-alert:before, .fc-icon-alert .fc-announcement-icon.fc-alert:before, .fc-announcement-icon.fc-alert .fc-announcement-icon.fc-alert:before, .fc-icon-alert [class*=rfs-icon--type]:before, .fc-announcement-icon.fc-alert [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  /*.fc-icon-danger {
      @extend .fc-icon;
      @include iconSize(true);
      @extend .rfs-icon;
      @extend .rfs-icon--type-pas-op !optional;
  }*/
  .fc-icon-danger, .fc-announcement-icon.fc-problem {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
  }
  .fc-icon-check2, .fc-announcement-icon.fc-approved {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-check2.fc-icon-super-small, .fc-icon-super-small.fc-announcement-icon.fc-approved {
    font-size: 12px;
  }
  .fc-icon-check2 .rfs-icon:before, .fc-icon-check2 .fc-input-date-iconclear:before, .fc-icon-check2 .fc-input-date-icon:before, .fc-announcement-icon.fc-approved .rfs-icon:before, .fc-announcement-icon.fc-approved .fc-input-date-iconclear:before, .fc-announcement-icon.fc-approved .fc-input-date-icon:before, .fc-icon-check2 .fc-icon-link:before, .fc-announcement-icon.fc-approved .fc-icon-link:before, .fc-icon-check2 .fc-icon-sitemap:before, .fc-announcement-icon.fc-approved .fc-icon-sitemap:before, .fc-icon-check2 .fc-icon-supercircle-border:before, .fc-announcement-icon.fc-approved .fc-icon-supercircle-border:before, .fc-icon-check2 .fc-icon-supercircle-area:before, .fc-announcement-icon.fc-approved .fc-icon-supercircle-area:before, .fc-icon-check2 .fc-icon-search:before, .fc-announcement-icon.fc-approved .fc-icon-search:before, .fc-icon-check2 .fc-icon-arrow--right:before, .fc-announcement-icon.fc-approved .fc-icon-arrow--right:before, .fc-icon-check2 .fc-icon-select-new:before, .fc-announcement-icon.fc-approved .fc-icon-select-new:before, .fc-icon-check2 .fc-icon-filter:before, .fc-announcement-icon.fc-approved .fc-icon-filter:before, .fc-icon-check2 .fc-icon-info:before, .fc-icon-check2 .fc-announcement-icon.fc-info:before, .fc-announcement-icon.fc-approved .fc-icon-info:before, .fc-announcement-icon.fc-approved .fc-announcement-icon.fc-info:before, .fc-icon-check2 .fc-icon-info-area:before, .fc-announcement-icon.fc-approved .fc-icon-info-area:before, .fc-icon-check2 .fc-icon-info-nooffset:before, .fc-announcement-icon.fc-approved .fc-icon-info-nooffset:before, .fc-icon-check2 .fc-icon-info-area-nooffset:before, .fc-announcement-icon.fc-approved .fc-icon-info-area-nooffset:before, .fc-icon-check2 .fc-icon-attach:before, .fc-announcement-icon.fc-approved .fc-icon-attach:before, .fc-icon-check2 .fc-icon-cross:before, .fc-announcement-icon.fc-approved .fc-icon-cross:before, .fc-icon-check2 .fc-icon-cross-nooffset:before, .fc-announcement-icon.fc-approved .fc-icon-cross-nooffset:before, .fc-icon-check2 .fc-icon-cross-thick:before, .fc-announcement-icon.fc-approved .fc-icon-cross-thick:before, .fc-icon-check2 .fc-icon-download:before, .fc-announcement-icon.fc-approved .fc-icon-download:before, .fc-icon-check2 .fc-icon-alert:before, .fc-announcement-icon.fc-approved .fc-icon-alert:before, .fc-icon-check2 .fc-announcement-icon.fc-alert:before, .fc-announcement-icon.fc-approved .fc-announcement-icon.fc-alert:before, .fc-icon-check2 .fc-icon-check2:before, .fc-announcement-icon.fc-approved .fc-icon-check2:before, .fc-icon-check2 .fc-announcement-icon.fc-approved:before, .fc-announcement-icon.fc-approved .fc-announcement-icon.fc-approved:before, .fc-icon-check2 [class*=rfs-icon--type]:before, .fc-announcement-icon.fc-approved [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  .fc-icon-supercircle-area {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-supercircle-area.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-supercircle-area .rfs-icon:before, .fc-icon-supercircle-area .fc-input-date-iconclear:before, .fc-icon-supercircle-area .fc-input-date-icon:before, .fc-icon-supercircle-area .fc-icon-link:before, .fc-icon-supercircle-area .fc-icon-sitemap:before, .fc-icon-supercircle-area .fc-icon-supercircle-border:before, .fc-icon-supercircle-area .fc-icon-search:before, .fc-icon-supercircle-area .fc-icon-arrow--right:before, .fc-icon-supercircle-area .fc-icon-select-new:before, .fc-icon-supercircle-area .fc-icon-filter:before, .fc-icon-supercircle-area .fc-icon-info:before, .fc-icon-supercircle-area .fc-announcement-icon.fc-info:before, .fc-icon-supercircle-area .fc-icon-info-area:before, .fc-icon-supercircle-area .fc-icon-info-nooffset:before, .fc-icon-supercircle-area .fc-icon-info-area-nooffset:before, .fc-icon-supercircle-area .fc-icon-attach:before, .fc-icon-supercircle-area .fc-icon-cross:before, .fc-icon-supercircle-area .fc-icon-cross-nooffset:before, .fc-icon-supercircle-area .fc-icon-cross-thick:before, .fc-icon-supercircle-area .fc-icon-download:before, .fc-icon-supercircle-area .fc-icon-alert:before, .fc-icon-supercircle-area .fc-announcement-icon.fc-alert:before, .fc-icon-supercircle-area .fc-icon-check2:before, .fc-icon-supercircle-area .fc-announcement-icon.fc-approved:before, .fc-icon-supercircle-area .fc-icon-supercircle-area:before, .fc-icon-supercircle-area [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  .fc-icon-supercircle-border {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-supercircle-border.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-supercircle-border .rfs-icon:before, .fc-icon-supercircle-border .fc-input-date-iconclear:before, .fc-icon-supercircle-border .fc-input-date-icon:before, .fc-icon-supercircle-border .fc-icon-link:before, .fc-icon-supercircle-border .fc-icon-sitemap:before, .fc-icon-supercircle-border .fc-icon-search:before, .fc-icon-supercircle-border .fc-icon-arrow--right:before, .fc-icon-supercircle-border .fc-icon-select-new:before, .fc-icon-supercircle-border .fc-icon-filter:before, .fc-icon-supercircle-border .fc-icon-info:before, .fc-icon-supercircle-border .fc-announcement-icon.fc-info:before, .fc-icon-supercircle-border .fc-icon-info-area:before, .fc-icon-supercircle-border .fc-icon-info-nooffset:before, .fc-icon-supercircle-border .fc-icon-info-area-nooffset:before, .fc-icon-supercircle-border .fc-icon-attach:before, .fc-icon-supercircle-border .fc-icon-cross:before, .fc-icon-supercircle-border .fc-icon-cross-nooffset:before, .fc-icon-supercircle-border .fc-icon-cross-thick:before, .fc-icon-supercircle-border .fc-icon-download:before, .fc-icon-supercircle-border .fc-icon-alert:before, .fc-icon-supercircle-border .fc-announcement-icon.fc-alert:before, .fc-icon-supercircle-border .fc-icon-check2:before, .fc-icon-supercircle-border .fc-announcement-icon.fc-approved:before, .fc-icon-supercircle-border .fc-icon-supercircle-area:before, .fc-icon-supercircle-border .fc-icon-supercircle-border:before, .fc-icon-supercircle-border [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  .fc-icon-caret-down {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
  }
  .fc-icon-sitemap {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-sitemap.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-sitemap .rfs-icon:before, .fc-icon-sitemap .fc-input-date-iconclear:before, .fc-icon-sitemap .fc-input-date-icon:before, .fc-icon-sitemap .fc-icon-link:before, .fc-icon-sitemap .fc-icon-search:before, .fc-icon-sitemap .fc-icon-arrow--right:before, .fc-icon-sitemap .fc-icon-select-new:before, .fc-icon-sitemap .fc-icon-filter:before, .fc-icon-sitemap .fc-icon-info:before, .fc-icon-sitemap .fc-announcement-icon.fc-info:before, .fc-icon-sitemap .fc-icon-info-area:before, .fc-icon-sitemap .fc-icon-info-nooffset:before, .fc-icon-sitemap .fc-icon-info-area-nooffset:before, .fc-icon-sitemap .fc-icon-attach:before, .fc-icon-sitemap .fc-icon-cross:before, .fc-icon-sitemap .fc-icon-cross-nooffset:before, .fc-icon-sitemap .fc-icon-cross-thick:before, .fc-icon-sitemap .fc-icon-download:before, .fc-icon-sitemap .fc-icon-alert:before, .fc-icon-sitemap .fc-announcement-icon.fc-alert:before, .fc-icon-sitemap .fc-icon-check2:before, .fc-icon-sitemap .fc-announcement-icon.fc-approved:before, .fc-icon-sitemap .fc-icon-supercircle-area:before, .fc-icon-sitemap .fc-icon-supercircle-border:before, .fc-icon-sitemap .fc-icon-sitemap:before, .fc-icon-sitemap [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  .fc-icon-link {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-link.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-link .rfs-icon:before, .fc-icon-link .fc-input-date-iconclear:before, .fc-icon-link .fc-input-date-icon:before, .fc-icon-link .fc-icon-search:before, .fc-icon-link .fc-icon-arrow--right:before, .fc-icon-link .fc-icon-select-new:before, .fc-icon-link .fc-icon-filter:before, .fc-icon-link .fc-icon-info:before, .fc-icon-link .fc-announcement-icon.fc-info:before, .fc-icon-link .fc-icon-info-area:before, .fc-icon-link .fc-icon-info-nooffset:before, .fc-icon-link .fc-icon-info-area-nooffset:before, .fc-icon-link .fc-icon-attach:before, .fc-icon-link .fc-icon-cross:before, .fc-icon-link .fc-icon-cross-nooffset:before, .fc-icon-link .fc-icon-cross-thick:before, .fc-icon-link .fc-icon-download:before, .fc-icon-link .fc-icon-alert:before, .fc-icon-link .fc-announcement-icon.fc-alert:before, .fc-icon-link .fc-icon-check2:before, .fc-icon-link .fc-announcement-icon.fc-approved:before, .fc-icon-link .fc-icon-supercircle-area:before, .fc-icon-link .fc-icon-supercircle-border:before, .fc-icon-link .fc-icon-sitemap:before, .fc-icon-link .fc-icon-link:before, .fc-icon-link [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  .fc-icon-check {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
  }
  .fc-icon-angle-double-down {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
  }
  .fc-icon-validation-ok {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
    color: mediumseagreen;
  }
  .fc-icon-validation-nok {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
    color: coral;
  }
  .fc-icon-play {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
    color: coral;
  }
  .fc-icon-pause {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
    color: coral;
  }
  .fc-announcement {
    display: grid;
    grid-template-columns: 75px 1fr 20px;
    grid-template-rows: minmax(75px, auto);
    padding-top: 5px;
    padding-bottom: 5px;
    /* Border Color for printing */
    border-width: 1px;
    border-style: solid;
  }
  .fc-announcement.fc-problem {
    /*color: red;*/
    color: white;
    border-color: red;
    background-color: red;
  }
  .fc-announcement.fc-alert {
    /* Border Color for printing */
    border-color: #FFC200;
    background-color: #FFC200;
  }
  .fc-announcement.fc-info {
    /* Border Color for printing */
    border-color: rgb(144, 209, 227);
    background-color: rgb(144, 209, 227);
  }
  .fc-announcement.fc-approved {
    /* Border Color for printing */
    border-color: #80BA27;
    background-color: #80BA27;
  }
  .fc-announcement-content {
    grid-column: 2;
    font-family: Myriad-Italic;
    align-self: center;
  }
  .fc-announcement-title {
    font-size: 30pt;
    font-weight: 300;
    color: black;
  }
  .fc-announcement-icon {
    grid-column: 1;
    font-size: 25pt;
    place-self: center;
  }
  .fc-announcement-icon.fc-problem {
    /*color: red !important;*/
    color: white !important;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  .fc-tooltip-layout {
    display: grid;
    grid-template-areas: "title closebox" "content content" "footer footer";
    grid-template-columns: auto 20px;
    height: 100%;
  }
  .fc-tooltip-title {
    grid-area: title;
    color: #333;
    font-weight: 600;
  }
  .fc-tooltip-closebox {
    grid-area: closebox;
    cursor: pointer;
    text-align: end;
    color: #333;
  }
  .fc-tooltip-closebox > .fc-icon:before, .fc-tooltip-closebox > .fc-icon-spinner:before, .fc-tooltip-closebox > .fc-icon-copy:before, .fc-tooltip-closebox > .fc-icon-trash:before, .fc-tooltip-closebox > .fc-icon-edit:before, .fc-tooltip-closebox > .fc-icon-select-in-table:before, .fc-tooltip-closebox > .fc-icon-search:before, .fc-tooltip-closebox > .fc-icon-chevron:before, .fc-tooltip-closebox > .fc-icon-select:before, .fc-tooltip-closebox > .fc-icon-arrow--right:before, .fc-tooltip-closebox > .fc-icon-select-new:before, .fc-tooltip-closebox > .fc-icon-filter:before, .fc-tooltip-closebox > .fc-icon-info:before, .fc-tooltip-closebox > .fc-icon-info-area:before, .fc-tooltip-closebox > .fc-icon-info-nooffset:before, .fc-tooltip-closebox > .fc-icon-info-area-nooffset:before, .fc-tooltip-closebox > .fc-icon-plus:before, .fc-tooltip-closebox > .fc-icon-alert:before, .fc-tooltip-closebox > .fc-icon-danger:before, .fc-tooltip-closebox > .fc-icon-check2:before, .fc-tooltip-closebox > .fc-icon-supercircle-area:before, .fc-tooltip-closebox > .fc-icon-supercircle-border:before, .fc-tooltip-closebox > .fc-icon-caret-down:before, .fc-tooltip-closebox > .fc-icon-sitemap:before, .fc-tooltip-closebox > .fc-icon-link:before, .fc-tooltip-closebox > .fc-icon-check:before, .fc-tooltip-closebox > .fc-icon-angle-double-down:before, .fc-tooltip-closebox > .fc-icon-validation-ok:before, .fc-tooltip-closebox > .fc-icon-validation-nok:before, .fc-tooltip-closebox > .fc-icon-play:before, .fc-tooltip-closebox > .fc-icon-pause:before, .fc-tooltip-closebox > .fc-announcement-icon.fc-problem:before, .fc-tooltip-closebox > .fc-announcement-icon.fc-alert:before, .fc-tooltip-closebox > .fc-announcement-icon.fc-approved:before, .fc-tooltip-closebox > .fc-announcement-icon.fc-info:before {
    vertical-align: 0 !important;
  }
  .fc-tooltip-content {
    grid-area: content;
    color: #333;
    overflow-y: auto;
  }
  .fc-tooltip-footer {
    grid-area: footer;
    border-top: 1px solid #EEF0F0;
    color: #000099;
  }
  .fc-tooltip {
    position: relative;
    display: inline-block; /* This prevents the element and therofore its hover area from being too big */
    cursor: default;
    white-space: normal;
  }
  .fc-tooltip .fc-tooltip-text {
    visibility: hidden;
    background-color: #fff;
    text-align: left;
    padding: 6px;
    border-radius: 3px 3px;
    box-shadow: 0 0 4px #333;
    position: absolute;
    z-index: 9;
    opacity: 0;
    transition: opacity 0.4s;
    border: 1pt solid lightgray;
    /*width: $--tooltip-default-width;*/
    /*overflow-y: auto;*/
    width: 0;
    height: 0;
    top: -1em;
    left: -10000px; /* We need to be out of side initially to prevent flickering */
  }
  .fc-tooltip > .fc-icon:nth-child(2), .fc-tooltip > .fc-icon-spinner:nth-child(2), .fc-tooltip > .fc-icon-copy:nth-child(2), .fc-tooltip > .fc-icon-trash:nth-child(2), .fc-tooltip > .fc-icon-edit:nth-child(2), .fc-tooltip > .fc-icon-select-in-table:nth-child(2), .fc-tooltip > .fc-icon-search:nth-child(2), .fc-tooltip > .fc-icon-chevron:nth-child(2), .fc-tooltip > .fc-icon-select:nth-child(2), .fc-tooltip > .fc-icon-arrow--right:nth-child(2), .fc-tooltip > .fc-icon-select-new:nth-child(2), .fc-tooltip > .fc-icon-filter:nth-child(2), .fc-tooltip > .fc-icon-info:nth-child(2), .fc-tooltip > .fc-icon-info-area:nth-child(2), .fc-tooltip > .fc-icon-info-nooffset:nth-child(2), .fc-tooltip > .fc-icon-info-area-nooffset:nth-child(2), .fc-tooltip > .fc-icon-plus:nth-child(2), .fc-tooltip > .fc-icon-alert:nth-child(2), .fc-tooltip > .fc-icon-danger:nth-child(2), .fc-tooltip > .fc-icon-check2:nth-child(2), .fc-tooltip > .fc-icon-supercircle-area:nth-child(2), .fc-tooltip > .fc-icon-supercircle-border:nth-child(2), .fc-tooltip > .fc-icon-caret-down:nth-child(2), .fc-tooltip > .fc-icon-sitemap:nth-child(2), .fc-tooltip > .fc-icon-link:nth-child(2), .fc-tooltip > .fc-icon-check:nth-child(2), .fc-tooltip > .fc-icon-angle-double-down:nth-child(2), .fc-tooltip > .fc-icon-validation-ok:nth-child(2), .fc-tooltip > .fc-icon-validation-nok:nth-child(2), .fc-tooltip > .fc-icon-play:nth-child(2), .fc-tooltip > .fc-icon-pause:nth-child(2), .fc-tooltip > .fc-announcement-icon.fc-problem:nth-child(2), .fc-tooltip > .fc-announcement-icon.fc-alert:nth-child(2), .fc-tooltip > .fc-announcement-icon.fc-approved:nth-child(2), .fc-tooltip > .fc-announcement-icon.fc-info:nth-child(2) {
    display: none;
  }
  .fc-tooltip:active > .fc-icon:nth-child(1), .fc-tooltip:active > .fc-icon-spinner:nth-child(1), .fc-tooltip:active > .fc-icon-copy:nth-child(1), .fc-tooltip:active > .fc-icon-trash:nth-child(1), .fc-tooltip:active > .fc-icon-edit:nth-child(1), .fc-tooltip:active > .fc-icon-select-in-table:nth-child(1), .fc-tooltip:active > .fc-icon-search:nth-child(1), .fc-tooltip:active > .fc-icon-chevron:nth-child(1), .fc-tooltip:active > .fc-icon-select:nth-child(1), .fc-tooltip:active > .fc-icon-arrow--right:nth-child(1), .fc-tooltip:active > .fc-icon-select-new:nth-child(1), .fc-tooltip:active > .fc-icon-filter:nth-child(1), .fc-tooltip:active > .fc-icon-info:nth-child(1), .fc-tooltip:active > .fc-icon-info-area:nth-child(1), .fc-tooltip:active > .fc-icon-info-nooffset:nth-child(1), .fc-tooltip:active > .fc-icon-info-area-nooffset:nth-child(1), .fc-tooltip:active > .fc-icon-plus:nth-child(1), .fc-tooltip:active > .fc-icon-alert:nth-child(1), .fc-tooltip:active > .fc-icon-danger:nth-child(1), .fc-tooltip:active > .fc-icon-check2:nth-child(1), .fc-tooltip:active > .fc-icon-supercircle-area:nth-child(1), .fc-tooltip:active > .fc-icon-supercircle-border:nth-child(1), .fc-tooltip:active > .fc-icon-caret-down:nth-child(1), .fc-tooltip:active > .fc-icon-sitemap:nth-child(1), .fc-tooltip:active > .fc-icon-link:nth-child(1), .fc-tooltip:active > .fc-icon-check:nth-child(1), .fc-tooltip:active > .fc-icon-angle-double-down:nth-child(1), .fc-tooltip:active > .fc-icon-validation-ok:nth-child(1), .fc-tooltip:active > .fc-icon-validation-nok:nth-child(1), .fc-tooltip:active > .fc-icon-play:nth-child(1), .fc-tooltip:active > .fc-icon-pause:nth-child(1), .fc-tooltip:active > .fc-announcement-icon.fc-problem:nth-child(1), .fc-tooltip:active > .fc-announcement-icon.fc-alert:nth-child(1), .fc-tooltip:active > .fc-announcement-icon.fc-approved:nth-child(1), .fc-tooltip:active > .fc-announcement-icon.fc-info:nth-child(1),
  .fc-tooltip.active > .fc-icon:nth-child(1),
  .fc-tooltip.active > .fc-icon-spinner:nth-child(1),
  .fc-tooltip.active > .fc-icon-copy:nth-child(1),
  .fc-tooltip.active > .fc-icon-trash:nth-child(1),
  .fc-tooltip.active > .fc-icon-edit:nth-child(1),
  .fc-tooltip.active > .fc-icon-select-in-table:nth-child(1),
  .fc-tooltip.active > .fc-icon-search:nth-child(1),
  .fc-tooltip.active > .fc-icon-chevron:nth-child(1),
  .fc-tooltip.active > .fc-icon-select:nth-child(1),
  .fc-tooltip.active > .fc-icon-arrow--right:nth-child(1),
  .fc-tooltip.active > .fc-icon-select-new:nth-child(1),
  .fc-tooltip.active > .fc-icon-filter:nth-child(1),
  .fc-tooltip.active > .fc-icon-info:nth-child(1),
  .fc-tooltip.active > .fc-icon-info-area:nth-child(1),
  .fc-tooltip.active > .fc-icon-info-nooffset:nth-child(1),
  .fc-tooltip.active > .fc-icon-info-area-nooffset:nth-child(1),
  .fc-tooltip.active > .fc-icon-plus:nth-child(1),
  .fc-tooltip.active > .fc-icon-alert:nth-child(1),
  .fc-tooltip.active > .fc-icon-danger:nth-child(1),
  .fc-tooltip.active > .fc-icon-check2:nth-child(1),
  .fc-tooltip.active > .fc-icon-supercircle-area:nth-child(1),
  .fc-tooltip.active > .fc-icon-supercircle-border:nth-child(1),
  .fc-tooltip.active > .fc-icon-caret-down:nth-child(1),
  .fc-tooltip.active > .fc-icon-sitemap:nth-child(1),
  .fc-tooltip.active > .fc-icon-link:nth-child(1),
  .fc-tooltip.active > .fc-icon-check:nth-child(1),
  .fc-tooltip.active > .fc-icon-angle-double-down:nth-child(1),
  .fc-tooltip.active > .fc-icon-validation-ok:nth-child(1),
  .fc-tooltip.active > .fc-icon-validation-nok:nth-child(1),
  .fc-tooltip.active > .fc-icon-play:nth-child(1),
  .fc-tooltip.active > .fc-icon-pause:nth-child(1),
  .fc-tooltip.active > .fc-announcement-icon.fc-problem:nth-child(1),
  .fc-tooltip.active > .fc-announcement-icon.fc-alert:nth-child(1),
  .fc-tooltip.active > .fc-announcement-icon.fc-approved:nth-child(1),
  .fc-tooltip.active > .fc-announcement-icon.fc-info:nth-child(1) {
    display: none;
  }
  .fc-tooltip:active > .fc-icon:nth-child(2), .fc-tooltip:active > .fc-icon-spinner:nth-child(2), .fc-tooltip:active > .fc-icon-copy:nth-child(2), .fc-tooltip:active > .fc-icon-trash:nth-child(2), .fc-tooltip:active > .fc-icon-edit:nth-child(2), .fc-tooltip:active > .fc-icon-select-in-table:nth-child(2), .fc-tooltip:active > .fc-icon-search:nth-child(2), .fc-tooltip:active > .fc-icon-chevron:nth-child(2), .fc-tooltip:active > .fc-icon-select:nth-child(2), .fc-tooltip:active > .fc-icon-arrow--right:nth-child(2), .fc-tooltip:active > .fc-icon-select-new:nth-child(2), .fc-tooltip:active > .fc-icon-filter:nth-child(2), .fc-tooltip:active > .fc-icon-info:nth-child(2), .fc-tooltip:active > .fc-icon-info-area:nth-child(2), .fc-tooltip:active > .fc-icon-info-nooffset:nth-child(2), .fc-tooltip:active > .fc-icon-info-area-nooffset:nth-child(2), .fc-tooltip:active > .fc-icon-plus:nth-child(2), .fc-tooltip:active > .fc-icon-alert:nth-child(2), .fc-tooltip:active > .fc-icon-danger:nth-child(2), .fc-tooltip:active > .fc-icon-check2:nth-child(2), .fc-tooltip:active > .fc-icon-supercircle-area:nth-child(2), .fc-tooltip:active > .fc-icon-supercircle-border:nth-child(2), .fc-tooltip:active > .fc-icon-caret-down:nth-child(2), .fc-tooltip:active > .fc-icon-sitemap:nth-child(2), .fc-tooltip:active > .fc-icon-link:nth-child(2), .fc-tooltip:active > .fc-icon-check:nth-child(2), .fc-tooltip:active > .fc-icon-angle-double-down:nth-child(2), .fc-tooltip:active > .fc-icon-validation-ok:nth-child(2), .fc-tooltip:active > .fc-icon-validation-nok:nth-child(2), .fc-tooltip:active > .fc-icon-play:nth-child(2), .fc-tooltip:active > .fc-icon-pause:nth-child(2), .fc-tooltip:active > .fc-announcement-icon.fc-problem:nth-child(2), .fc-tooltip:active > .fc-announcement-icon.fc-alert:nth-child(2), .fc-tooltip:active > .fc-announcement-icon.fc-approved:nth-child(2), .fc-tooltip:active > .fc-announcement-icon.fc-info:nth-child(2),
  .fc-tooltip.active > .fc-icon:nth-child(2),
  .fc-tooltip.active > .fc-icon-spinner:nth-child(2),
  .fc-tooltip.active > .fc-icon-copy:nth-child(2),
  .fc-tooltip.active > .fc-icon-trash:nth-child(2),
  .fc-tooltip.active > .fc-icon-edit:nth-child(2),
  .fc-tooltip.active > .fc-icon-select-in-table:nth-child(2),
  .fc-tooltip.active > .fc-icon-search:nth-child(2),
  .fc-tooltip.active > .fc-icon-chevron:nth-child(2),
  .fc-tooltip.active > .fc-icon-select:nth-child(2),
  .fc-tooltip.active > .fc-icon-arrow--right:nth-child(2),
  .fc-tooltip.active > .fc-icon-select-new:nth-child(2),
  .fc-tooltip.active > .fc-icon-filter:nth-child(2),
  .fc-tooltip.active > .fc-icon-info:nth-child(2),
  .fc-tooltip.active > .fc-icon-info-area:nth-child(2),
  .fc-tooltip.active > .fc-icon-info-nooffset:nth-child(2),
  .fc-tooltip.active > .fc-icon-info-area-nooffset:nth-child(2),
  .fc-tooltip.active > .fc-icon-plus:nth-child(2),
  .fc-tooltip.active > .fc-icon-alert:nth-child(2),
  .fc-tooltip.active > .fc-icon-danger:nth-child(2),
  .fc-tooltip.active > .fc-icon-check2:nth-child(2),
  .fc-tooltip.active > .fc-icon-supercircle-area:nth-child(2),
  .fc-tooltip.active > .fc-icon-supercircle-border:nth-child(2),
  .fc-tooltip.active > .fc-icon-caret-down:nth-child(2),
  .fc-tooltip.active > .fc-icon-sitemap:nth-child(2),
  .fc-tooltip.active > .fc-icon-link:nth-child(2),
  .fc-tooltip.active > .fc-icon-check:nth-child(2),
  .fc-tooltip.active > .fc-icon-angle-double-down:nth-child(2),
  .fc-tooltip.active > .fc-icon-validation-ok:nth-child(2),
  .fc-tooltip.active > .fc-icon-validation-nok:nth-child(2),
  .fc-tooltip.active > .fc-icon-play:nth-child(2),
  .fc-tooltip.active > .fc-icon-pause:nth-child(2),
  .fc-tooltip.active > .fc-announcement-icon.fc-problem:nth-child(2),
  .fc-tooltip.active > .fc-announcement-icon.fc-alert:nth-child(2),
  .fc-tooltip.active > .fc-announcement-icon.fc-approved:nth-child(2),
  .fc-tooltip.active > .fc-announcement-icon.fc-info:nth-child(2) {
    display: block;
    color: #FD6400;
  }
  .fc-tooltip:active .fc-tooltip-text,
  .fc-tooltip.active .fc-tooltip-text {
    visibility: visible;
    opacity: 1;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* These are merely default values. */
  .fc-map {
    height: 500px;
  }
  .infoDiv {
    height: 250px;
    width: 300px;
    background-color: white;
    -webkit-user-select: none;
    user-select: none;
  }
  .infoDivHeader {
    height: 20px;
    background-color: white;
  }
  .infoDivBody {
    height: calc(100% - 20px);
    width: 100%;
    background-color: white;
    -webkit-user-select: none;
    user-select: none;
  }
  .no-map-size {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
  }
  /* ----------------------- */
  .bounce {
    animation: bounce 1.5s infinite;
    /*animation-iteration-count: 2;*/
  }
  @keyframes bounce {
    0%, 37%, 75%, 100% {
      transform: translateY(0);
    }
    25% {
      transform: translateY(-30px);
    }
    50% {
      transform: translateY(-15px);
    }
  }
  .drop {
    animation: drop 0.6s linear forwards;
  }
  @keyframes drop {
    0% {
      transform: translateY(-200px) scaleY(0.9);
      opacity: 0;
    }
    5% {
      opacity: 0.7;
    }
    50% {
      transform: translateY(0px) scaleY(1);
      opacity: 1;
    }
    65% {
      transform: translateY(-17px) scaleY(0.9);
      opacity: 1;
    }
    75% {
      transform: translateY(-22px) scaleY(0.9);
      opacity: 1;
    }
    100% {
      transform: translateY(0px) scaleY(1);
      opacity: 1;
    }
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  .fc-modal-cancelcross {
    stroke: #000099;
    stroke-width: 2;
    cursor: pointer;
  }
  .fc-modal, .fc-modal-message {
    /*    display: grid;*/
    z-index: 9000;
    display: none;
    grid-template-columns: minmax(auto, 800px);
    /*    padding-top: 100px;*/
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    /*pointer-events: none;*/
    align-items: center;
    justify-content: center;
  }
  .fc-modal-content {
    margin: auto;
    background-color: #fff;
    position: relative;
    outline: 0;
    /*    width: 600px;*/
    display: grid;
    grid-template-areas: "header" "body" "footer";
    padding: 1px;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3em;
    pointer-events: auto;
  }
  .fc-modal-content .wide {
    width: 800px;
  }
  .fc-modal-header {
    display: grid;
    grid-template-areas: "title closebutton";
    grid-template-columns: 1fr auto;
    grid-area: header;
    padding: 10px;
    background-color: #EEE;
  }
  .fc-modal-title {
    grid-area: title;
    color: #000099;
  }
  .fc-modal-body {
    grid-area: body;
    padding: 10px;
    color: #333;
    display: grid;
    grid-template-areas: "icon text";
    grid-template-columns: min-content auto;
    grid-gap: 10px; /* so we can ignore icon if we need to */
    align-items: center;
  }
  .fc-modal-footer {
    grid-area: footer;
    justify-content: end;
    padding: 10px;
    display: grid;
    grid-template-columns: auto auto auto;
  }
  .fc-modal-button {
    width: 170px;
  }
  .fc-modal-message {
    z-index: 10000;
  }
  .fc-modal-area-icon {
    grid-area: icon;
  }
  .fc-modal-area-text {
    grid-area: text;
  }
  .fc-modal-area-closebutton {
    grid-area: closebutton;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* Yes, this still takes space */
  .fc-vspace-0px {
    display: block;
    height: 0px;
    grid-column: 1/-1;
  }
  .fc-vspace-1px {
    display: block;
    height: 1px;
    grid-column: 1/-1;
  }
  .fc-vspace-2px {
    display: block;
    height: 2px;
    grid-column: 1/-1;
  }
  .fc-vspace-3px {
    display: block;
    height: 3px;
    grid-column: 1/-1;
  }
  .fc-vspace-4px {
    display: block;
    height: 4px;
    grid-column: 1/-1;
  }
  .fc-vspace-verysmall {
    display: block;
    height: 5px;
    grid-column: 1/-1;
  }
  .fc-vspace-small {
    display: block;
    height: 10px;
    grid-column: 1/-1;
  }
  .fc-vspace-normal {
    display: block;
    height: 15px;
    grid-column: 1/-1;
  }
  .fc-vspace-medium {
    display: block;
    height: 20px;
    grid-column: 1/-1;
  }
  .fc-vspace-large, .fc-vspace-form-end {
    display: block;
    height: 30px;
    grid-column: 1/-1;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  .fc-filter, .fc-type {
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 15px;
    padding-right: 15px;
    display: grid;
    column-gap: 10px;
    grid-template-columns: 30px min-content 40px;
    font-weight: bold;
    font-style: italic;
    background-color: transparent;
    justify-content: space-between;
    align-items: center;
    /*flex-wrap: nowrap;*/
    text-align: center;
    /*height: 100%;*/
    color: #000099;
    transform: scale(1);
    transition: transform 0.15s ease-in-out;
    min-height: 40px;
  }
  .fc-filter:hover, .fc-type:hover {
    transform: scale(1.1);
    box-shadow: 0 1px 15px 0 #d8d7d8;
  }
  .fc-filter.fc-filter-wide, .fc-filter-wide.fc-type {
    grid-template-columns: auto 120px minmax(10px, auto);
  }
  .fc-filter:active, .fc-type:active, .fc-filter.active, .active.fc-type {
    background-color: #FFEFE5;
    color: #FD6400;
    border-color: #FD6400 !important;
  }
  .fc-filter-child {
    color: inherit;
  }
  .fc-type {
    grid-template-columns: 1fr;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  .fc-default-grid {
    display: grid;
    align-items: center;
    column-gap: 0;
    row-gap: 0;
    grid-template-columns: min-content auto;
  }
  .fc-columns-grid-1 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
    grid-template-columns: 1fr;
  }
  .fc-columns-grid-1.fc-maxwidth {
    grid-template-columns: minmax(100px, 600px);
  }
  .fc-columns-grid-2 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "l r";
    gap: 50px;
    align-items: start;
  }
  .fc-columns-grid-2.fc-grid-tight {
    grid-template-columns: max-content max-content;
  }
  .fc-columns-grid-3 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "l m r";
    gap: 50px;
    align-items: start;
  }
  .fc-columns-grid-3.fc-grid-tight {
    grid-template-columns: max-content max-content max-content;
  }
  .fc-columns-grid-n {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    column-gap: 40px;
    row-gap: 15px;
    justify-content: space-evenly;
  }
  .fc-cardsview-title-grid {
    display: grid;
    grid-template-areas: "title sortlabel sort";
    grid-template-columns: 1fr auto auto;
    column-gap: 15px;
    align-items: center;
  }
  .fc-cardsview-title-plus-grid {
    display: grid;
    grid-template-areas: "title sortlabel sort plus";
    grid-template-columns: 1fr auto auto auto;
    column-gap: 15px;
    align-items: center;
  }
  .fc-search-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr min-content;
    align-items: end;
  }
  .fc-wide-narrow-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr max-content;
    align-items: end;
  }
  .fc-fileupload-grid {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    grid-template-columns: 1fr;
  }
  .fc-fileuploadcontrol-grid {
    display: grid;
    grid-template-rows: 16px;
    grid-template-columns: max-content;
  }
  .fc-cards-grid-1 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(1, 1fr);
    align-items: stretch;
    row-gap: 10px;
    grid-template-columns: 1fr;
  }
  .fc-cards-grid-1.fc-maxwidth {
    grid-template-columns: minmax(100px, 600px);
  }
  .fc-cards-grid-2 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    row-gap: 10px;
    column-gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
  .fc-cards-grid-2.fc-grid-icon-right {
    grid-template-areas: "card icon";
    grid-template-columns: auto min-content;
  }
  .fc-cards-grid-2.fc-grid-icon-left {
    grid-template-areas: "icon card";
    grid-template-columns: min-content auto;
  }
  .fc-filters-grid-2 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    column-gap: 90px;
  }
  .fc-filters-grid-2.fc-filters-sub-grid {
    justify-content: space-evenly;
    column-gap: unset;
    grid-template-columns: repeat(2, auto);
  }
  .fc-filters-grid-3 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    column-gap: 60px;
  }
  .fc-filters-grid-4 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    column-gap: 40px;
  }
  .fc-filters-grid-n {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 280px));
    align-items: stretch;
    column-gap: 40px;
    row-gap: 15px;
    justify-content: center;
    grid-auto-rows: 1fr;
  }
  .fc-filters-grid-n.justify-start {
    justify-content: start;
  }
  .fc-types-grid-n {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 150px));
    align-items: stretch;
    column-gap: 40px;
    row-gap: 15px;
    justify-content: center;
    grid-auto-rows: 1fr;
  }
  .fc-types-grid-n.justify-start {
    justify-content: start;
  }
  .fc-wizard-grid-n {
    display: flex;
    /*grid-template-columns: repeat(auto-fill, minmax(35px, min-content));*/
    /*align-items: start !important;*/
    column-gap: 15px;
    /*row-gap: 15px;*/
  }
  .fc-form-grid {
    display: grid;
    row-gap: 5px;
    align-items: baseline;
    grid-template-columns: 1fr;
  }
  .fc-form-grid .fc-form-checkbox {
    display: grid;
    grid-column: 1/3;
    row-gap: 0;
    column-gap: 10px;
    grid-template-areas: "control label";
    grid-template-columns: 16px 1fr;
    align-items: center;
  }
  .fc-form-grid .fc-form-checkbox.fc-form-checkbox-reverse-order {
    grid-template-areas: "label control";
    grid-template-columns: min-content auto;
  }
  .fc-form-grid-h {
    display: grid;
    row-gap: 10px;
    column-gap: 30px;
    align-items: baseline;
    grid-auto-rows: max-content;
    grid-template-areas: "label control";
    grid-template-columns: max-content minmax(min-content, 1fr);
  }
  .fc-form-grid-h.halign-center {
    column-gap: 10px;
    grid-template-columns: auto auto;
  }
  .fc-form-grid-h .fc-form-checkbox {
    display: grid;
    grid-column: 1/3;
    row-gap: 0;
    column-gap: 10px;
    grid-template-areas: "control label";
    grid-template-columns: 16px 1fr;
    align-items: center;
  }
  .fc-form-grid-h .fc-form-checkbox.fc-form-checkbox-reverse-order {
    grid-template-areas: "label control";
    grid-template-columns: min-content auto;
  }
  .fc-form-grid-h-extra {
    display: grid;
    row-gap: 10px;
    column-gap: 30px;
    grid-auto-rows: max-content;
    grid-template-areas: "label control extra";
    align-items: center;
    grid-template-columns: max-content minmax(200px, max-content) 1fr;
  }
  .fc-form-grid-h-extra.halign-center {
    column-gap: 10px;
    grid-template-columns: auto auto auto;
  }
  .fc-form-grid-h-extra .fc-form-checkbox {
    display: grid;
    grid-column: 1/4;
    row-gap: 0;
    column-gap: 10px;
    grid-template-areas: "control label";
    grid-template-columns: 16px 1fr;
    align-items: center;
  }
  .fc-form-grid-h-extra .fc-form-checkbox.fc-form-checkbox-reverse-order {
    grid-template-areas: "label control";
    grid-template-columns: min-content auto;
  }
  .fc-form-cell {
    display: grid;
    align-items: center;
    row-gap: 0;
    column-gap: 10px;
    grid-template-areas: "label" "control";
  }
  .fc-form-cell-checkbox {
    display: grid;
    align-items: center;
    row-gap: 0;
    column-gap: 10px;
    grid-template-areas: "control label";
    grid-template-columns: 16px 1fr;
  }
  .fc-form-cell-checkbox.checkbox-reverse-order {
    grid-template-areas: "label control";
    grid-template-columns: min-content auto;
  }
  .fc-data-grid {
    display: grid;
    align-items: start;
    row-gap: 0;
    column-gap: 15px;
    grid-template-areas: "label data";
    grid-template-columns: 190px auto;
  }
  .fc-data-grid.flexwidth {
    grid-template-columns: auto auto;
  }
  .fc-data-grid.indentation {
    padding-left: 0.75em;
  }
  .fc-data-grid.indentation-2x {
    padding-left: 1.5em;
  }
  .fc-data-control {
    display: grid;
    align-items: start;
    width: 250px;
  }
  .fc-data-control.fc-input-full-width {
    width: 100%;
  }
  .fc-radio-grid {
    display: flex;
    column-gap: 15px;
  }
  .fc-warning-date-grid {
    display: grid;
    column-gap: 5px;
    grid-template-columns: 1fr auto;
    /*align-items: self-end; // Use this when using RFS font*/
    align-items: center;
    white-space: nowrap;
  }
  .fc-warning-date-grid .fc-icon, .fc-warning-date-grid .fc-icon-spinner, .fc-warning-date-grid .fc-icon-copy, .fc-warning-date-grid .fc-icon-trash, .fc-warning-date-grid .fc-icon-edit, .fc-warning-date-grid .fc-icon-select-in-table, .fc-warning-date-grid .fc-icon-search, .fc-warning-date-grid .fc-icon-chevron, .fc-warning-date-grid .fc-icon-select, .fc-warning-date-grid .fc-icon-arrow--right, .fc-warning-date-grid .fc-icon-select-new, .fc-warning-date-grid .fc-icon-filter, .fc-warning-date-grid .fc-icon-info, .fc-warning-date-grid .fc-icon-info-area, .fc-warning-date-grid .fc-icon-info-nooffset, .fc-warning-date-grid .fc-icon-info-area-nooffset, .fc-warning-date-grid .fc-icon-plus, .fc-warning-date-grid .fc-icon-alert, .fc-warning-date-grid .fc-icon-danger, .fc-warning-date-grid .fc-icon-check2, .fc-warning-date-grid .fc-icon-supercircle-area, .fc-warning-date-grid .fc-icon-supercircle-border, .fc-warning-date-grid .fc-icon-caret-down, .fc-warning-date-grid .fc-icon-sitemap, .fc-warning-date-grid .fc-icon-link, .fc-warning-date-grid .fc-icon-check, .fc-warning-date-grid .fc-icon-angle-double-down, .fc-warning-date-grid .fc-icon-validation-ok, .fc-warning-date-grid .fc-icon-validation-nok, .fc-warning-date-grid .fc-icon-play, .fc-warning-date-grid .fc-icon-pause, .fc-warning-date-grid .fc-announcement-icon.fc-problem, .fc-warning-date-grid .fc-announcement-icon.fc-alert, .fc-warning-date-grid .fc-announcement-icon.fc-approved, .fc-warning-date-grid .fc-announcement-icon.fc-info {
    color: #FD6400;
  }
  .fc-servicemessages-grid {
    display: grid;
    column-gap: 15px;
    grid-template-columns: auto 1fr auto;
  }
  .fc-button-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, max-content));
  }
  .fc-button-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, max-content));
  }
  .fc-objects-cvzeg-grid {
    grid-template-columns: minmax(150px, 1.2fr) max-content 1fr min-content min-content;
  }
  .fc-objects-cvzeg-grid .fc-objects-cvzeg-grid-footer-row {
    display: contents;
  }
  .fc-objects-cvzeg-grid .fc-objects-cvzeg-grid-footer-row .fc-objects-cvzeg-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
    margin-right: 14px;
  }
  .fc-objects-cvzeg-readonly-grid {
    grid-template-columns: minmax(200px, 1.2fr) max-content min-content 1fr;
  }
  .fc-objects-cvzeg-readonly-grid .fc-objects-cvzeg-grid-footer-row {
    display: contents;
  }
  .fc-objects-cvzeg-readonly-grid .fc-objects-cvzeg-grid-footer-row .fc-objects-cvzeg-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
  }
  .fc-objects-agri-grid {
    grid-template-columns: minmax(150px, 1.2fr) max-content min-content min-content;
  }
  .fc-objects-agri-grid .fc-objects-agri-grid-footer-row {
    display: contents;
  }
  .fc-objects-agri-grid .fc-objects-agri-grid-footer-row .fc-objects-agri-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
    margin-right: 14px;
  }
  .fc-objects-agri-readonly-grid {
    grid-template-columns: minmax(200px, 1.2fr) 1fr 1fr;
  }
  .fc-objects-agri-readonly-grid .fc-objects-agri-grid-footer-row {
    display: contents;
  }
  .fc-objects-agri-readonly-grid .fc-objects-agri-grid-footer-row .fc-objects-agri-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
  }
  .fc-objects-shipping-grid {
    grid-template-columns: max-content max-content max-content min-content;
  }
  .fc-objects-shipping-grid .fc-objects-shipping-grid-footer-row {
    display: contents;
  }
  .fc-objects-shipping-grid .fc-objects-shipping-grid-footer-row .fc-objects-shipping-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
    margin-right: 14px;
  }
  .fc-objects-shipping-readonly-grid {
    grid-template-columns: minmax(200px, 1.2fr) 1fr 1fr;
  }
  .fc-objects-shipping-readonly-grid .fc-objects-shipping-grid-footer-row {
    display: contents;
  }
  .fc-objects-shipping-readonly-grid .fc-objects-shipping-grid-footer-row .fc-objects-shipping-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
  }
  .fc-regio-grid {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    row-gap: 10px;
    column-gap: 50px;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
  }
  .fc-regio-grid.fc-grid-icon-right {
    grid-template-areas: "card icon";
    grid-template-columns: auto min-content;
  }
  .fc-regio-grid.fc-grid-icon-left {
    grid-template-areas: "icon card";
    grid-template-columns: min-content auto;
  }
  .fc-smoketest-grid {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(1, 1fr);
    width: 30%;
    margin: auto;
  }
  /*.fc-layout-marginleft {
      grid-area: marginLeft;
      background-color: #F3F5F6;
  }

  .fc-layout-marginright {
      grid-area: marginRight;
      background-color: #F3F5F6;
  }

  .fc-layout-shadowleft {
      grid-area: shadowleft;
      background-image: url('../Images/Shadow-Left.png');
      min-height: 100vh;
  }

  .fc-layout-shadowright {
      grid-area: shadowright;
      background-image: url('../Images/Shadow-Right.png');
      min-height: 100vh;
  }

  .fc-layout-logo {
      grid-area: logo;
  }

  .fc-layout-header {
      grid-area: header;
  }

  .fc-layout-date {
      grid-area: date;
      padding-top: 11px;
      background-color: $--rabo-blue;
      color: white;
      font-size: 12pt;
      font-weight: normal;
      text-align: center;
  }

  .fc-layout-name {
      grid-area: name;
      padding-top: 11px;
      background-color: $--rabo-blue;
      color: white;
      font-size: 12pt;
      font-weight: normal;
      text-align: right;
      border-left-style: solid;
      border-left-color: $--rabo-dark-orange;
      border-left-width: 2px;
      padding-right: 10px;
  }

  .fc-layout-menu {
      grid-area: menu;
  }

  .fc-layout-content {
      grid-area: content;
  }

  .fc-layout-divider-blue {
      grid-area: divider1;
      background-color: $--rabo-blue;
  }

  .fc-layout-divider-grey {
      grid-area: divider2;
      background-color: rgba(0,0,0,0.125);
  }

  .fc-layout-grid {
      @include fc-grid;
      align-items: stretch;
      grid-template-areas: 'marginLeft shadowleft logo divider0 header shadowright marginRight' 'marginLeft shadowleft date divider1 name shadowright marginRight' 'marginLeft shadowleft menu divider2 content shadowright marginRight';
      grid-template-columns: 20px 6px 210px 1px auto 6px 20px;
      grid-template-rows: 76px 40px auto;
      background-color: white;
      min-width: 1000px;
  }*/
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  .fc-button {
    display: grid;
    outline: 0 none !important;
    padding: 0.3em 1em 0.3em;
    margin: auto;
    border-radius: 7px/50% !important;
    white-space: nowrap;
  }
  .fc-button:not(:first-child) {
    margin-left: 1em !important;
  }
  /* Primary buttons */
  .fc-button.primary {
    background: #FD6400 !important;
    border: 1px solid #FD6400;
    color: #fff !important;
    display: inline-block;
    cursor: pointer;
    text-align: center !important;
    text-decoration: none !important;
    line-height: 1.4em !important;
  }
  .fc-button.primary.large a {
    font-size: 1.11em;
    font-family: "Myriad Regular", Verdana, "Sans Serif";
  }
  .fc-button.primary.large {
    padding: 0.5em 1em;
  }
  .fc-button.primary a {
    color: #fff;
    text-decoration: none;
  }
  .fc-button.primary a:hover {
    color: #fff;
  }
  .fc-button.primary:hover {
    color: #fff !important;
    background: #FF4800 !important;
    border: 1px solid #FF4800 !important;
  }
  .fc-button.primary.large .decoratedlight:before {
    display: none;
  }
  .fc-button.primary.large .decoratedlight:after {
    display: none;
  }
  .fc-button.primary.large a.decoratedlight {
    padding-left: 0em !important;
  }
  .fc-button.primary .decoratedlight:before {
    display: none;
  }
  .fc-button.primary .decoratedlight:after {
    display: none;
  }
  .fc-button.primary a.decoratedlight {
    padding-left: 0em !important;
  }
  .fc-button.primary:disabled, .fc-button.primary.disabled,
  .fc-button.primary:disabled:hover, .fc-button.primary.disabled:hover {
    background-color: #CCC !important;
    border-color: #CCC !important;
    cursor: default !important;
  }
  /* Secondary buttons */
  .fc-button.secondary {
    background: white !important;
    border: 1px solid #009;
    color: #009 !important;
    display: inline-block;
    cursor: pointer;
    text-align: center !important;
    text-decoration: none !important;
    line-height: 1.4em !important;
  }
  .fc-button.secondary.large {
    padding: 0.5em 1em;
  }
  .fc-button.secondary a {
    color: #009 !important;
    text-decoration: none;
  }
  .fc-button.secondary a:hover {
    color: #427ac9;
  }
  .fc-button.secondary:hover {
    color: #427ac9 !important;
    background: #f7f7f7 !important;
    border: 1px solid #427ac9 !important;
  }
  .fc-button.secondary.large a {
    font-size: 1.11em;
    font-family: "Myriad Regular", Verdana, "Sans Serif";
  }
  .fc-button.secondary.large .decoratedlight:before {
    display: none;
  }
  .fc-button.secondary.large .decoratedlight:after {
    display: none;
  }
  .fc-button.secondary.large a.decoratedlight {
    padding-left: 0em !important;
  }
  .fc-button.secondary .decoratedlight:before {
    display: none;
  }
  .fc-button.secondary .decoratedlight:after {
    display: none;
  }
  .fc-button.secondary:disabled, .fc-button.secondary.disabled,
  .fc-button.secondary:disabled:hover, .fc-button.secondary.disabled:hover {
    background-color: #f7f7f7 !important;
    border-color: #f7f7f7 !important;
    cursor: default !important;
    color: #aaa !important;
  }
  .fc-button-home a {
    text-decoration: none !important;
    display: inline-flex;
    text-align: center;
    align-items: center;
    justify-content: left;
    column-gap: 5px;
  }
  .fc-button-home a:hover {
    color: #FD6400 !important;
  }
  .fc-button-home a:hover .fc-button-home-icon-shape-text {
    stroke: #FD6400;
  }
  .fc-button-home .fc-button-home-icon {
    width: 25px;
    height: 25px;
  }
  .fc-button-home .fc-button-home-icon .fc-button-home-icon-shape-outer {
    stroke: rgb(170, 170, 170);
    stroke-width: 50px;
  }
  .fc-button-home .fc-button-home-icon .fc-button-home-icon-shape-inner {
    fill: rgb(227, 227, 227);
  }
  .fc-button-home .fc-button-home-icon .fc-button-home-icon-shape-text {
    stroke: #000099;
    stroke-width: 50px;
    fill: none;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  @supports (line-clamp: 0) {
    .fc-ellipsis-ml-collapsed.fc-ellipsis-ml-3 {
      line-clamp: 3;
      display: -webkit-box;
      text-overflow: ellipsis;
    }
  }
  @supports not (line-clamp: 0) {
    .fc-ellipsis-ml-collapsed.fc-ellipsis-ml-3 {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
  }
  @supports (line-clamp: 0) {
    .fc-ellipsis-ml-collapsed.fc-ellipsis-ml-4 {
      line-clamp: 4;
      display: -webkit-box;
      text-overflow: ellipsis;
    }
  }
  @supports not (line-clamp: 0) {
    .fc-ellipsis-ml-collapsed.fc-ellipsis-ml-4 {
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
  }
  @supports (line-clamp: 0) {
    .fc-ellipsis-ml-collapsed.fc-ellipsis-ml-5 {
      line-clamp: 5;
      display: -webkit-box;
      text-overflow: ellipsis;
    }
  }
  @supports not (line-clamp: 0) {
    .fc-ellipsis-ml-collapsed.fc-ellipsis-ml-5 {
      display: -webkit-box;
      -webkit-line-clamp: 5;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
  }
  .fc-ellipsis-ml-read-more {
    display: none;
    text-align: center;
  }
  .fc-ellipsis-ml-read-more:after {
    font-family: "Font Awesome 6 Free";
    content: "\f078";
    display: block;
    padding-left: 3px;
    vertical-align: middle;
    font-weight: 900;
    font-size: x-large;
    color: #000099;
    cursor: pointer;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  .rfs-icon--size-super-small:before {
    font-size: 12px;
  }
  .rfs-icon--size-extra-small:before, .fc-icon-search.fc-icon-extra-small:before, .fc-icon-arrow--right.fc-icon-extra-small:before, .fc-icon-extra-small.fc-icon-select-new:before, .fc-icon-filter.fc-icon-extra-small:before, .fc-icon-info.fc-icon-extra-small:before, .fc-icon-info-area.fc-icon-extra-small:before, .fc-icon-info-nooffset.fc-icon-extra-small:before, .fc-icon-info-area-nooffset.fc-icon-extra-small:before, .fc-icon-attach.fc-icon-extra-small:before, .fc-icon-cross.fc-icon-extra-small:before, .fc-icon-cross-nooffset.fc-icon-extra-small:before, .fc-icon-cross-thick.fc-icon-extra-small:before, .fc-icon-download.fc-icon-extra-small:before, .fc-icon-alert.fc-icon-extra-small:before, .fc-icon-check2.fc-icon-extra-small:before, .fc-icon-supercircle-area.fc-icon-extra-small:before, .fc-icon-supercircle-border.fc-icon-extra-small:before, .fc-icon-sitemap.fc-icon-extra-small:before, .fc-icon-link.fc-icon-extra-small:before, .fc-icon-extra-small.fc-announcement-icon.fc-alert:before, .fc-icon-extra-small.fc-announcement-icon.fc-approved:before, .fc-icon-extra-small.fc-announcement-icon.fc-info:before {
    font-size: 16px;
  }
  .rfs-icon--size-small:before, .fc-icon-search.fc-icon-small:before, .fc-icon-arrow--right.fc-icon-small:before, .fc-icon-small.fc-icon-select-new:before, .fc-icon-filter.fc-icon-small:before, .fc-icon-info.fc-icon-small:before, .fc-icon-info-area.fc-icon-small:before, .fc-icon-info-nooffset.fc-icon-small:before, .fc-icon-info-area-nooffset.fc-icon-small:before, .fc-icon-attach.fc-icon-small:before, .fc-icon-cross.fc-icon-small:before, .fc-icon-cross-nooffset.fc-icon-small:before, .fc-icon-cross-thick.fc-icon-small:before, .fc-icon-download.fc-icon-small:before, .fc-icon-alert.fc-icon-small:before, .fc-icon-check2.fc-icon-small:before, .fc-icon-supercircle-area.fc-icon-small:before, .fc-icon-supercircle-border.fc-icon-small:before, .fc-icon-sitemap.fc-icon-small:before, .fc-icon-link.fc-icon-small:before, .fc-icon-small.fc-announcement-icon.fc-alert:before, .fc-icon-small.fc-announcement-icon.fc-approved:before, .fc-icon-small.fc-announcement-icon.fc-info:before {
    font-size: 24px;
  }
  /* part of rfs */
  /*.rfs-icon--size-medium:before {
      font-size: 32px;
  }*/
  /* part of rfs */
  /*.rfs-icon--size-large:before {
      font-size: 64px;
  }*/
  /* TODO: Revisit Font-Sizes */
  .fc-icon, .fc-icon-spinner, .fc-icon-copy, .fc-icon-trash, .fc-icon-edit, .fc-icon-select-in-table, .fc-icon-search, .fc-icon-chevron, .fc-icon-select, .fc-icon-arrow--right, .fc-icon-select-new, .fc-icon-filter, .fc-icon-info, .fc-icon-info-area, .fc-icon-info-nooffset, .fc-icon-info-area-nooffset, .fc-icon-plus, .fc-icon-alert, .fc-icon-danger, .fc-icon-check2, .fc-icon-supercircle-area, .fc-icon-supercircle-border, .fc-icon-caret-down, .fc-icon-sitemap, .fc-icon-link, .fc-icon-check, .fc-icon-angle-double-down, .fc-icon-validation-ok, .fc-icon-validation-nok, .fc-icon-play, .fc-icon-pause, .fc-announcement-icon.fc-problem, .fc-announcement-icon.fc-alert, .fc-announcement-icon.fc-approved, .fc-announcement-icon.fc-info {
    color: #000099;
    text-decoration: none !important;
  }
  /* A poor-mans parent-selector. But it helps not having to add fc-inactive to individual icons when an element is supposed to be inactive. */
  :not(.fc-inactive) > .fc-icon-button, :not(.fc-inactive) > .fc-icon-attach, :not(.fc-inactive) > .fc-icon-cross, :not(.fc-inactive) > .fc-icon-cross-nooffset, :not(.fc-inactive) > .fc-icon-cross-thick, :not(.fc-inactive) > .fc-icon-download {
    color: #000099;
    cursor: pointer;
  }
  /* A poor-mans parent-selector. But it helps not having to add fc-inactive to individual icons when an element is supposed to be inactive. */
  :not(.fc-inactive) > .fc-icon-button:not(.fc-inactive):hover, :not(.fc-inactive) > .fc-icon-attach:not(.fc-inactive):hover, :not(.fc-inactive) > .fc-icon-cross:not(.fc-inactive):hover, :not(.fc-inactive) > .fc-icon-cross-nooffset:not(.fc-inactive):hover, :not(.fc-inactive) > .fc-icon-cross-thick:not(.fc-inactive):hover, :not(.fc-inactive) > .fc-icon-download:not(.fc-inactive):hover, :not(.fc-inactive) > .fc-icon-button:not(.fc-inactive).hover, :not(.fc-inactive) > .fc-icon-attach:not(.fc-inactive).hover, :not(.fc-inactive) > .fc-icon-cross:not(.fc-inactive).hover, :not(.fc-inactive) > .fc-icon-cross-nooffset:not(.fc-inactive).hover, :not(.fc-inactive) > .fc-icon-cross-thick:not(.fc-inactive).hover, :not(.fc-inactive) > .fc-icon-download:not(.fc-inactive).hover {
    color: #FD6400;
  }
  .fc-icon.disabled, .disabled.fc-icon-spinner, .disabled.fc-icon-copy, .disabled.fc-icon-trash, .disabled.fc-icon-edit, .disabled.fc-icon-select-in-table, .disabled.fc-icon-search, .disabled.fc-icon-chevron, .disabled.fc-icon-select, .disabled.fc-icon-arrow--right, .disabled.fc-icon-select-new, .disabled.fc-icon-filter, .disabled.fc-icon-info, .disabled.fc-icon-info-area, .disabled.fc-icon-info-nooffset, .disabled.fc-icon-info-area-nooffset, .disabled.fc-icon-plus, .disabled.fc-icon-alert, .disabled.fc-icon-danger, .disabled.fc-icon-check2, .disabled.fc-icon-supercircle-area, .disabled.fc-icon-supercircle-border, .disabled.fc-icon-caret-down, .disabled.fc-icon-sitemap, .disabled.fc-icon-link, .disabled.fc-icon-check, .disabled.fc-icon-angle-double-down, .disabled.fc-icon-validation-ok, .disabled.fc-icon-validation-nok, .disabled.fc-icon-play, .disabled.fc-icon-pause, .disabled.fc-announcement-icon.fc-problem, .disabled.fc-announcement-icon.fc-alert, .disabled.fc-announcement-icon.fc-approved, .disabled.fc-announcement-icon.fc-info {
    color: #CCC;
  }
  .fc-icon-spinner {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
  }
  .fc-icon-spinner:hover, .fc-icon-spinner.hover {
    color: #000099;
  }
  .fc-icon-copy {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
  }
  .fc-icon-trash {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
  }
  /*.fc-icon-trash {
      @extend .fc-icon;
      @include iconSize(true);
      @extend .rfs-icons !optional;
      @extend .rfs-icon--type-prullenbak !optional;
  }*/
  .fc-icon-edit {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
  }
  /*
  .fc-icon-edit {
      @extend .fc-icon;
      @include iconSize(true);
      @extend .rfs-icons !optional;
      @extend .rfs-icon--type-potlood !optional;
  }
  */
  .fc-icon-select-in-table {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
  }
  .fc-icon-search {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-search.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-search .rfs-icon:before, .fc-icon-search .fc-input-date-iconclear:before, .fc-icon-search .fc-input-date-icon:before, .fc-icon-search .fc-icon-search:before, .fc-icon-search .fc-icon-arrow--right:before, .fc-icon-search .fc-icon-select-new:before, .fc-icon-search .fc-icon-filter:before, .fc-icon-search .fc-icon-info:before, .fc-icon-search .fc-icon-info-area:before, .fc-icon-search .fc-icon-info-nooffset:before, .fc-icon-search .fc-icon-info-area-nooffset:before, .fc-icon-search .fc-icon-attach:before, .fc-icon-search .fc-icon-cross:before, .fc-icon-search .fc-icon-cross-nooffset:before, .fc-icon-search .fc-icon-cross-thick:before, .fc-icon-search .fc-icon-download:before, .fc-icon-search .fc-icon-alert:before, .fc-icon-search .fc-icon-check2:before, .fc-icon-search .fc-icon-supercircle-area:before, .fc-icon-search .fc-icon-supercircle-border:before, .fc-icon-search .fc-icon-sitemap:before, .fc-icon-search .fc-icon-link:before, .fc-icon-search .fc-announcement-icon.fc-alert:before, .fc-icon-search .fc-announcement-icon.fc-approved:before, .fc-icon-search .fc-announcement-icon.fc-info:before, .fc-icon-search [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  .fc-icon-chevron, .fc-icon-select {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
  }
  .fc-icon-arrow--right, .fc-icon-select-new {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-arrow--right.fc-icon-super-small, .fc-icon-super-small.fc-icon-select-new {
    font-size: 12px;
  }
  .fc-icon-arrow--right .rfs-icon:before, .fc-icon-arrow--right .fc-input-date-iconclear:before, .fc-icon-arrow--right .fc-input-date-icon:before, .fc-icon-select-new .rfs-icon:before, .fc-icon-select-new .fc-input-date-iconclear:before, .fc-icon-select-new .fc-input-date-icon:before, .fc-icon-arrow--right .fc-icon-search:before, .fc-icon-select-new .fc-icon-search:before, .fc-icon-arrow--right .fc-icon-arrow--right:before, .fc-icon-select-new .fc-icon-arrow--right:before, .fc-icon-arrow--right .fc-icon-select-new:before, .fc-icon-select-new .fc-icon-select-new:before, .fc-icon-arrow--right .fc-icon-filter:before, .fc-icon-select-new .fc-icon-filter:before, .fc-icon-arrow--right .fc-icon-info:before, .fc-icon-select-new .fc-icon-info:before, .fc-icon-arrow--right .fc-icon-info-area:before, .fc-icon-select-new .fc-icon-info-area:before, .fc-icon-arrow--right .fc-icon-info-nooffset:before, .fc-icon-select-new .fc-icon-info-nooffset:before, .fc-icon-arrow--right .fc-icon-info-area-nooffset:before, .fc-icon-select-new .fc-icon-info-area-nooffset:before, .fc-icon-arrow--right .fc-icon-attach:before, .fc-icon-select-new .fc-icon-attach:before, .fc-icon-arrow--right .fc-icon-cross:before, .fc-icon-select-new .fc-icon-cross:before, .fc-icon-arrow--right .fc-icon-cross-nooffset:before, .fc-icon-select-new .fc-icon-cross-nooffset:before, .fc-icon-arrow--right .fc-icon-cross-thick:before, .fc-icon-select-new .fc-icon-cross-thick:before, .fc-icon-arrow--right .fc-icon-download:before, .fc-icon-select-new .fc-icon-download:before, .fc-icon-arrow--right .fc-icon-alert:before, .fc-icon-select-new .fc-icon-alert:before, .fc-icon-arrow--right .fc-icon-check2:before, .fc-icon-select-new .fc-icon-check2:before, .fc-icon-arrow--right .fc-icon-supercircle-area:before, .fc-icon-select-new .fc-icon-supercircle-area:before, .fc-icon-arrow--right .fc-icon-supercircle-border:before, .fc-icon-select-new .fc-icon-supercircle-border:before, .fc-icon-arrow--right .fc-icon-sitemap:before, .fc-icon-select-new .fc-icon-sitemap:before, .fc-icon-arrow--right .fc-icon-link:before, .fc-icon-select-new .fc-icon-link:before, .fc-icon-arrow--right .fc-announcement-icon.fc-alert:before, .fc-icon-select-new .fc-announcement-icon.fc-alert:before, .fc-icon-arrow--right .fc-announcement-icon.fc-approved:before, .fc-icon-select-new .fc-announcement-icon.fc-approved:before, .fc-icon-arrow--right .fc-announcement-icon.fc-info:before, .fc-icon-select-new .fc-announcement-icon.fc-info:before, .fc-icon-arrow--right [class*=rfs-icon--type]:before, .fc-icon-select-new [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  /*.fc-icon-filter {
      @extend .fc-icon;
      @include iconSize(false);
      @extend .fas !optional;
      @extend .fa-clipboard-check !optional;
  }*/
  .fc-icon-filter {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
    padding-top: 3px;
  }
  .fc-icon-filter.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-filter .rfs-icon:before, .fc-icon-filter .fc-input-date-iconclear:before, .fc-icon-filter .fc-input-date-icon:before, .fc-icon-filter .fc-icon-search:before, .fc-icon-filter .fc-icon-arrow--right:before, .fc-icon-filter .fc-icon-select-new:before, .fc-icon-filter .fc-icon-filter:before, .fc-icon-filter .fc-icon-info:before, .fc-icon-filter .fc-icon-info-area:before, .fc-icon-filter .fc-icon-info-nooffset:before, .fc-icon-filter .fc-icon-info-area-nooffset:before, .fc-icon-filter .fc-icon-attach:before, .fc-icon-filter .fc-icon-cross:before, .fc-icon-filter .fc-icon-cross-nooffset:before, .fc-icon-filter .fc-icon-cross-thick:before, .fc-icon-filter .fc-icon-download:before, .fc-icon-filter .fc-icon-alert:before, .fc-icon-filter .fc-icon-check2:before, .fc-icon-filter .fc-icon-supercircle-area:before, .fc-icon-filter .fc-icon-supercircle-border:before, .fc-icon-filter .fc-icon-sitemap:before, .fc-icon-filter .fc-icon-link:before, .fc-icon-filter .fc-announcement-icon.fc-alert:before, .fc-icon-filter .fc-announcement-icon.fc-approved:before, .fc-icon-filter .fc-announcement-icon.fc-info:before, .fc-icon-filter [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  /*.fc-icon-info {
      @extend .fc-icon;
      @include iconSize(false);
      @extend .fas !optional;
      @extend .fa-info-circle !optional;
  }*/
  .fc-icon-info, .fc-announcement-icon.fc-info {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-info.fc-icon-super-small, .fc-icon-super-small.fc-announcement-icon.fc-info {
    font-size: 12px;
  }
  .fc-icon-info .rfs-icon:before, .fc-icon-info .fc-input-date-iconclear:before, .fc-icon-info .fc-input-date-icon:before, .fc-announcement-icon.fc-info .rfs-icon:before, .fc-announcement-icon.fc-info .fc-input-date-iconclear:before, .fc-announcement-icon.fc-info .fc-input-date-icon:before, .fc-icon-info .fc-icon-search:before, .fc-announcement-icon.fc-info .fc-icon-search:before, .fc-icon-info .fc-icon-arrow--right:before, .fc-announcement-icon.fc-info .fc-icon-arrow--right:before, .fc-icon-info .fc-icon-select-new:before, .fc-announcement-icon.fc-info .fc-icon-select-new:before, .fc-icon-info .fc-icon-filter:before, .fc-announcement-icon.fc-info .fc-icon-filter:before, .fc-icon-info .fc-icon-info:before, .fc-announcement-icon.fc-info .fc-icon-info:before, .fc-icon-info .fc-icon-info-area:before, .fc-announcement-icon.fc-info .fc-icon-info-area:before, .fc-icon-info .fc-icon-info-nooffset:before, .fc-announcement-icon.fc-info .fc-icon-info-nooffset:before, .fc-icon-info .fc-icon-info-area-nooffset:before, .fc-announcement-icon.fc-info .fc-icon-info-area-nooffset:before, .fc-icon-info .fc-icon-attach:before, .fc-announcement-icon.fc-info .fc-icon-attach:before, .fc-icon-info .fc-icon-cross:before, .fc-announcement-icon.fc-info .fc-icon-cross:before, .fc-icon-info .fc-icon-cross-nooffset:before, .fc-announcement-icon.fc-info .fc-icon-cross-nooffset:before, .fc-icon-info .fc-icon-cross-thick:before, .fc-announcement-icon.fc-info .fc-icon-cross-thick:before, .fc-icon-info .fc-icon-download:before, .fc-announcement-icon.fc-info .fc-icon-download:before, .fc-icon-info .fc-icon-alert:before, .fc-announcement-icon.fc-info .fc-icon-alert:before, .fc-icon-info .fc-icon-check2:before, .fc-announcement-icon.fc-info .fc-icon-check2:before, .fc-icon-info .fc-icon-supercircle-area:before, .fc-announcement-icon.fc-info .fc-icon-supercircle-area:before, .fc-icon-info .fc-icon-supercircle-border:before, .fc-announcement-icon.fc-info .fc-icon-supercircle-border:before, .fc-icon-info .fc-icon-sitemap:before, .fc-announcement-icon.fc-info .fc-icon-sitemap:before, .fc-icon-info .fc-icon-link:before, .fc-announcement-icon.fc-info .fc-icon-link:before, .fc-icon-info .fc-announcement-icon.fc-alert:before, .fc-announcement-icon.fc-info .fc-announcement-icon.fc-alert:before, .fc-icon-info .fc-announcement-icon.fc-approved:before, .fc-announcement-icon.fc-info .fc-announcement-icon.fc-approved:before, .fc-icon-info .fc-announcement-icon.fc-info:before, .fc-announcement-icon.fc-info .fc-announcement-icon.fc-info:before, .fc-icon-info [class*=rfs-icon--type]:before, .fc-announcement-icon.fc-info [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  .fc-icon-info-area {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-info-area.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-info-area .rfs-icon:before, .fc-icon-info-area .fc-input-date-iconclear:before, .fc-icon-info-area .fc-input-date-icon:before, .fc-icon-info-area .fc-icon-search:before, .fc-icon-info-area .fc-icon-arrow--right:before, .fc-icon-info-area .fc-icon-select-new:before, .fc-icon-info-area .fc-icon-filter:before, .fc-icon-info-area .fc-icon-info:before, .fc-icon-info-area .fc-icon-info-area:before, .fc-icon-info-area .fc-icon-info-nooffset:before, .fc-icon-info-area .fc-icon-info-area-nooffset:before, .fc-icon-info-area .fc-icon-attach:before, .fc-icon-info-area .fc-icon-cross:before, .fc-icon-info-area .fc-icon-cross-nooffset:before, .fc-icon-info-area .fc-icon-cross-thick:before, .fc-icon-info-area .fc-icon-download:before, .fc-icon-info-area .fc-icon-alert:before, .fc-icon-info-area .fc-icon-check2:before, .fc-icon-info-area .fc-icon-supercircle-area:before, .fc-icon-info-area .fc-icon-supercircle-border:before, .fc-icon-info-area .fc-icon-sitemap:before, .fc-icon-info-area .fc-icon-link:before, .fc-icon-info-area .fc-announcement-icon.fc-alert:before, .fc-icon-info-area .fc-announcement-icon.fc-approved:before, .fc-icon-info-area .fc-announcement-icon.fc-info:before, .fc-icon-info-area [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  .fc-icon-info-nooffset {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-info-nooffset.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-info-nooffset .rfs-icon:before, .fc-icon-info-nooffset .fc-input-date-iconclear:before, .fc-icon-info-nooffset .fc-input-date-icon:before, .fc-icon-info-nooffset .fc-icon-search:before, .fc-icon-info-nooffset .fc-icon-arrow--right:before, .fc-icon-info-nooffset .fc-icon-select-new:before, .fc-icon-info-nooffset .fc-icon-filter:before, .fc-icon-info-nooffset .fc-icon-info:before, .fc-icon-info-nooffset .fc-icon-info-area:before, .fc-icon-info-nooffset .fc-icon-info-nooffset:before, .fc-icon-info-nooffset .fc-icon-info-area-nooffset:before, .fc-icon-info-nooffset .fc-icon-attach:before, .fc-icon-info-nooffset .fc-icon-cross:before, .fc-icon-info-nooffset .fc-icon-cross-nooffset:before, .fc-icon-info-nooffset .fc-icon-cross-thick:before, .fc-icon-info-nooffset .fc-icon-download:before, .fc-icon-info-nooffset .fc-icon-alert:before, .fc-icon-info-nooffset .fc-icon-check2:before, .fc-icon-info-nooffset .fc-icon-supercircle-area:before, .fc-icon-info-nooffset .fc-icon-supercircle-border:before, .fc-icon-info-nooffset .fc-icon-sitemap:before, .fc-icon-info-nooffset .fc-icon-link:before, .fc-icon-info-nooffset .fc-announcement-icon.fc-alert:before, .fc-icon-info-nooffset .fc-announcement-icon.fc-approved:before, .fc-icon-info-nooffset .fc-announcement-icon.fc-info:before, .fc-icon-info-nooffset [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: 0;
  }
  .fc-icon-info-area-nooffset {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-info-area-nooffset.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-info-area-nooffset .rfs-icon:before, .fc-icon-info-area-nooffset .fc-input-date-iconclear:before, .fc-icon-info-area-nooffset .fc-input-date-icon:before, .fc-icon-info-area-nooffset .fc-icon-search:before, .fc-icon-info-area-nooffset .fc-icon-arrow--right:before, .fc-icon-info-area-nooffset .fc-icon-select-new:before, .fc-icon-info-area-nooffset .fc-icon-filter:before, .fc-icon-info-area-nooffset .fc-icon-info:before, .fc-icon-info-area-nooffset .fc-icon-info-area:before, .fc-icon-info-area-nooffset .fc-icon-info-nooffset:before, .fc-icon-info-area-nooffset .fc-icon-info-area-nooffset:before, .fc-icon-info-area-nooffset .fc-icon-attach:before, .fc-icon-info-area-nooffset .fc-icon-cross:before, .fc-icon-info-area-nooffset .fc-icon-cross-nooffset:before, .fc-icon-info-area-nooffset .fc-icon-cross-thick:before, .fc-icon-info-area-nooffset .fc-icon-download:before, .fc-icon-info-area-nooffset .fc-icon-alert:before, .fc-icon-info-area-nooffset .fc-icon-check2:before, .fc-icon-info-area-nooffset .fc-icon-supercircle-area:before, .fc-icon-info-area-nooffset .fc-icon-supercircle-border:before, .fc-icon-info-area-nooffset .fc-icon-sitemap:before, .fc-icon-info-area-nooffset .fc-icon-link:before, .fc-icon-info-area-nooffset .fc-announcement-icon.fc-alert:before, .fc-icon-info-area-nooffset .fc-announcement-icon.fc-approved:before, .fc-icon-info-area-nooffset .fc-announcement-icon.fc-info:before, .fc-icon-info-area-nooffset [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: 0;
  }
  .fc-icon-plus {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
  }
  .fc-icon-attach {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-attach.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-attach .rfs-icon:before, .fc-icon-attach .fc-input-date-iconclear:before, .fc-icon-attach .fc-input-date-icon:before, .fc-icon-attach .fc-icon-search:before, .fc-icon-attach .fc-icon-arrow--right:before, .fc-icon-attach .fc-icon-select-new:before, .fc-icon-attach .fc-icon-filter:before, .fc-icon-attach .fc-icon-info:before, .fc-icon-attach .fc-icon-info-area:before, .fc-icon-attach .fc-icon-info-nooffset:before, .fc-icon-attach .fc-icon-info-area-nooffset:before, .fc-icon-attach .fc-icon-attach:before, .fc-icon-attach .fc-icon-cross:before, .fc-icon-attach .fc-icon-cross-nooffset:before, .fc-icon-attach .fc-icon-cross-thick:before, .fc-icon-attach .fc-icon-download:before, .fc-icon-attach .fc-icon-alert:before, .fc-icon-attach .fc-icon-check2:before, .fc-icon-attach .fc-icon-supercircle-area:before, .fc-icon-attach .fc-icon-supercircle-border:before, .fc-icon-attach .fc-icon-sitemap:before, .fc-icon-attach .fc-icon-link:before, .fc-icon-attach .fc-announcement-icon.fc-alert:before, .fc-icon-attach .fc-announcement-icon.fc-approved:before, .fc-icon-attach .fc-announcement-icon.fc-info:before, .fc-icon-attach [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  .fc-icon-cross {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-cross.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-cross .rfs-icon:before, .fc-icon-cross .fc-input-date-iconclear:before, .fc-icon-cross .fc-input-date-icon:before, .fc-icon-cross .fc-icon-search:before, .fc-icon-cross .fc-icon-arrow--right:before, .fc-icon-cross .fc-icon-select-new:before, .fc-icon-cross .fc-icon-filter:before, .fc-icon-cross .fc-icon-info:before, .fc-icon-cross .fc-icon-info-area:before, .fc-icon-cross .fc-icon-info-nooffset:before, .fc-icon-cross .fc-icon-info-area-nooffset:before, .fc-icon-cross .fc-icon-attach:before, .fc-icon-cross .fc-icon-cross:before, .fc-icon-cross .fc-icon-cross-nooffset:before, .fc-icon-cross .fc-icon-cross-thick:before, .fc-icon-cross .fc-icon-download:before, .fc-icon-cross .fc-icon-alert:before, .fc-icon-cross .fc-icon-check2:before, .fc-icon-cross .fc-icon-supercircle-area:before, .fc-icon-cross .fc-icon-supercircle-border:before, .fc-icon-cross .fc-icon-sitemap:before, .fc-icon-cross .fc-icon-link:before, .fc-icon-cross .fc-announcement-icon.fc-alert:before, .fc-icon-cross .fc-announcement-icon.fc-approved:before, .fc-icon-cross .fc-announcement-icon.fc-info:before, .fc-icon-cross [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  .fc-icon-cross-nooffset {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-cross-nooffset.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-cross-nooffset .rfs-icon:before, .fc-icon-cross-nooffset .fc-input-date-iconclear:before, .fc-icon-cross-nooffset .fc-input-date-icon:before, .fc-icon-cross-nooffset .fc-icon-search:before, .fc-icon-cross-nooffset .fc-icon-arrow--right:before, .fc-icon-cross-nooffset .fc-icon-select-new:before, .fc-icon-cross-nooffset .fc-icon-filter:before, .fc-icon-cross-nooffset .fc-icon-info:before, .fc-icon-cross-nooffset .fc-icon-info-area:before, .fc-icon-cross-nooffset .fc-icon-info-nooffset:before, .fc-icon-cross-nooffset .fc-icon-info-area-nooffset:before, .fc-icon-cross-nooffset .fc-icon-attach:before, .fc-icon-cross-nooffset .fc-icon-cross:before, .fc-icon-cross-nooffset .fc-icon-cross-nooffset:before, .fc-icon-cross-nooffset .fc-icon-cross-thick:before, .fc-icon-cross-nooffset .fc-icon-download:before, .fc-icon-cross-nooffset .fc-icon-alert:before, .fc-icon-cross-nooffset .fc-icon-check2:before, .fc-icon-cross-nooffset .fc-icon-supercircle-area:before, .fc-icon-cross-nooffset .fc-icon-supercircle-border:before, .fc-icon-cross-nooffset .fc-icon-sitemap:before, .fc-icon-cross-nooffset .fc-icon-link:before, .fc-icon-cross-nooffset .fc-announcement-icon.fc-alert:before, .fc-icon-cross-nooffset .fc-announcement-icon.fc-approved:before, .fc-icon-cross-nooffset .fc-announcement-icon.fc-info:before, .fc-icon-cross-nooffset [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: 0;
  }
  .fc-icon-cross-thick {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-cross-thick.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-cross-thick .rfs-icon:before, .fc-icon-cross-thick .fc-input-date-iconclear:before, .fc-icon-cross-thick .fc-input-date-icon:before, .fc-icon-cross-thick .fc-icon-search:before, .fc-icon-cross-thick .fc-icon-arrow--right:before, .fc-icon-cross-thick .fc-icon-select-new:before, .fc-icon-cross-thick .fc-icon-filter:before, .fc-icon-cross-thick .fc-icon-info:before, .fc-icon-cross-thick .fc-icon-info-area:before, .fc-icon-cross-thick .fc-icon-info-nooffset:before, .fc-icon-cross-thick .fc-icon-info-area-nooffset:before, .fc-icon-cross-thick .fc-icon-attach:before, .fc-icon-cross-thick .fc-icon-cross:before, .fc-icon-cross-thick .fc-icon-cross-nooffset:before, .fc-icon-cross-thick .fc-icon-cross-thick:before, .fc-icon-cross-thick .fc-icon-download:before, .fc-icon-cross-thick .fc-icon-alert:before, .fc-icon-cross-thick .fc-icon-check2:before, .fc-icon-cross-thick .fc-icon-supercircle-area:before, .fc-icon-cross-thick .fc-icon-supercircle-border:before, .fc-icon-cross-thick .fc-icon-sitemap:before, .fc-icon-cross-thick .fc-icon-link:before, .fc-icon-cross-thick .fc-announcement-icon.fc-alert:before, .fc-icon-cross-thick .fc-announcement-icon.fc-approved:before, .fc-icon-cross-thick .fc-announcement-icon.fc-info:before, .fc-icon-cross-thick [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  .fc-icon-download {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-download.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-download .rfs-icon:before, .fc-icon-download .fc-input-date-iconclear:before, .fc-icon-download .fc-input-date-icon:before, .fc-icon-download .fc-icon-search:before, .fc-icon-download .fc-icon-arrow--right:before, .fc-icon-download .fc-icon-select-new:before, .fc-icon-download .fc-icon-filter:before, .fc-icon-download .fc-icon-info:before, .fc-icon-download .fc-icon-info-area:before, .fc-icon-download .fc-icon-info-nooffset:before, .fc-icon-download .fc-icon-info-area-nooffset:before, .fc-icon-download .fc-icon-attach:before, .fc-icon-download .fc-icon-cross:before, .fc-icon-download .fc-icon-cross-nooffset:before, .fc-icon-download .fc-icon-cross-thick:before, .fc-icon-download .fc-icon-download:before, .fc-icon-download .fc-icon-alert:before, .fc-icon-download .fc-icon-check2:before, .fc-icon-download .fc-icon-supercircle-area:before, .fc-icon-download .fc-icon-supercircle-border:before, .fc-icon-download .fc-icon-sitemap:before, .fc-icon-download .fc-icon-link:before, .fc-icon-download .fc-announcement-icon.fc-alert:before, .fc-icon-download .fc-announcement-icon.fc-approved:before, .fc-icon-download .fc-announcement-icon.fc-info:before, .fc-icon-download [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  /*.fc-icon-plus {
      @extend .fc-icon;
      @include iconSize(true);
      @include rfs-icon;
      @extend .rfs-icon--type-times-circle !optional;
      transform: rotate(45deg);
  }*/
  .fc-icon-alert, .fc-announcement-icon.fc-alert {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-alert.fc-icon-super-small, .fc-icon-super-small.fc-announcement-icon.fc-alert {
    font-size: 12px;
  }
  .fc-icon-alert .rfs-icon:before, .fc-icon-alert .fc-input-date-iconclear:before, .fc-icon-alert .fc-input-date-icon:before, .fc-announcement-icon.fc-alert .rfs-icon:before, .fc-announcement-icon.fc-alert .fc-input-date-iconclear:before, .fc-announcement-icon.fc-alert .fc-input-date-icon:before, .fc-icon-alert .fc-icon-search:before, .fc-announcement-icon.fc-alert .fc-icon-search:before, .fc-icon-alert .fc-icon-arrow--right:before, .fc-announcement-icon.fc-alert .fc-icon-arrow--right:before, .fc-icon-alert .fc-icon-select-new:before, .fc-announcement-icon.fc-alert .fc-icon-select-new:before, .fc-icon-alert .fc-icon-filter:before, .fc-announcement-icon.fc-alert .fc-icon-filter:before, .fc-icon-alert .fc-icon-info:before, .fc-announcement-icon.fc-alert .fc-icon-info:before, .fc-icon-alert .fc-icon-info-area:before, .fc-announcement-icon.fc-alert .fc-icon-info-area:before, .fc-icon-alert .fc-icon-info-nooffset:before, .fc-announcement-icon.fc-alert .fc-icon-info-nooffset:before, .fc-icon-alert .fc-icon-info-area-nooffset:before, .fc-announcement-icon.fc-alert .fc-icon-info-area-nooffset:before, .fc-icon-alert .fc-icon-attach:before, .fc-announcement-icon.fc-alert .fc-icon-attach:before, .fc-icon-alert .fc-icon-cross:before, .fc-announcement-icon.fc-alert .fc-icon-cross:before, .fc-icon-alert .fc-icon-cross-nooffset:before, .fc-announcement-icon.fc-alert .fc-icon-cross-nooffset:before, .fc-icon-alert .fc-icon-cross-thick:before, .fc-announcement-icon.fc-alert .fc-icon-cross-thick:before, .fc-icon-alert .fc-icon-download:before, .fc-announcement-icon.fc-alert .fc-icon-download:before, .fc-icon-alert .fc-icon-alert:before, .fc-announcement-icon.fc-alert .fc-icon-alert:before, .fc-icon-alert .fc-icon-check2:before, .fc-announcement-icon.fc-alert .fc-icon-check2:before, .fc-icon-alert .fc-icon-supercircle-area:before, .fc-announcement-icon.fc-alert .fc-icon-supercircle-area:before, .fc-icon-alert .fc-icon-supercircle-border:before, .fc-announcement-icon.fc-alert .fc-icon-supercircle-border:before, .fc-icon-alert .fc-icon-sitemap:before, .fc-announcement-icon.fc-alert .fc-icon-sitemap:before, .fc-icon-alert .fc-icon-link:before, .fc-announcement-icon.fc-alert .fc-icon-link:before, .fc-icon-alert .fc-announcement-icon.fc-alert:before, .fc-announcement-icon.fc-alert .fc-announcement-icon.fc-alert:before, .fc-icon-alert .fc-announcement-icon.fc-approved:before, .fc-announcement-icon.fc-alert .fc-announcement-icon.fc-approved:before, .fc-icon-alert .fc-announcement-icon.fc-info:before, .fc-announcement-icon.fc-alert .fc-announcement-icon.fc-info:before, .fc-icon-alert [class*=rfs-icon--type]:before, .fc-announcement-icon.fc-alert [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  /*.fc-icon-danger {
      @extend .fc-icon;
      @include iconSize(true);
      @extend .rfs-icon;
      @extend .rfs-icon--type-pas-op !optional;
  }*/
  .fc-icon-danger, .fc-announcement-icon.fc-problem {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
  }
  .fc-icon-check2, .fc-announcement-icon.fc-approved {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-check2.fc-icon-super-small, .fc-icon-super-small.fc-announcement-icon.fc-approved {
    font-size: 12px;
  }
  .fc-icon-check2 .rfs-icon:before, .fc-icon-check2 .fc-input-date-iconclear:before, .fc-icon-check2 .fc-input-date-icon:before, .fc-announcement-icon.fc-approved .rfs-icon:before, .fc-announcement-icon.fc-approved .fc-input-date-iconclear:before, .fc-announcement-icon.fc-approved .fc-input-date-icon:before, .fc-icon-check2 .fc-icon-search:before, .fc-announcement-icon.fc-approved .fc-icon-search:before, .fc-icon-check2 .fc-icon-arrow--right:before, .fc-announcement-icon.fc-approved .fc-icon-arrow--right:before, .fc-icon-check2 .fc-icon-select-new:before, .fc-announcement-icon.fc-approved .fc-icon-select-new:before, .fc-icon-check2 .fc-icon-filter:before, .fc-announcement-icon.fc-approved .fc-icon-filter:before, .fc-icon-check2 .fc-icon-info:before, .fc-announcement-icon.fc-approved .fc-icon-info:before, .fc-icon-check2 .fc-icon-info-area:before, .fc-announcement-icon.fc-approved .fc-icon-info-area:before, .fc-icon-check2 .fc-icon-info-nooffset:before, .fc-announcement-icon.fc-approved .fc-icon-info-nooffset:before, .fc-icon-check2 .fc-icon-info-area-nooffset:before, .fc-announcement-icon.fc-approved .fc-icon-info-area-nooffset:before, .fc-icon-check2 .fc-icon-attach:before, .fc-announcement-icon.fc-approved .fc-icon-attach:before, .fc-icon-check2 .fc-icon-cross:before, .fc-announcement-icon.fc-approved .fc-icon-cross:before, .fc-icon-check2 .fc-icon-cross-nooffset:before, .fc-announcement-icon.fc-approved .fc-icon-cross-nooffset:before, .fc-icon-check2 .fc-icon-cross-thick:before, .fc-announcement-icon.fc-approved .fc-icon-cross-thick:before, .fc-icon-check2 .fc-icon-download:before, .fc-announcement-icon.fc-approved .fc-icon-download:before, .fc-icon-check2 .fc-icon-alert:before, .fc-announcement-icon.fc-approved .fc-icon-alert:before, .fc-icon-check2 .fc-icon-check2:before, .fc-announcement-icon.fc-approved .fc-icon-check2:before, .fc-icon-check2 .fc-icon-supercircle-area:before, .fc-announcement-icon.fc-approved .fc-icon-supercircle-area:before, .fc-icon-check2 .fc-icon-supercircle-border:before, .fc-announcement-icon.fc-approved .fc-icon-supercircle-border:before, .fc-icon-check2 .fc-icon-sitemap:before, .fc-announcement-icon.fc-approved .fc-icon-sitemap:before, .fc-icon-check2 .fc-icon-link:before, .fc-announcement-icon.fc-approved .fc-icon-link:before, .fc-icon-check2 .fc-announcement-icon.fc-alert:before, .fc-announcement-icon.fc-approved .fc-announcement-icon.fc-alert:before, .fc-icon-check2 .fc-announcement-icon.fc-approved:before, .fc-announcement-icon.fc-approved .fc-announcement-icon.fc-approved:before, .fc-icon-check2 .fc-announcement-icon.fc-info:before, .fc-announcement-icon.fc-approved .fc-announcement-icon.fc-info:before, .fc-icon-check2 [class*=rfs-icon--type]:before, .fc-announcement-icon.fc-approved [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  .fc-icon-supercircle-area {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-supercircle-area.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-supercircle-area .rfs-icon:before, .fc-icon-supercircle-area .fc-input-date-iconclear:before, .fc-icon-supercircle-area .fc-input-date-icon:before, .fc-icon-supercircle-area .fc-icon-search:before, .fc-icon-supercircle-area .fc-icon-arrow--right:before, .fc-icon-supercircle-area .fc-icon-select-new:before, .fc-icon-supercircle-area .fc-icon-filter:before, .fc-icon-supercircle-area .fc-icon-info:before, .fc-icon-supercircle-area .fc-icon-info-area:before, .fc-icon-supercircle-area .fc-icon-info-nooffset:before, .fc-icon-supercircle-area .fc-icon-info-area-nooffset:before, .fc-icon-supercircle-area .fc-icon-attach:before, .fc-icon-supercircle-area .fc-icon-cross:before, .fc-icon-supercircle-area .fc-icon-cross-nooffset:before, .fc-icon-supercircle-area .fc-icon-cross-thick:before, .fc-icon-supercircle-area .fc-icon-download:before, .fc-icon-supercircle-area .fc-icon-alert:before, .fc-icon-supercircle-area .fc-icon-check2:before, .fc-icon-supercircle-area .fc-icon-supercircle-area:before, .fc-icon-supercircle-area .fc-icon-supercircle-border:before, .fc-icon-supercircle-area .fc-icon-sitemap:before, .fc-icon-supercircle-area .fc-icon-link:before, .fc-icon-supercircle-area .fc-announcement-icon.fc-alert:before, .fc-icon-supercircle-area .fc-announcement-icon.fc-approved:before, .fc-icon-supercircle-area .fc-announcement-icon.fc-info:before, .fc-icon-supercircle-area [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  .fc-icon-supercircle-border {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-supercircle-border.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-supercircle-border .rfs-icon:before, .fc-icon-supercircle-border .fc-input-date-iconclear:before, .fc-icon-supercircle-border .fc-input-date-icon:before, .fc-icon-supercircle-border .fc-icon-search:before, .fc-icon-supercircle-border .fc-icon-arrow--right:before, .fc-icon-supercircle-border .fc-icon-select-new:before, .fc-icon-supercircle-border .fc-icon-filter:before, .fc-icon-supercircle-border .fc-icon-info:before, .fc-icon-supercircle-border .fc-icon-info-area:before, .fc-icon-supercircle-border .fc-icon-info-nooffset:before, .fc-icon-supercircle-border .fc-icon-info-area-nooffset:before, .fc-icon-supercircle-border .fc-icon-attach:before, .fc-icon-supercircle-border .fc-icon-cross:before, .fc-icon-supercircle-border .fc-icon-cross-nooffset:before, .fc-icon-supercircle-border .fc-icon-cross-thick:before, .fc-icon-supercircle-border .fc-icon-download:before, .fc-icon-supercircle-border .fc-icon-alert:before, .fc-icon-supercircle-border .fc-icon-check2:before, .fc-icon-supercircle-border .fc-icon-supercircle-area:before, .fc-icon-supercircle-border .fc-icon-supercircle-border:before, .fc-icon-supercircle-border .fc-icon-sitemap:before, .fc-icon-supercircle-border .fc-icon-link:before, .fc-icon-supercircle-border .fc-announcement-icon.fc-alert:before, .fc-icon-supercircle-border .fc-announcement-icon.fc-approved:before, .fc-icon-supercircle-border .fc-announcement-icon.fc-info:before, .fc-icon-supercircle-border [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  .fc-icon-caret-down {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
  }
  .fc-icon-sitemap {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-sitemap.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-sitemap .rfs-icon:before, .fc-icon-sitemap .fc-input-date-iconclear:before, .fc-icon-sitemap .fc-input-date-icon:before, .fc-icon-sitemap .fc-icon-search:before, .fc-icon-sitemap .fc-icon-arrow--right:before, .fc-icon-sitemap .fc-icon-select-new:before, .fc-icon-sitemap .fc-icon-filter:before, .fc-icon-sitemap .fc-icon-info:before, .fc-icon-sitemap .fc-icon-info-area:before, .fc-icon-sitemap .fc-icon-info-nooffset:before, .fc-icon-sitemap .fc-icon-info-area-nooffset:before, .fc-icon-sitemap .fc-icon-attach:before, .fc-icon-sitemap .fc-icon-cross:before, .fc-icon-sitemap .fc-icon-cross-nooffset:before, .fc-icon-sitemap .fc-icon-cross-thick:before, .fc-icon-sitemap .fc-icon-download:before, .fc-icon-sitemap .fc-icon-alert:before, .fc-icon-sitemap .fc-icon-check2:before, .fc-icon-sitemap .fc-icon-supercircle-area:before, .fc-icon-sitemap .fc-icon-supercircle-border:before, .fc-icon-sitemap .fc-icon-sitemap:before, .fc-icon-sitemap .fc-icon-link:before, .fc-icon-sitemap .fc-announcement-icon.fc-alert:before, .fc-icon-sitemap .fc-announcement-icon.fc-approved:before, .fc-icon-sitemap .fc-announcement-icon.fc-info:before, .fc-icon-sitemap [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  .fc-icon-link {
    /* same as large (large does not exist) */
    /* same as medium (large does not exist) */
    /* same as medium (making this fit with the sizes we used in FontAwesom) */
  }
  .fc-icon-link.fc-icon-super-small {
    font-size: 12px;
  }
  .fc-icon-link .rfs-icon:before, .fc-icon-link .fc-input-date-iconclear:before, .fc-icon-link .fc-input-date-icon:before, .fc-icon-link .fc-icon-search:before, .fc-icon-link .fc-icon-arrow--right:before, .fc-icon-link .fc-icon-select-new:before, .fc-icon-link .fc-icon-filter:before, .fc-icon-link .fc-icon-info:before, .fc-icon-link .fc-icon-info-area:before, .fc-icon-link .fc-icon-info-nooffset:before, .fc-icon-link .fc-icon-info-area-nooffset:before, .fc-icon-link .fc-icon-attach:before, .fc-icon-link .fc-icon-cross:before, .fc-icon-link .fc-icon-cross-nooffset:before, .fc-icon-link .fc-icon-cross-thick:before, .fc-icon-link .fc-icon-download:before, .fc-icon-link .fc-icon-alert:before, .fc-icon-link .fc-icon-check2:before, .fc-icon-link .fc-icon-supercircle-area:before, .fc-icon-link .fc-icon-supercircle-border:before, .fc-icon-link .fc-icon-sitemap:before, .fc-icon-link .fc-icon-link:before, .fc-icon-link .fc-announcement-icon.fc-alert:before, .fc-icon-link .fc-announcement-icon.fc-approved:before, .fc-icon-link .fc-announcement-icon.fc-info:before, .fc-icon-link [class*=rfs-icon--type]:before {
    /* This is what FontAwesome uses */
    /*vertical-align: -.0667em;*/
    /* Self-made offset for RFS */
    vertical-align: -0.4em;
  }
  .fc-icon-check {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
  }
  .fc-icon-angle-double-down {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
  }
  .fc-icon-validation-ok {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
    color: mediumseagreen;
  }
  .fc-icon-validation-nok {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
    color: coral;
  }
  .fc-icon-play {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
    color: coral;
  }
  .fc-icon-pause {
    /* same as medium (medium does not exist in fa) */
    /* same as small (medium does not exist in fa) */
    color: coral;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  .fc-toast {
    /*visibility: hidden;*/
    min-width: 250px;
    margin-left: -125px;
    background-color: #80ba27;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 16px;
    position: fixed;
    z-index: -1;
    bottom: 0px;
    right: 30px;
    font-size: 17px;
    opacity: 0;
  }
  /* CODE BELOW IS CURRENTLY NOT BEING USED. I FAVORED JQuery for the animations...... */
  .fc-toast.fc-toast-fadein {
    animation: fadein 0.5s linear forwards;
  }
  .fc-toast.fc-toast-fadeout {
    animation: fadeout 0.5s linear forwards;
  }
  @keyframes fc-toast-fadein {
    from {
      z-index: 1000;
      bottom: 0;
      opacity: 0;
    }
    to {
      z-index: 1000;
      bottom: 30px;
      opacity: 1;
    }
  }
  @keyframes fc-toast-fadeout {
    from {
      bottom: 30px;
      opacity: 1;
      z-index: -1;
    }
    to {
      bottom: 0;
      opacity: 0;
      z-index: -1;
    }
  }
  .rfs-spinner {
    animation: rotate-spinner 1s linear infinite;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .rfs-spinner--xs {
    height: 16px;
    width: 16px;
  }
  .rfs-spinner--sm {
    height: 28px;
    width: 28px;
  }
  .rfs-spinner--md {
    height: 40px;
    width: 40px;
  }
  .rfs-spinner--lg {
    height: 52px;
    width: 52px;
  }
  .rfs-spinner .rfs-spinner__svg {
    width: 100%;
  }
  .rfs-spinner .rfs-spinner__drawing {
    fill: none;
    stroke-width: 3px;
  }
  .rfs-spinner stop {
    stop-color: #009;
  }
  .rfs-spinner stop.bg-spinner {
    stop-color: black;
    stop-opacity: 0.07;
  }
  .rfs-spinner--inverse stop {
    stop-color: #fff;
  }
  .rfs-spinner--inverse stop.bg-spinner {
    stop-color: black;
    stop-opacity: 0.07;
  }
  @keyframes rotate-spinner {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  .fc-paginator {
    display: none;
    text-align: right;
  }
  .fc-pagination {
    display: flex;
  }
  .fc-pagination-container {
    display: inline-block;
  }
  .fc-page-item.active .fc-page-link {
    z-index: 3;
    color: #000099;
    /*        background-color: $pagination-active-bg;*/
    background-color: #FFEFE5;
    /*border-color: $--rabo-active-border-color;*/
  }
  .fc-page-item.disabled .fc-page-link {
    color: #AAA;
    pointer-events: none;
    cursor: auto;
    /*        background-color: $pagination-disabled-bg;*/
    /*border-color: $--rabo-inactive-border-color;*/
  }
  .fc-page-item .fc-page-link {
    position: relative;
    display: block;
    padding-left: 0.75rem;
    /*padding-right: .75rem;*/
    margin-left: 1px;
    line-height: 1.25;
    color: #000099;
    text-decoration: none;
    margin-left: -1px;
  }
  .fc-page-item .fc-page-link:hover {
    z-index: 2;
    color: #FD6400 !important;
    text-decoration: none;
    /*        background-color: $pagination-hover-bg;*/
    /*        border-color: $pagination-hover-border-color;*/
  }
  .fc-page-item .fc-page-link:focus {
    /*        z-index: 3;*/
    /*        outline: $pagination-focus-outline;*/
    /*        box-shadow: $pagination-focus-box-shadow;*/
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  .fc-google-chart-pie-boundingbox {
    border: 0 solid gray;
    position: relative;
    padding-bottom: 50%;
  }
  .fc-google-chart-drawingbox {
    width: 100%;
    height: 80%;
    position: absolute;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  .fileupload_files {
    display: grid;
    grid-template-columns: 15px max-content max-content auto;
    column-gap: 10px;
    align-items: center;
  }
  .fc-fileuploadcontrol {
    color: #000099;
  }
  .fc-fileuploadcontrol input[type=file] {
    display: none;
    /*    
    cursor: pointer;
    opacity: 0;
    height: 100%;
    grid-column: 1;
    grid-row: 1;
    */
  }
  .fc-fileitem {
    color: #333;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  .fc-default-grid {
    display: grid;
    align-items: center;
    column-gap: 0;
    row-gap: 0;
    grid-template-columns: min-content auto;
  }
  .fc-columns-grid-1 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
    grid-template-columns: 1fr;
  }
  .fc-columns-grid-1.fc-maxwidth {
    grid-template-columns: minmax(100px, 600px);
  }
  .fc-columns-grid-2 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "l r";
    gap: 50px;
    align-items: start;
  }
  .fc-columns-grid-2.fc-grid-tight {
    grid-template-columns: max-content max-content;
  }
  .fc-columns-grid-3 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "l m r";
    gap: 50px;
    align-items: start;
  }
  .fc-columns-grid-3.fc-grid-tight {
    grid-template-columns: max-content max-content max-content;
  }
  .fc-columns-grid-n {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    column-gap: 40px;
    row-gap: 15px;
    justify-content: space-evenly;
  }
  .fc-cardsview-title-grid {
    display: grid;
    grid-template-areas: "title sortlabel sort";
    grid-template-columns: 1fr auto auto;
    column-gap: 15px;
    align-items: center;
  }
  .fc-cardsview-title-plus-grid {
    display: grid;
    grid-template-areas: "title sortlabel sort plus";
    grid-template-columns: 1fr auto auto auto;
    column-gap: 15px;
    align-items: center;
  }
  .fc-search-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr min-content;
    align-items: end;
  }
  .fc-wide-narrow-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr max-content;
    align-items: end;
  }
  .fc-fileupload-grid {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    grid-template-columns: 1fr;
  }
  .fc-fileuploadcontrol-grid {
    display: grid;
    grid-template-rows: 16px;
    grid-template-columns: max-content;
  }
  .fc-cards-grid-1 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(1, 1fr);
    align-items: stretch;
    row-gap: 10px;
    grid-template-columns: 1fr;
  }
  .fc-cards-grid-1.fc-maxwidth {
    grid-template-columns: minmax(100px, 600px);
  }
  .fc-cards-grid-2 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    row-gap: 10px;
    column-gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
  .fc-cards-grid-2.fc-grid-icon-right {
    grid-template-areas: "card icon";
    grid-template-columns: auto min-content;
  }
  .fc-cards-grid-2.fc-grid-icon-left {
    grid-template-areas: "icon card";
    grid-template-columns: min-content auto;
  }
  .fc-filters-grid-2 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    column-gap: 90px;
  }
  .fc-filters-grid-2.fc-filters-sub-grid {
    justify-content: space-evenly;
    column-gap: unset;
    grid-template-columns: repeat(2, auto);
  }
  .fc-filters-grid-3 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    column-gap: 60px;
  }
  .fc-filters-grid-4 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    column-gap: 40px;
  }
  .fc-filters-grid-n {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 280px));
    align-items: stretch;
    column-gap: 40px;
    row-gap: 15px;
    justify-content: center;
    grid-auto-rows: 1fr;
  }
  .fc-filters-grid-n.justify-start {
    justify-content: start;
  }
  .fc-types-grid-n {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 150px));
    align-items: stretch;
    column-gap: 40px;
    row-gap: 15px;
    justify-content: center;
    grid-auto-rows: 1fr;
  }
  .fc-types-grid-n.justify-start {
    justify-content: start;
  }
  .fc-wizard-grid-n {
    display: flex;
    /*grid-template-columns: repeat(auto-fill, minmax(35px, min-content));*/
    /*align-items: start !important;*/
    column-gap: 15px;
    /*row-gap: 15px;*/
  }
  .fc-form-grid {
    display: grid;
    row-gap: 5px;
    align-items: baseline;
    grid-template-columns: 1fr;
  }
  .fc-form-grid .fc-form-checkbox {
    display: grid;
    grid-column: 1/3;
    row-gap: 0;
    column-gap: 10px;
    grid-template-areas: "control label";
    grid-template-columns: 16px 1fr;
    align-items: center;
  }
  .fc-form-grid .fc-form-checkbox.fc-form-checkbox-reverse-order {
    grid-template-areas: "label control";
    grid-template-columns: min-content auto;
  }
  .fc-form-grid-h {
    display: grid;
    row-gap: 10px;
    column-gap: 30px;
    align-items: baseline;
    grid-auto-rows: max-content;
    grid-template-areas: "label control";
    grid-template-columns: max-content minmax(min-content, 1fr);
  }
  .fc-form-grid-h.halign-center {
    column-gap: 10px;
    grid-template-columns: auto auto;
  }
  .fc-form-grid-h .fc-form-checkbox {
    display: grid;
    grid-column: 1/3;
    row-gap: 0;
    column-gap: 10px;
    grid-template-areas: "control label";
    grid-template-columns: 16px 1fr;
    align-items: center;
  }
  .fc-form-grid-h .fc-form-checkbox.fc-form-checkbox-reverse-order {
    grid-template-areas: "label control";
    grid-template-columns: min-content auto;
  }
  .fc-form-grid-h-extra {
    display: grid;
    row-gap: 10px;
    column-gap: 30px;
    grid-auto-rows: max-content;
    grid-template-areas: "label control extra";
    align-items: center;
    grid-template-columns: max-content minmax(200px, max-content) 1fr;
  }
  .fc-form-grid-h-extra.halign-center {
    column-gap: 10px;
    grid-template-columns: auto auto auto;
  }
  .fc-form-grid-h-extra .fc-form-checkbox {
    display: grid;
    grid-column: 1/4;
    row-gap: 0;
    column-gap: 10px;
    grid-template-areas: "control label";
    grid-template-columns: 16px 1fr;
    align-items: center;
  }
  .fc-form-grid-h-extra .fc-form-checkbox.fc-form-checkbox-reverse-order {
    grid-template-areas: "label control";
    grid-template-columns: min-content auto;
  }
  .fc-form-cell {
    display: grid;
    align-items: center;
    row-gap: 0;
    column-gap: 10px;
    grid-template-areas: "label" "control";
  }
  .fc-form-cell-checkbox {
    display: grid;
    align-items: center;
    row-gap: 0;
    column-gap: 10px;
    grid-template-areas: "control label";
    grid-template-columns: 16px 1fr;
  }
  .fc-form-cell-checkbox.checkbox-reverse-order {
    grid-template-areas: "label control";
    grid-template-columns: min-content auto;
  }
  .fc-data-grid {
    display: grid;
    align-items: start;
    row-gap: 0;
    column-gap: 15px;
    grid-template-areas: "label data";
    grid-template-columns: 190px auto;
  }
  .fc-data-grid.flexwidth {
    grid-template-columns: auto auto;
  }
  .fc-data-grid.indentation {
    padding-left: 0.75em;
  }
  .fc-data-grid.indentation-2x {
    padding-left: 1.5em;
  }
  .fc-data-control {
    display: grid;
    align-items: start;
    width: 250px;
  }
  .fc-data-control.fc-input-full-width {
    width: 100%;
  }
  .fc-radio-grid {
    display: flex;
    column-gap: 15px;
  }
  .fc-warning-date-grid {
    display: grid;
    column-gap: 5px;
    grid-template-columns: 1fr auto;
    /*align-items: self-end; // Use this when using RFS font*/
    align-items: center;
    white-space: nowrap;
  }
  .fc-warning-date-grid .fc-icon, .fc-warning-date-grid .fc-icon-spinner, .fc-warning-date-grid .fc-icon-copy, .fc-warning-date-grid .fc-icon-trash, .fc-warning-date-grid .fc-icon-edit, .fc-warning-date-grid .fc-icon-select-in-table, .fc-warning-date-grid .fc-icon-search, .fc-warning-date-grid .fc-icon-chevron, .fc-warning-date-grid .fc-icon-select, .fc-warning-date-grid .fc-icon-arrow--right, .fc-warning-date-grid .fc-icon-select-new, .fc-warning-date-grid .fc-icon-filter, .fc-warning-date-grid .fc-icon-info, .fc-warning-date-grid .fc-icon-info-area, .fc-warning-date-grid .fc-icon-info-nooffset, .fc-warning-date-grid .fc-icon-info-area-nooffset, .fc-warning-date-grid .fc-icon-plus, .fc-warning-date-grid .fc-icon-alert, .fc-warning-date-grid .fc-icon-danger, .fc-warning-date-grid .fc-icon-check2, .fc-warning-date-grid .fc-icon-supercircle-area, .fc-warning-date-grid .fc-icon-supercircle-border, .fc-warning-date-grid .fc-icon-caret-down, .fc-warning-date-grid .fc-icon-sitemap, .fc-warning-date-grid .fc-icon-link, .fc-warning-date-grid .fc-icon-check, .fc-warning-date-grid .fc-icon-angle-double-down, .fc-warning-date-grid .fc-icon-validation-ok, .fc-warning-date-grid .fc-icon-validation-nok, .fc-warning-date-grid .fc-icon-play, .fc-warning-date-grid .fc-icon-pause, .fc-warning-date-grid .fc-announcement-icon.fc-problem, .fc-warning-date-grid .fc-announcement-icon.fc-alert, .fc-warning-date-grid .fc-announcement-icon.fc-approved, .fc-warning-date-grid .fc-announcement-icon.fc-info {
    color: #FD6400;
  }
  .fc-servicemessages-grid {
    display: grid;
    column-gap: 15px;
    grid-template-columns: auto 1fr auto;
  }
  .fc-button-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, max-content));
  }
  .fc-button-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, max-content));
  }
  .fc-objects-cvzeg-grid {
    grid-template-columns: minmax(150px, 1.2fr) max-content 1fr min-content min-content;
  }
  .fc-objects-cvzeg-grid .fc-objects-cvzeg-grid-footer-row {
    display: contents;
  }
  .fc-objects-cvzeg-grid .fc-objects-cvzeg-grid-footer-row .fc-objects-cvzeg-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
    margin-right: 14px;
  }
  .fc-objects-cvzeg-readonly-grid {
    grid-template-columns: minmax(200px, 1.2fr) max-content min-content 1fr;
  }
  .fc-objects-cvzeg-readonly-grid .fc-objects-cvzeg-grid-footer-row {
    display: contents;
  }
  .fc-objects-cvzeg-readonly-grid .fc-objects-cvzeg-grid-footer-row .fc-objects-cvzeg-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
  }
  .fc-objects-agri-grid {
    grid-template-columns: minmax(150px, 1.2fr) max-content min-content min-content;
  }
  .fc-objects-agri-grid .fc-objects-agri-grid-footer-row {
    display: contents;
  }
  .fc-objects-agri-grid .fc-objects-agri-grid-footer-row .fc-objects-agri-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
    margin-right: 14px;
  }
  .fc-objects-agri-readonly-grid {
    grid-template-columns: minmax(200px, 1.2fr) 1fr 1fr;
  }
  .fc-objects-agri-readonly-grid .fc-objects-agri-grid-footer-row {
    display: contents;
  }
  .fc-objects-agri-readonly-grid .fc-objects-agri-grid-footer-row .fc-objects-agri-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
  }
  .fc-objects-shipping-grid {
    grid-template-columns: max-content max-content max-content min-content;
  }
  .fc-objects-shipping-grid .fc-objects-shipping-grid-footer-row {
    display: contents;
  }
  .fc-objects-shipping-grid .fc-objects-shipping-grid-footer-row .fc-objects-shipping-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
    margin-right: 14px;
  }
  .fc-objects-shipping-readonly-grid {
    grid-template-columns: minmax(200px, 1.2fr) 1fr 1fr;
  }
  .fc-objects-shipping-readonly-grid .fc-objects-shipping-grid-footer-row {
    display: contents;
  }
  .fc-objects-shipping-readonly-grid .fc-objects-shipping-grid-footer-row .fc-objects-shipping-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
  }
  .fc-regio-grid {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    row-gap: 10px;
    column-gap: 50px;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
  }
  .fc-regio-grid.fc-grid-icon-right {
    grid-template-areas: "card icon";
    grid-template-columns: auto min-content;
  }
  .fc-regio-grid.fc-grid-icon-left {
    grid-template-areas: "icon card";
    grid-template-columns: min-content auto;
  }
  .fc-smoketest-grid {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(1, 1fr);
    width: 30%;
    margin: auto;
  }
  /*.fc-layout-marginleft {
      grid-area: marginLeft;
      background-color: #F3F5F6;
  }

  .fc-layout-marginright {
      grid-area: marginRight;
      background-color: #F3F5F6;
  }

  .fc-layout-shadowleft {
      grid-area: shadowleft;
      background-image: url('../Images/Shadow-Left.png');
      min-height: 100vh;
  }

  .fc-layout-shadowright {
      grid-area: shadowright;
      background-image: url('../Images/Shadow-Right.png');
      min-height: 100vh;
  }

  .fc-layout-logo {
      grid-area: logo;
  }

  .fc-layout-header {
      grid-area: header;
  }

  .fc-layout-date {
      grid-area: date;
      padding-top: 11px;
      background-color: $--rabo-blue;
      color: white;
      font-size: 12pt;
      font-weight: normal;
      text-align: center;
  }

  .fc-layout-name {
      grid-area: name;
      padding-top: 11px;
      background-color: $--rabo-blue;
      color: white;
      font-size: 12pt;
      font-weight: normal;
      text-align: right;
      border-left-style: solid;
      border-left-color: $--rabo-dark-orange;
      border-left-width: 2px;
      padding-right: 10px;
  }

  .fc-layout-menu {
      grid-area: menu;
  }

  .fc-layout-content {
      grid-area: content;
  }

  .fc-layout-divider-blue {
      grid-area: divider1;
      background-color: $--rabo-blue;
  }

  .fc-layout-divider-grey {
      grid-area: divider2;
      background-color: rgba(0,0,0,0.125);
  }

  .fc-layout-grid {
      @include fc-grid;
      align-items: stretch;
      grid-template-areas: 'marginLeft shadowleft logo divider0 header shadowright marginRight' 'marginLeft shadowleft date divider1 name shadowright marginRight' 'marginLeft shadowleft menu divider2 content shadowright marginRight';
      grid-template-columns: 20px 6px 210px 1px auto 6px 20px;
      grid-template-rows: 76px 40px auto;
      background-color: white;
      min-width: 1000px;
  }*/
  /* OLD Table style - still in use --- 
      search for        "fc-table"  
      or search for     @*TODO: Replace this with the table control*@
  */
  .fc-table {
    border-spacing: 0;
    /* Nested table */
  }
  .fc-table th {
    padding: 0.75rem;
    /*border-top: 1px solid #$--table-hr-color;*/
    border-bottom: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border below the header */
    text-align: left;
  }
  .fc-table td {
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
  }
  .fc-table tbody tr:hover {
    background-color: #EEF0F0;
  }
  .fc-table tbody tr.selected {
    background-color: lightblue;
  }
  .fc-table .fc-table tbody tr:hover {
    background-color: rgb(210.90625, 216.09375, 216.09375);
  }
  .fc-table .fc-table tbody tr.selected {
    background-color: rgb(133.9158878505, 197.4112149533, 218.0841121495);
  }
  /* NEW Table style - still in use */
  .fc-searchresultcountnotification {
    font-size: 18pt;
    color: #000099;
    padding-bottom: 5px;
  }
  .fc-table-column, .fc-table-grid .fc-table-footer-row .fc-table-footer-column, .fc-objects-cvzeg-grid .fc-table-footer-row .fc-table-footer-column, .fc-objects-cvzeg-readonly-grid .fc-table-footer-row .fc-table-footer-column, .fc-objects-agri-grid .fc-table-footer-row .fc-table-footer-column, .fc-objects-agri-readonly-grid .fc-table-footer-row .fc-table-footer-column, .fc-objects-shipping-grid .fc-table-footer-row .fc-table-footer-column, .fc-objects-shipping-readonly-grid .fc-table-footer-row .fc-table-footer-column, .fc-table-grid .fc-table-data-row .fc-table-data-column, .fc-objects-cvzeg-grid .fc-table-data-row .fc-table-data-column, .fc-objects-cvzeg-readonly-grid .fc-table-data-row .fc-table-data-column, .fc-objects-agri-grid .fc-table-data-row .fc-table-data-column, .fc-objects-agri-readonly-grid .fc-table-data-row .fc-table-data-column, .fc-objects-shipping-grid .fc-table-data-row .fc-table-data-column, .fc-objects-shipping-readonly-grid .fc-table-data-row .fc-table-data-column, .fc-table-grid .fc-table-header-row .fc-table-header-column, .fc-objects-cvzeg-grid .fc-table-header-row .fc-table-header-column, .fc-objects-cvzeg-readonly-grid .fc-table-header-row .fc-table-header-column, .fc-objects-agri-grid .fc-table-header-row .fc-table-header-column, .fc-objects-agri-readonly-grid .fc-table-header-row .fc-table-header-column, .fc-objects-shipping-grid .fc-table-header-row .fc-table-header-column, .fc-objects-shipping-readonly-grid .fc-table-header-row .fc-table-header-column, .fc-objects-cvzeg-grid .fc-objects-cvzeg-grid-footer-row .fc-objects-cvzeg-grid-footer-column, .fc-objects-cvzeg-readonly-grid .fc-objects-cvzeg-grid-footer-row .fc-objects-cvzeg-grid-footer-column, .fc-objects-agri-grid .fc-objects-agri-grid-footer-row .fc-objects-agri-grid-footer-column, .fc-objects-agri-readonly-grid .fc-objects-agri-grid-footer-row .fc-objects-agri-grid-footer-column, .fc-objects-shipping-grid .fc-objects-shipping-grid-footer-row .fc-objects-shipping-grid-footer-column, .fc-objects-shipping-readonly-grid .fc-objects-shipping-grid-footer-row .fc-objects-shipping-grid-footer-column {
    padding-right: 0.75em;
    box-sizing: border-box;
  }
  .fc-table-column-grid-2 {
    display: grid;
    grid-column-gap: 5px;
    grid-template-columns: auto min-content;
  }
  .fc-table-grid, .fc-objects-cvzeg-grid, .fc-objects-cvzeg-readonly-grid, .fc-objects-agri-grid, .fc-objects-agri-readonly-grid, .fc-objects-shipping-grid, .fc-objects-shipping-readonly-grid {
    display: grid;
    row-gap: 0;
    column-gap: 0px;
    grid-template-columns: repeat(auto-fit, minmax(20px, min-content)); /* This is just a default setting */
    grid-template-rows: auto;
  }
  .fc-table-grid .fc-table-header-row, .fc-objects-cvzeg-grid .fc-table-header-row, .fc-objects-cvzeg-readonly-grid .fc-table-header-row, .fc-objects-agri-grid .fc-table-header-row, .fc-objects-agri-readonly-grid .fc-table-header-row, .fc-objects-shipping-grid .fc-table-header-row, .fc-objects-shipping-readonly-grid .fc-table-header-row {
    display: contents;
    font-weight: 500;
  }
  .fc-table-grid .fc-table-header-row .fc-table-header-column, .fc-objects-cvzeg-grid .fc-table-header-row .fc-table-header-column, .fc-objects-cvzeg-readonly-grid .fc-table-header-row .fc-table-header-column, .fc-objects-agri-grid .fc-table-header-row .fc-table-header-column, .fc-objects-agri-readonly-grid .fc-table-header-row .fc-table-header-column, .fc-objects-shipping-grid .fc-table-header-row .fc-table-header-column, .fc-objects-shipping-readonly-grid .fc-table-header-row .fc-table-header-column {
    display: grid;
    grid-template-columns: minmax(auto, max-content) max-content;
    /* We use a 0 gap so the column won't take any space if there is no content */
    column-gap: 0;
    white-space: inherit;
    padding-right: 0.75em;
    padding-bottom: 0.5em;
    cursor: default;
    /* align-items: end;*/
    height: 100%;
    box-sizing: border-box;
  }
  .fc-table-grid .fc-table-header-row .fc-table-header-column:first-of-type, .fc-objects-cvzeg-grid .fc-table-header-row .fc-table-header-column:first-of-type, .fc-objects-cvzeg-readonly-grid .fc-table-header-row .fc-table-header-column:first-of-type, .fc-objects-agri-grid .fc-table-header-row .fc-table-header-column:first-of-type, .fc-objects-agri-readonly-grid .fc-table-header-row .fc-table-header-column:first-of-type, .fc-objects-shipping-grid .fc-table-header-row .fc-table-header-column:first-of-type, .fc-objects-shipping-readonly-grid .fc-table-header-row .fc-table-header-column:first-of-type {
    padding-left: 0.75em;
  }
  .fc-table-grid .fc-table-header-row .fc-table-header-column.vertical-top, .fc-objects-cvzeg-grid .fc-table-header-row .fc-table-header-column.vertical-top, .fc-objects-cvzeg-readonly-grid .fc-table-header-row .fc-table-header-column.vertical-top, .fc-objects-agri-grid .fc-table-header-row .fc-table-header-column.vertical-top, .fc-objects-agri-readonly-grid .fc-table-header-row .fc-table-header-column.vertical-top, .fc-objects-shipping-grid .fc-table-header-row .fc-table-header-column.vertical-top, .fc-objects-shipping-readonly-grid .fc-table-header-row .fc-table-header-column.vertical-top {
    align-self: normal;
    align-items: normal;
  }
  .fc-table-grid .fc-table-header-row .fc-table-header-column.vertical-center, .fc-objects-cvzeg-grid .fc-table-header-row .fc-table-header-column.vertical-center, .fc-objects-cvzeg-readonly-grid .fc-table-header-row .fc-table-header-column.vertical-center, .fc-objects-agri-grid .fc-table-header-row .fc-table-header-column.vertical-center, .fc-objects-agri-readonly-grid .fc-table-header-row .fc-table-header-column.vertical-center, .fc-objects-shipping-grid .fc-table-header-row .fc-table-header-column.vertical-center, .fc-objects-shipping-readonly-grid .fc-table-header-row .fc-table-header-column.vertical-center {
    align-self: center;
    align-items: center;
  }
  .fc-table-grid .fc-table-header-row .fc-table-header-column .fc-sort-column-icons, .fc-objects-cvzeg-grid .fc-table-header-row .fc-table-header-column .fc-sort-column-icons, .fc-objects-cvzeg-readonly-grid .fc-table-header-row .fc-table-header-column .fc-sort-column-icons, .fc-objects-agri-grid .fc-table-header-row .fc-table-header-column .fc-sort-column-icons, .fc-objects-agri-readonly-grid .fc-table-header-row .fc-table-header-column .fc-sort-column-icons, .fc-objects-shipping-grid .fc-table-header-row .fc-table-header-column .fc-sort-column-icons, .fc-objects-shipping-readonly-grid .fc-table-header-row .fc-table-header-column .fc-sort-column-icons {
    display: inline-block;
    visibility: hidden;
    color: #AAA;
    margin-left: 3px;
  }
  .fc-table-grid .fc-table-header-row .fc-table-header-column .fc-sort-column-icons.selected, .fc-objects-cvzeg-grid .fc-table-header-row .fc-table-header-column .fc-sort-column-icons.selected, .fc-objects-cvzeg-readonly-grid .fc-table-header-row .fc-table-header-column .fc-sort-column-icons.selected, .fc-objects-agri-grid .fc-table-header-row .fc-table-header-column .fc-sort-column-icons.selected, .fc-objects-agri-readonly-grid .fc-table-header-row .fc-table-header-column .fc-sort-column-icons.selected, .fc-objects-shipping-grid .fc-table-header-row .fc-table-header-column .fc-sort-column-icons.selected, .fc-objects-shipping-readonly-grid .fc-table-header-row .fc-table-header-column .fc-sort-column-icons.selected {
    visibility: visible;
  }
  .fc-table-grid .fc-table-header-row .fc-table-header-column .fc-sort-column-icons i.selected, .fc-objects-cvzeg-grid .fc-table-header-row .fc-table-header-column .fc-sort-column-icons i.selected, .fc-objects-cvzeg-readonly-grid .fc-table-header-row .fc-table-header-column .fc-sort-column-icons i.selected, .fc-objects-agri-grid .fc-table-header-row .fc-table-header-column .fc-sort-column-icons i.selected, .fc-objects-agri-readonly-grid .fc-table-header-row .fc-table-header-column .fc-sort-column-icons i.selected, .fc-objects-shipping-grid .fc-table-header-row .fc-table-header-column .fc-sort-column-icons i.selected, .fc-objects-shipping-readonly-grid .fc-table-header-row .fc-table-header-column .fc-sort-column-icons i.selected {
    color: #FD6400;
  }
  .fc-table-grid .fc-table-header-row .fc-table-header-column:hover .fc-sort-column-icons.fc-sortable, .fc-objects-cvzeg-grid .fc-table-header-row .fc-table-header-column:hover .fc-sort-column-icons.fc-sortable, .fc-objects-cvzeg-readonly-grid .fc-table-header-row .fc-table-header-column:hover .fc-sort-column-icons.fc-sortable, .fc-objects-agri-grid .fc-table-header-row .fc-table-header-column:hover .fc-sort-column-icons.fc-sortable, .fc-objects-agri-readonly-grid .fc-table-header-row .fc-table-header-column:hover .fc-sort-column-icons.fc-sortable, .fc-objects-shipping-grid .fc-table-header-row .fc-table-header-column:hover .fc-sort-column-icons.fc-sortable, .fc-objects-shipping-readonly-grid .fc-table-header-row .fc-table-header-column:hover .fc-sort-column-icons.fc-sortable {
    visibility: visible;
    cursor: pointer;
  }
  .fc-table-grid .fc-table-header-row .fc-table-header-column:hover .fc-sort-column-icons.fc-sortable :hover, .fc-objects-cvzeg-grid .fc-table-header-row .fc-table-header-column:hover .fc-sort-column-icons.fc-sortable :hover, .fc-objects-cvzeg-readonly-grid .fc-table-header-row .fc-table-header-column:hover .fc-sort-column-icons.fc-sortable :hover, .fc-objects-agri-grid .fc-table-header-row .fc-table-header-column:hover .fc-sort-column-icons.fc-sortable :hover, .fc-objects-agri-readonly-grid .fc-table-header-row .fc-table-header-column:hover .fc-sort-column-icons.fc-sortable :hover, .fc-objects-shipping-grid .fc-table-header-row .fc-table-header-column:hover .fc-sort-column-icons.fc-sortable :hover, .fc-objects-shipping-readonly-grid .fc-table-header-row .fc-table-header-column:hover .fc-sort-column-icons.fc-sortable :hover {
    color: #FD6400;
  }
  .fc-table-grid .fc-table-divider-row, .fc-objects-cvzeg-grid .fc-table-divider-row, .fc-objects-cvzeg-readonly-grid .fc-table-divider-row, .fc-objects-agri-grid .fc-table-divider-row, .fc-objects-agri-readonly-grid .fc-table-divider-row, .fc-objects-shipping-grid .fc-table-divider-row, .fc-objects-shipping-readonly-grid .fc-table-divider-row {
    display: contents;
  }
  .fc-table-grid .fc-table-divider-row .fc-table-divider-column, .fc-objects-cvzeg-grid .fc-table-divider-row .fc-table-divider-column, .fc-objects-cvzeg-readonly-grid .fc-table-divider-row .fc-table-divider-column, .fc-objects-agri-grid .fc-table-divider-row .fc-table-divider-column, .fc-objects-agri-readonly-grid .fc-table-divider-row .fc-table-divider-column, .fc-objects-shipping-grid .fc-table-divider-row .fc-table-divider-column, .fc-objects-shipping-readonly-grid .fc-table-divider-row .fc-table-divider-column {
    border-top: 2px solid #dee2e6; /* Together with td.border-top, this causes a double border below the header */
  }
  .fc-table-grid .fc-table-data-row, .fc-objects-cvzeg-grid .fc-table-data-row, .fc-objects-cvzeg-readonly-grid .fc-table-data-row, .fc-objects-agri-grid .fc-table-data-row, .fc-objects-agri-readonly-grid .fc-table-data-row, .fc-objects-shipping-grid .fc-table-data-row, .fc-objects-shipping-readonly-grid .fc-table-data-row {
    display: contents;
  }
  .fc-table-grid .fc-table-data-row .fc-table-data-column, .fc-objects-cvzeg-grid .fc-table-data-row .fc-table-data-column, .fc-objects-cvzeg-readonly-grid .fc-table-data-row .fc-table-data-column, .fc-objects-agri-grid .fc-table-data-row .fc-table-data-column, .fc-objects-agri-readonly-grid .fc-table-data-row .fc-table-data-column, .fc-objects-shipping-grid .fc-table-data-row .fc-table-data-column, .fc-objects-shipping-readonly-grid .fc-table-data-row .fc-table-data-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border below the header */
    padding-top: 3px;
    padding-bottom: 2px;
    height: 100%;
    /* 
       text-overflow: ellipsis;
       overflow: hidden;
    */
  }
  .fc-table-grid .fc-table-data-row .fc-table-data-column:first-of-type, .fc-objects-cvzeg-grid .fc-table-data-row .fc-table-data-column:first-of-type, .fc-objects-cvzeg-readonly-grid .fc-table-data-row .fc-table-data-column:first-of-type, .fc-objects-agri-grid .fc-table-data-row .fc-table-data-column:first-of-type, .fc-objects-agri-readonly-grid .fc-table-data-row .fc-table-data-column:first-of-type, .fc-objects-shipping-grid .fc-table-data-row .fc-table-data-column:first-of-type, .fc-objects-shipping-readonly-grid .fc-table-data-row .fc-table-data-column:first-of-type {
    padding-left: 0.75em;
  }
  .fc-table-grid .fc-table-data-row .fc-table-data-column.dialogbox, .fc-objects-cvzeg-grid .fc-table-data-row .fc-table-data-column.dialogbox, .fc-objects-cvzeg-readonly-grid .fc-table-data-row .fc-table-data-column.dialogbox, .fc-objects-agri-grid .fc-table-data-row .fc-table-data-column.dialogbox, .fc-objects-agri-readonly-grid .fc-table-data-row .fc-table-data-column.dialogbox, .fc-objects-shipping-grid .fc-table-data-row .fc-table-data-column.dialogbox, .fc-objects-shipping-readonly-grid .fc-table-data-row .fc-table-data-column.dialogbox {
    padding-top: 0.2em;
    padding-bottom: 0.2em;
  }
  .fc-table-grid .fc-table-data-row.selected:not(.no-selectionhighlight) > .fc-table-data-column, .fc-objects-cvzeg-grid .fc-table-data-row.selected:not(.no-selectionhighlight) > .fc-table-data-column, .fc-objects-cvzeg-readonly-grid .fc-table-data-row.selected:not(.no-selectionhighlight) > .fc-table-data-column, .fc-objects-agri-grid .fc-table-data-row.selected:not(.no-selectionhighlight) > .fc-table-data-column, .fc-objects-agri-readonly-grid .fc-table-data-row.selected:not(.no-selectionhighlight) > .fc-table-data-column, .fc-objects-shipping-grid .fc-table-data-row.selected:not(.no-selectionhighlight) > .fc-table-data-column, .fc-objects-shipping-readonly-grid .fc-table-data-row.selected:not(.no-selectionhighlight) > .fc-table-data-column {
    background-color: lightblue;
  }
  .fc-table-grid .fc-table-data-row:hover > .fc-table-data-column, .fc-objects-cvzeg-grid .fc-table-data-row:hover > .fc-table-data-column, .fc-objects-cvzeg-readonly-grid .fc-table-data-row:hover > .fc-table-data-column, .fc-objects-agri-grid .fc-table-data-row:hover > .fc-table-data-column, .fc-objects-agri-readonly-grid .fc-table-data-row:hover > .fc-table-data-column, .fc-objects-shipping-grid .fc-table-data-row:hover > .fc-table-data-column, .fc-objects-shipping-readonly-grid .fc-table-data-row:hover > .fc-table-data-column {
    background-color: #EEF0F0;
  }
  .fc-table-grid .fc-table-data-row.selected:hover:not(.no-selectionhighlight) > .fc-table-data-column, .fc-objects-cvzeg-grid .fc-table-data-row.selected:hover:not(.no-selectionhighlight) > .fc-table-data-column, .fc-objects-cvzeg-readonly-grid .fc-table-data-row.selected:hover:not(.no-selectionhighlight) > .fc-table-data-column, .fc-objects-agri-grid .fc-table-data-row.selected:hover:not(.no-selectionhighlight) > .fc-table-data-column, .fc-objects-agri-readonly-grid .fc-table-data-row.selected:hover:not(.no-selectionhighlight) > .fc-table-data-column, .fc-objects-shipping-grid .fc-table-data-row.selected:hover:not(.no-selectionhighlight) > .fc-table-data-column, .fc-objects-shipping-readonly-grid .fc-table-data-row.selected:hover:not(.no-selectionhighlight) > .fc-table-data-column {
    background-color: lightskyblue;
  }
  .fc-table-grid .fc-table-data-row .fc-table-data-column:hover + .fc-table-data-tooltip, .fc-objects-cvzeg-grid .fc-table-data-row .fc-table-data-column:hover + .fc-table-data-tooltip, .fc-objects-cvzeg-readonly-grid .fc-table-data-row .fc-table-data-column:hover + .fc-table-data-tooltip, .fc-objects-agri-grid .fc-table-data-row .fc-table-data-column:hover + .fc-table-data-tooltip, .fc-objects-agri-readonly-grid .fc-table-data-row .fc-table-data-column:hover + .fc-table-data-tooltip, .fc-objects-shipping-grid .fc-table-data-row .fc-table-data-column:hover + .fc-table-data-tooltip, .fc-objects-shipping-readonly-grid .fc-table-data-row .fc-table-data-column:hover + .fc-table-data-tooltip, .fc-table-grid .fc-table-data-row .fc-table-data-tooltip:hover, .fc-objects-cvzeg-grid .fc-table-data-row .fc-table-data-tooltip:hover, .fc-objects-cvzeg-readonly-grid .fc-table-data-row .fc-table-data-tooltip:hover, .fc-objects-agri-grid .fc-table-data-row .fc-table-data-tooltip:hover, .fc-objects-agri-readonly-grid .fc-table-data-row .fc-table-data-tooltip:hover, .fc-objects-shipping-grid .fc-table-data-row .fc-table-data-tooltip:hover, .fc-objects-shipping-readonly-grid .fc-table-data-row .fc-table-data-tooltip:hover {
    display: block;
    opacity: 1;
  }
  .fc-table-grid .fc-table-data-row:not(.selected) .fc-table-column-visible-if-row-selected, .fc-objects-cvzeg-grid .fc-table-data-row:not(.selected) .fc-table-column-visible-if-row-selected, .fc-objects-cvzeg-readonly-grid .fc-table-data-row:not(.selected) .fc-table-column-visible-if-row-selected, .fc-objects-agri-grid .fc-table-data-row:not(.selected) .fc-table-column-visible-if-row-selected, .fc-objects-agri-readonly-grid .fc-table-data-row:not(.selected) .fc-table-column-visible-if-row-selected, .fc-objects-shipping-grid .fc-table-data-row:not(.selected) .fc-table-column-visible-if-row-selected, .fc-objects-shipping-readonly-grid .fc-table-data-row:not(.selected) .fc-table-column-visible-if-row-selected {
    visibility: hidden;
  }
  .fc-table-grid .fc-table-footer-row, .fc-objects-cvzeg-grid .fc-table-footer-row, .fc-objects-cvzeg-readonly-grid .fc-table-footer-row, .fc-objects-agri-grid .fc-table-footer-row, .fc-objects-agri-readonly-grid .fc-table-footer-row, .fc-objects-shipping-grid .fc-table-footer-row, .fc-objects-shipping-readonly-grid .fc-table-footer-row {
    display: contents;
  }
  .fc-table-grid .fc-table-footer-row .fc-table-footer-column, .fc-objects-cvzeg-grid .fc-table-footer-row .fc-table-footer-column, .fc-objects-cvzeg-readonly-grid .fc-table-footer-row .fc-table-footer-column, .fc-objects-agri-grid .fc-table-footer-row .fc-table-footer-column, .fc-objects-agri-readonly-grid .fc-table-footer-row .fc-table-footer-column, .fc-objects-shipping-grid .fc-table-footer-row .fc-table-footer-column, .fc-objects-shipping-readonly-grid .fc-table-footer-row .fc-table-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  .fc-table-grid-scroller {
    max-width: calc(calc(100vw - 150px) - 50px);
  }
  .fc-table-grid-scroller .fc-table-column-freeze-left {
    position: sticky;
    left: 0;
    background: white;
  }
  .fc-table-grid-scroller .fc-table-column-freeze-right {
    position: sticky;
    right: -1px; /* This solves a strange rendering bug, where one pixel shines through */
    background: white;
  }
  .fc-table-grid-scroller .fc-table-grid, .fc-table-grid-scroller .fc-objects-cvzeg-grid, .fc-table-grid-scroller .fc-objects-cvzeg-readonly-grid, .fc-table-grid-scroller .fc-objects-agri-grid, .fc-table-grid-scroller .fc-objects-agri-readonly-grid, .fc-table-grid-scroller .fc-objects-shipping-grid, .fc-table-grid-scroller .fc-objects-shipping-readonly-grid {
    background: white; /* This solves strange vertical lines rendering when scrolling */
    overflow: auto; /* Important for smooth scroller (to prevent a fixed column from being pushed when scrollen more the screen-width) */
  }
  .fc-table-data-tooltip {
    display: none;
    opacity: 0;
    overflow: hidden;
    grid-column: 1/-1;
    height: 100%;
    text-align: center;
    background: beige;
    width: 100%; /* Sesible default setting */
    max-width: 400px; /* Sesible default setting */
    padding-left: 0.75em;
    padding-right: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    box-sizing: border-box;
    position: sticky;
    left: 50%;
    transform: translate(-50%, 0);
    transition: display 0s, opacity 1s linear 1s;
  }
  ._accleft:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0.5rem;
    height: 1rem;
    background: white;
    border-radius: 0 0 1.5rem 0;
    border-right: 2px solid rgb(222.3333333333, 222.3333333333, 140.6666666667);
    border-bottom: 2px solid rgb(222.3333333333, 222.3333333333, 140.6666666667);
  }
  ._accleft:after {
    content: "";
    position: absolute;
    bottom: 0rem;
    left: 0;
    width: 0.5rem;
    height: calc(100% - 1rem - 2px);
    background: white;
    border-radius: 0 1.5rem 0 0;
    border-right: 2px solid rgb(222.3333333333, 222.3333333333, 140.6666666667);
    border-top: 2px solid rgb(222.3333333333, 222.3333333333, 140.6666666667);
  }
  ._accright:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0.5rem;
    height: 1rem;
    background: white;
    border-radius: 0 0 0 1.5rem;
    border-left: 2px solid rgb(222.3333333333, 222.3333333333, 140.6666666667);
    border-bottom: 2px solid rgb(222.3333333333, 222.3333333333, 140.6666666667);
  }
  ._accright:after {
    content: "";
    position: absolute;
    bottom: 0rem;
    right: 0;
    width: 0.5rem;
    height: calc(100% - 1rem - 2px);
    border-radius: 1.5rem 0 0 0;
    background: white;
    border-left: 2px solid rgb(222.3333333333, 222.3333333333, 140.6666666667);
    border-top: 2px solid rgb(222.3333333333, 222.3333333333, 140.6666666667);
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  :root {
    --fc-menu-sub-offset-hor: 80px;
    --fc-menu-sub-offset-vert: 30px;
  }
  .fc-menu {
    position: relative;
  }
  .fc-menu a {
    text-decoration: none;
    color: white;
  }
  .fc-menu-top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 10px;
    white-space: nowrap;
    z-index: 201;
  }
  .fc-menu-sub {
    display: none;
    position: absolute;
    width: calc(100% + 2 * var(--fc-menu-sub-offset-hor));
    z-index: 200;
    /*top: var(--fc-menu-sub-offset-vert);*/
    background: white;
    box-shadow: 0px 5px 10px -5px grey;
    margin-left: -80px;
    margin-right: -80px;
    margin-top: 10px !important;
  }
  .fc-menu-sub-header {
    display: grid;
    grid-template-areas: "title closebutton";
    grid-template-columns: 1fr auto;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 0;
  }
  .fc-menu-item, .fc-menu-group-expander {
    color: white;
    position: relative;
    cursor: pointer;
  }
  a:hover.fc-menu-item, a:hover.fc-menu-group-expander {
    color: #FD6400;
    text-decoration: none;
  }
  .fc-menu-item.active, .fc-menu-item:active,
  .fc-menu-group-expander.active, .fc-menu-group-expander:active {
    color: #FD6400;
    border-color: #FD6400;
  }
  .fc-menu-triangle {
    --triangle-size: 10px;
    display: none;
    position: absolute;
    left: calc(50% - var(--triangle-size));
    top: calc(100% + 10px);
    z-index: 201;
    border-left: var(--triangle-size) solid transparent;
    border-right: var(--triangle-size) solid transparent;
    border-top: var(--triangle-size) solid #000099;
    border-bottom: var(--triangle-size) solid transparent;
  }
  /*.fc-menu-group-expander.active .fc-menu-triangle {
      display: inline-block;
  }*/
  .fc-menu-group {
    display: none;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    justify-items: left;
    padding-bottom: 15px;
    padding-left: 80px;
    padding-right: 80px;
    row-gap: 15px;
  }
  .fc-menu-group a {
    text-decoration: none;
    color: #000099;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  .fc-warning-container {
    border: 2px #FD6400 solid;
    padding: 15px;
  }
  .fc-on {
    color: limegreen;
  }
  .fc-off {
    color: darkorange;
  }
  .fc-small {
    font-size: 80%;
    font-weight: 400;
  }
  .fc-border, .fc-card-side-card .fc-card-border, .fc-card-main .fc-card-border {
    border: 1px solid #dee2e6 !important;
  }
  .fc-rounded, .fc-card-side-card .fc-card-border, .fc-card-main .fc-card-border {
    border-radius: 0.25rem !important;
  }
  .fc-shadow, .fc-card-main .fc-actionable, .fc-filter, .fc-type {
    box-shadow: 2px 4px 8px 0 rgba(0, 0, 0, 0.15);
  }
  .fc-active {
    cursor: pointer !important;
  }
  .fc-inactive {
    cursor: default !important;
    color: lightgray !important;
  }
  .fc-hover:hover .fc-hover-child {
    color: #FD6400;
  }
  .fc-dataheader {
    color: #333;
    font-weight: bold;
  }
  .fc-data-label, .fc-data-label.fc-required, .fc-data-label-required, .fc-required.fc-data-label-required, .fc-table-grid .fc-table-header-row, .fc-objects-cvzeg-grid .fc-table-header-row, .fc-objects-cvzeg-readonly-grid .fc-table-header-row, .fc-objects-agri-grid .fc-table-header-row, .fc-objects-agri-readonly-grid .fc-table-header-row, .fc-objects-shipping-grid .fc-table-header-row, .fc-objects-shipping-readonly-grid .fc-table-header-row, .fc-table-grid .fc-table-header-row .fc-table-header-required, .fc-objects-cvzeg-grid .fc-table-header-row .fc-table-header-required, .fc-objects-cvzeg-readonly-grid .fc-table-header-row .fc-table-header-required, .fc-objects-agri-grid .fc-table-header-row .fc-table-header-required, .fc-objects-agri-readonly-grid .fc-table-header-row .fc-table-header-required, .fc-objects-shipping-grid .fc-table-header-row .fc-table-header-required, .fc-objects-shipping-readonly-grid .fc-table-header-row .fc-table-header-required {
    color: #666;
    padding-bottom: 2px;
  }
  .fc-data-label.fc-required::before, .fc-required.fc-data-label-required::before, .fc-table-grid .fc-required.fc-table-header-row::before, .fc-objects-cvzeg-grid .fc-required.fc-table-header-row::before, .fc-objects-cvzeg-readonly-grid .fc-required.fc-table-header-row::before, .fc-objects-agri-grid .fc-required.fc-table-header-row::before, .fc-objects-agri-readonly-grid .fc-required.fc-table-header-row::before, .fc-objects-shipping-grid .fc-required.fc-table-header-row::before, .fc-objects-shipping-readonly-grid .fc-required.fc-table-header-row::before, .fc-table-grid .fc-table-header-row .fc-required.fc-table-header-required::before, .fc-objects-cvzeg-grid .fc-table-header-row .fc-required.fc-table-header-required::before, .fc-objects-cvzeg-readonly-grid .fc-table-header-row .fc-required.fc-table-header-required::before, .fc-objects-agri-grid .fc-table-header-row .fc-required.fc-table-header-required::before, .fc-objects-agri-readonly-grid .fc-table-header-row .fc-required.fc-table-header-required::before, .fc-objects-shipping-grid .fc-table-header-row .fc-required.fc-table-header-required::before, .fc-objects-shipping-readonly-grid .fc-table-header-row .fc-required.fc-table-header-required::before {
    color: #FD6400;
    content: "* ";
  }
  .fc-data-label-required::before, .fc-table-grid .fc-table-header-row .fc-table-header-required::before, .fc-objects-cvzeg-grid .fc-table-header-row .fc-table-header-required::before, .fc-objects-cvzeg-readonly-grid .fc-table-header-row .fc-table-header-required::before, .fc-objects-agri-grid .fc-table-header-row .fc-table-header-required::before, .fc-objects-agri-readonly-grid .fc-table-header-row .fc-table-header-required::before, .fc-objects-shipping-grid .fc-table-header-row .fc-table-header-required::before, .fc-objects-shipping-readonly-grid .fc-table-header-row .fc-table-header-required::before {
    color: #FD6400;
    content: "* ";
  }
  .fc-data {
    color: #333;
  }
  .fc-data.indentation {
    padding-left: 0.75em;
  }
  .fc-header-title {
    font-size: 30pt;
    color: #009;
  }
  .fc-title {
    font-size: 30pt;
    color: #009;
    line-height: 1em;
  }
  .fc-subtitle {
    color: #666;
    font-weight: bold;
    line-height: 1em;
    padding-bottom: 2px;
  }
  .fc-subtitle.indentation {
    padding-left: 0.75em;
  }
  .fc-sectiontitle {
    font-size: 18pt;
    color: #000099;
    font-weight: bold;
    padding-bottom: 5px;
  }
  .fc-hidden {
    visibility: hidden !important;
  }
  .fc-required {
    color: #FD6400;
  }
  .fc-text-hint {
    font-style: italic;
    font-weight: normal;
  }
  .fc-text-danger {
    color: #FD6400;
  }
  .fc-text-regressiontester {
    font-style: italic;
    font-weight: normal;
    color: red;
  }
  .fc-text-regressioncreator {
    font-style: italic;
    font-weight: normal;
    color: lawngreen;
  }
  .fc-ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
  .fc-sticky-0 {
    position: sticky;
    top: 0;
  }
  .fc-sticky-10 {
    position: sticky;
    top: 10px;
  }
  a.fc-nostyle:link {
    text-decoration: inherit;
    color: inherit;
    cursor: auto;
  }
  a.fc-nostyle:visited {
    text-decoration: inherit;
    color: inherit;
    cursor: auto;
  }
  .fc-cursor-pointer {
    cursor: pointer;
  }
  .fc-viewbag-message {
    font-family: inherit;
    /* Wraps long lines */
    white-space: pre-wrap;
    /* Breaks long words if needed */
    word-wrap: break-word;
    /* Ensure compatibility */
    overflow-wrap: break-word;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  .fc-default-grid {
    display: grid;
    align-items: center;
    column-gap: 0;
    row-gap: 0;
    grid-template-columns: min-content auto;
  }
  .fc-columns-grid-1 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
    grid-template-columns: 1fr;
  }
  .fc-columns-grid-1.fc-maxwidth {
    grid-template-columns: minmax(100px, 600px);
  }
  .fc-columns-grid-2 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "l r";
    gap: 50px;
    align-items: start;
  }
  .fc-columns-grid-2.fc-grid-tight {
    grid-template-columns: max-content max-content;
  }
  .fc-columns-grid-3 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "l m r";
    gap: 50px;
    align-items: start;
  }
  .fc-columns-grid-3.fc-grid-tight {
    grid-template-columns: max-content max-content max-content;
  }
  .fc-columns-grid-n {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    column-gap: 40px;
    row-gap: 15px;
    justify-content: space-evenly;
  }
  .fc-cardsview-title-grid {
    display: grid;
    grid-template-areas: "title sortlabel sort";
    grid-template-columns: 1fr auto auto;
    column-gap: 15px;
    align-items: center;
  }
  .fc-cardsview-title-plus-grid {
    display: grid;
    grid-template-areas: "title sortlabel sort plus";
    grid-template-columns: 1fr auto auto auto;
    column-gap: 15px;
    align-items: center;
  }
  .fc-search-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr min-content;
    align-items: end;
  }
  .fc-wide-narrow-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr max-content;
    align-items: end;
  }
  .fc-fileupload-grid {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    grid-template-columns: 1fr;
  }
  .fc-fileuploadcontrol-grid {
    display: grid;
    grid-template-rows: 16px;
    grid-template-columns: max-content;
  }
  .fc-cards-grid-1 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(1, 1fr);
    align-items: stretch;
    row-gap: 10px;
    grid-template-columns: 1fr;
  }
  .fc-cards-grid-1.fc-maxwidth {
    grid-template-columns: minmax(100px, 600px);
  }
  .fc-cards-grid-2 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    row-gap: 10px;
    column-gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
  .fc-cards-grid-2.fc-grid-icon-right {
    grid-template-areas: "card icon";
    grid-template-columns: auto min-content;
  }
  .fc-cards-grid-2.fc-grid-icon-left {
    grid-template-areas: "icon card";
    grid-template-columns: min-content auto;
  }
  .fc-filters-grid-2 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    column-gap: 90px;
  }
  .fc-filters-grid-2.fc-filters-sub-grid {
    justify-content: space-evenly;
    column-gap: unset;
    grid-template-columns: repeat(2, auto);
  }
  .fc-filters-grid-3 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    column-gap: 60px;
  }
  .fc-filters-grid-4 {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    column-gap: 40px;
  }
  .fc-filters-grid-n {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 280px));
    align-items: stretch;
    column-gap: 40px;
    row-gap: 15px;
    justify-content: center;
    grid-auto-rows: 1fr;
  }
  .fc-filters-grid-n.justify-start {
    justify-content: start;
  }
  .fc-types-grid-n {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 150px));
    align-items: stretch;
    column-gap: 40px;
    row-gap: 15px;
    justify-content: center;
    grid-auto-rows: 1fr;
  }
  .fc-types-grid-n.justify-start {
    justify-content: start;
  }
  .fc-wizard-grid-n {
    display: flex;
    /*grid-template-columns: repeat(auto-fill, minmax(35px, min-content));*/
    /*align-items: start !important;*/
    column-gap: 15px;
    /*row-gap: 15px;*/
  }
  .fc-form-grid {
    display: grid;
    row-gap: 5px;
    align-items: baseline;
    grid-template-columns: 1fr;
  }
  .fc-form-grid .fc-form-checkbox {
    display: grid;
    grid-column: 1/3;
    row-gap: 0;
    column-gap: 10px;
    grid-template-areas: "control label";
    grid-template-columns: 16px 1fr;
    align-items: center;
  }
  .fc-form-grid .fc-form-checkbox.fc-form-checkbox-reverse-order {
    grid-template-areas: "label control";
    grid-template-columns: min-content auto;
  }
  .fc-form-grid-h {
    display: grid;
    row-gap: 10px;
    column-gap: 30px;
    align-items: baseline;
    grid-auto-rows: max-content;
    grid-template-areas: "label control";
    grid-template-columns: max-content minmax(min-content, 1fr);
  }
  .fc-form-grid-h.halign-center {
    column-gap: 10px;
    grid-template-columns: auto auto;
  }
  .fc-form-grid-h .fc-form-checkbox {
    display: grid;
    grid-column: 1/3;
    row-gap: 0;
    column-gap: 10px;
    grid-template-areas: "control label";
    grid-template-columns: 16px 1fr;
    align-items: center;
  }
  .fc-form-grid-h .fc-form-checkbox.fc-form-checkbox-reverse-order {
    grid-template-areas: "label control";
    grid-template-columns: min-content auto;
  }
  .fc-form-grid-h-extra {
    display: grid;
    row-gap: 10px;
    column-gap: 30px;
    grid-auto-rows: max-content;
    grid-template-areas: "label control extra";
    align-items: center;
    grid-template-columns: max-content minmax(200px, max-content) 1fr;
  }
  .fc-form-grid-h-extra.halign-center {
    column-gap: 10px;
    grid-template-columns: auto auto auto;
  }
  .fc-form-grid-h-extra .fc-form-checkbox {
    display: grid;
    grid-column: 1/4;
    row-gap: 0;
    column-gap: 10px;
    grid-template-areas: "control label";
    grid-template-columns: 16px 1fr;
    align-items: center;
  }
  .fc-form-grid-h-extra .fc-form-checkbox.fc-form-checkbox-reverse-order {
    grid-template-areas: "label control";
    grid-template-columns: min-content auto;
  }
  .fc-form-cell {
    display: grid;
    align-items: center;
    row-gap: 0;
    column-gap: 10px;
    grid-template-areas: "label" "control";
  }
  .fc-form-cell-checkbox {
    display: grid;
    align-items: center;
    row-gap: 0;
    column-gap: 10px;
    grid-template-areas: "control label";
    grid-template-columns: 16px 1fr;
  }
  .fc-form-cell-checkbox.checkbox-reverse-order {
    grid-template-areas: "label control";
    grid-template-columns: min-content auto;
  }
  .fc-data-grid {
    display: grid;
    align-items: start;
    row-gap: 0;
    column-gap: 15px;
    grid-template-areas: "label data";
    grid-template-columns: 190px auto;
  }
  .fc-data-grid.flexwidth {
    grid-template-columns: auto auto;
  }
  .fc-data-grid.indentation {
    padding-left: 0.75em;
  }
  .fc-data-grid.indentation-2x {
    padding-left: 1.5em;
  }
  .fc-data-control {
    display: grid;
    align-items: start;
    width: 250px;
  }
  .fc-data-control.fc-input-full-width {
    width: 100%;
  }
  .fc-radio-grid {
    display: flex;
    column-gap: 15px;
  }
  .fc-warning-date-grid {
    display: grid;
    column-gap: 5px;
    grid-template-columns: 1fr auto;
    /*align-items: self-end; // Use this when using RFS font*/
    align-items: center;
    white-space: nowrap;
  }
  .fc-warning-date-grid .fc-icon, .fc-warning-date-grid .fc-icon-spinner, .fc-warning-date-grid .fc-icon-copy, .fc-warning-date-grid .fc-icon-trash, .fc-warning-date-grid .fc-icon-edit, .fc-warning-date-grid .fc-icon-select-in-table, .fc-warning-date-grid .fc-icon-search, .fc-warning-date-grid .fc-icon-chevron, .fc-warning-date-grid .fc-icon-select, .fc-warning-date-grid .fc-icon-arrow--right, .fc-warning-date-grid .fc-icon-select-new, .fc-warning-date-grid .fc-icon-filter, .fc-warning-date-grid .fc-icon-info, .fc-warning-date-grid .fc-icon-info-area, .fc-warning-date-grid .fc-icon-info-nooffset, .fc-warning-date-grid .fc-icon-info-area-nooffset, .fc-warning-date-grid .fc-icon-plus, .fc-warning-date-grid .fc-icon-alert, .fc-warning-date-grid .fc-icon-danger, .fc-warning-date-grid .fc-icon-check2, .fc-warning-date-grid .fc-icon-supercircle-area, .fc-warning-date-grid .fc-icon-supercircle-border, .fc-warning-date-grid .fc-icon-caret-down, .fc-warning-date-grid .fc-icon-sitemap, .fc-warning-date-grid .fc-icon-link, .fc-warning-date-grid .fc-icon-check, .fc-warning-date-grid .fc-icon-angle-double-down, .fc-warning-date-grid .fc-icon-validation-ok, .fc-warning-date-grid .fc-icon-validation-nok, .fc-warning-date-grid .fc-icon-play, .fc-warning-date-grid .fc-icon-pause, .fc-warning-date-grid .fc-announcement-icon.fc-problem, .fc-warning-date-grid .fc-announcement-icon.fc-alert, .fc-warning-date-grid .fc-announcement-icon.fc-approved, .fc-warning-date-grid .fc-announcement-icon.fc-info {
    color: #FD6400;
  }
  .fc-servicemessages-grid {
    display: grid;
    column-gap: 15px;
    grid-template-columns: auto 1fr auto;
  }
  .fc-button-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, max-content));
  }
  .fc-button-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, max-content));
  }
  .fc-objects-cvzeg-grid {
    grid-template-columns: minmax(150px, 1.2fr) max-content 1fr min-content min-content;
  }
  .fc-objects-cvzeg-grid .fc-objects-cvzeg-grid-footer-row {
    display: contents;
  }
  .fc-objects-cvzeg-grid .fc-objects-cvzeg-grid-footer-row .fc-objects-cvzeg-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
    margin-right: 14px;
  }
  .fc-objects-cvzeg-readonly-grid {
    grid-template-columns: minmax(200px, 1.2fr) max-content min-content 1fr;
  }
  .fc-objects-cvzeg-readonly-grid .fc-objects-cvzeg-grid-footer-row {
    display: contents;
  }
  .fc-objects-cvzeg-readonly-grid .fc-objects-cvzeg-grid-footer-row .fc-objects-cvzeg-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
  }
  .fc-objects-agri-grid {
    grid-template-columns: minmax(150px, 1.2fr) max-content min-content min-content;
  }
  .fc-objects-agri-grid .fc-objects-agri-grid-footer-row {
    display: contents;
  }
  .fc-objects-agri-grid .fc-objects-agri-grid-footer-row .fc-objects-agri-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
    margin-right: 14px;
  }
  .fc-objects-agri-readonly-grid {
    grid-template-columns: minmax(200px, 1.2fr) 1fr 1fr;
  }
  .fc-objects-agri-readonly-grid .fc-objects-agri-grid-footer-row {
    display: contents;
  }
  .fc-objects-agri-readonly-grid .fc-objects-agri-grid-footer-row .fc-objects-agri-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
  }
  .fc-objects-shipping-grid {
    grid-template-columns: max-content max-content max-content min-content;
  }
  .fc-objects-shipping-grid .fc-objects-shipping-grid-footer-row {
    display: contents;
  }
  .fc-objects-shipping-grid .fc-objects-shipping-grid-footer-row .fc-objects-shipping-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
    margin-right: 14px;
  }
  .fc-objects-shipping-readonly-grid {
    grid-template-columns: minmax(200px, 1.2fr) 1fr 1fr;
  }
  .fc-objects-shipping-readonly-grid .fc-objects-shipping-grid-footer-row {
    display: contents;
  }
  .fc-objects-shipping-readonly-grid .fc-objects-shipping-grid-footer-row .fc-objects-shipping-grid-footer-column {
    border-top: 1px solid #dee2e6; /* Together with td.border-top, this causes a double border above the footer */
    padding-left: 0.75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    grid-column: 1/-1;
    text-align: right;
  }
  .fc-regio-grid {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    row-gap: 10px;
    column-gap: 50px;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
  }
  .fc-regio-grid.fc-grid-icon-right {
    grid-template-areas: "card icon";
    grid-template-columns: auto min-content;
  }
  .fc-regio-grid.fc-grid-icon-left {
    grid-template-areas: "icon card";
    grid-template-columns: min-content auto;
  }
  .fc-smoketest-grid {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(1, 1fr);
    width: 30%;
    margin: auto;
  }
  /*.fc-layout-marginleft {
      grid-area: marginLeft;
      background-color: #F3F5F6;
  }

  .fc-layout-marginright {
      grid-area: marginRight;
      background-color: #F3F5F6;
  }

  .fc-layout-shadowleft {
      grid-area: shadowleft;
      background-image: url('../Images/Shadow-Left.png');
      min-height: 100vh;
  }

  .fc-layout-shadowright {
      grid-area: shadowright;
      background-image: url('../Images/Shadow-Right.png');
      min-height: 100vh;
  }

  .fc-layout-logo {
      grid-area: logo;
  }

  .fc-layout-header {
      grid-area: header;
  }

  .fc-layout-date {
      grid-area: date;
      padding-top: 11px;
      background-color: $--rabo-blue;
      color: white;
      font-size: 12pt;
      font-weight: normal;
      text-align: center;
  }

  .fc-layout-name {
      grid-area: name;
      padding-top: 11px;
      background-color: $--rabo-blue;
      color: white;
      font-size: 12pt;
      font-weight: normal;
      text-align: right;
      border-left-style: solid;
      border-left-color: $--rabo-dark-orange;
      border-left-width: 2px;
      padding-right: 10px;
  }

  .fc-layout-menu {
      grid-area: menu;
  }

  .fc-layout-content {
      grid-area: content;
  }

  .fc-layout-divider-blue {
      grid-area: divider1;
      background-color: $--rabo-blue;
  }

  .fc-layout-divider-grey {
      grid-area: divider2;
      background-color: rgba(0,0,0,0.125);
  }

  .fc-layout-grid {
      @include fc-grid;
      align-items: stretch;
      grid-template-areas: 'marginLeft shadowleft logo divider0 header shadowright marginRight' 'marginLeft shadowleft date divider1 name shadowright marginRight' 'marginLeft shadowleft menu divider2 content shadowright marginRight';
      grid-template-columns: 20px 6px 210px 1px auto 6px 20px;
      grid-template-rows: 76px 40px auto;
      background-color: white;
      min-width: 1000px;
  }*/
  .fc-card-main {
    /*@extend .row;*/
    display: grid;
    width: 100%;
    transform: scale(1);
    transition: transform 0.15s ease-in-out;
    height: 100%;
  }
  .fc-card-main .fc-card-border-full {
    border-radius: 1rem !important;
  }
  .fc-card-main .fc-actionable:hover {
    transform: scale(1.02);
    box-shadow: 0 1px 15px 0 #d8d7d8;
  }
  .fc-card-main a {
    text-decoration: none !important;
  }
  .fc-card-inner-grid-big {
    display: grid;
    grid-template-areas: "title icon" "description icon" "status1 status2";
    grid-template-rows: auto min-content min-content;
    grid-template-columns: auto min-content;
    /*    height: 100%;*/
  }
  .fc-card-inner-grid-big .fc-card-icon {
    align-self: flex-end;
    text-align: end;
  }
  .fc-card-inner-grid-small {
    display: grid;
    grid-template-areas: "title infoicon" "description infoicon";
    grid-template-columns: auto min-content;
  }
  .fc-card.active .fc-card-border {
    background-color: #FFEFE5;
  }
  .fc-card-side-icon {
    /*@include fc-card-side;*/
    grid-area: icon;
    align-self: center;
    display: grid;
    /*grid-template-columns: repeat(10, 1fr);
    grid-gap: 0;*/
    /*grid-column-start: 1;
    grid-column: span 1;*/
  }
  .fc-card-side-card {
    /*@include fc-card;*/
    /*    height: 100%;*/
    grid-area: card;
    /*grid-column-start: 2;
    grid-column: span 1;*/
  }
  .fc-card-body {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
    grid-gap: 2px;
  }
  .fc-card-body-small {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
    grid-gap: 2px;
  }
  .fc-card-icon {
    align-self: center !important;
    grid-area: icon;
  }
  .fc-card-title {
    color: #000099;
    font-weight: bold;
    grid-area: title;
  }
  .fc-card-icon-info {
    align-self: center !important;
    grid-area: infoicon;
  }
  .fc-card-descr {
    color: #333;
    grid-area: description;
  }
  .fc-card-status {
    color: #666;
    grid-area: status1/status1/status2/status2;
    align-self: end;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "status1 status2";
  }
  .fc-card-status1 {
    color: #666;
    grid-area: status1;
  }
  .fc-card-status2 {
    color: #666;
    grid-area: status2;
    align-self: flex-end;
    text-align: end;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  #hamburger-menu {
    display: none;
  }
  .fc-hamburger-menu {
    grid-area: menu;
    align-self: flex-end;
    padding: 10px;
  }
  .fc-hamburger-menu > div {
    display: none;
    position: absolute;
  }
  .fc-hamburger-menu:hover > div {
    display: block;
    opacity: 1;
  }
  .fc-hamburger-menu-view {
    /*position: sticky;*/
    margin-top: 10px;
    background-color: white;
    box-shadow: 0 0 10px #000099;
    border-bottom-right-radius: 1em;
    border-bottom-left-radius: 1em;
    z-index: 12;
    /*transition-property: height;
    transition-delay: 0.5s;*/
  }
  .fc-hamburger-menu-view ul {
    list-style: none;
    padding-inline-start: 10px;
    padding-inline-end: 10px;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  .fc-wizard {
    color: #000099;
  }
  .fc-wizardtab {
    display: grid;
    grid-template-columns: min-content min-content;
    column-gap: 5px;
    align-items: center;
    white-space: nowrap;
    cursor: pointer;
    color: #000099;
  }
  .fc-wizardtab .fc-wizardtab-icon {
    width: 25px;
    height: 25px;
    fill: currentColor;
    font-size: 210pt;
  }
  .fc-wizardtab .fc-wizardtab-icon-shape {
    /*    stroke: black;
    stroke-width: 60px;*/
  }
  .fc-wizardtab svg text {
    transform: translate(50%, 50%);
    text-anchor: middle;
    dominant-baseline: central;
  }
  .fc-wizardtab.active {
    color: rgb(25, 25, 124);
  }
  .fc-wizardtab.active .fc-wizardtab-icon {
    fill: rgb(227, 227, 227);
  }
  .fc-wizardtab.active .fc-wizardtab-icon text {
    stroke: rgb(25, 25, 124);
    fill: rgb(25, 25, 124);
  }
  .fc-wizardtab.selected {
    cursor: not-allowed;
    color: #FD6400;
  }
  .fc-wizardtab.selected .fc-wizardtab-icon {
    fill: #FD6400;
  }
  .fc-wizardtab.selected .fc-wizardtab-icon text {
    stroke: white;
    fill: white;
  }
  .fc-wizardtab.inactive {
    cursor: not-allowed;
    color: #AAA;
  }
  .fc-wizardtab.inactive .fc-wizardtab-icon {
    fill: rgb(170, 170, 170);
  }
  .fc-wizardtab.inactive .fc-wizardtab-icon text {
    stroke: white;
    fill: white;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* All of these entries are marked important, to make sure things like 'type-ahead' don't overrule us. */
  /* Chrome, Safari, Edge, Opera */
  input[type=number][class~=fc-input-no-spin]::-webkit-inner-spin-button,
  input[type=number][class~=fc-input-no-spin]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  /* Firefox */
  input[type=number][class~=fc-input-no-spin] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* All of these entries are marked important, to make sure things like 'type-ahead' don't overrule us. */
  /* Chrome, Safari, Edge, Opera */
  input[type=number][class~=fc-input-no-spin]::-webkit-inner-spin-button,
  input[type=number][class~=fc-input-no-spin]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  /* Firefox */
  input[type=number][class~=fc-input-no-spin] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* All of these entries are marked important, to make sure things like 'type-ahead' don't overrule us. */
  /* Chrome, Safari, Edge, Opera */
  input[type=number][class~=fc-input-no-spin]::-webkit-inner-spin-button,
  input[type=number][class~=fc-input-no-spin]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  /* Firefox */
  input[type=number][class~=fc-input-no-spin] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  .fc-input-text, .fc-input-date, .fc-input-number, .fc-input-percentage, .fc-input-currency, .fc-input-integer {
    color: #000099;
    /* SAME FONT IS USED IN FC-BUTTON */
    font-family: Myriad, "Segoe UI", "Helvetica Neue", Arial, Sans-serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 11pt !important;
    background: transparent !important;
    border: 1px solid transparent;
    border-bottom-color: #aaa;
    overflow: hidden;
    padding-right: 13px;
    padding-left: 13px;
    padding-top: 3px;
    padding-bottom: 3px;
    transition: all 100ms ease-out;
    white-space: nowrap;
    border-bottom-left-radius: 16px;
    border-top-left-radius: 16px;
    margin-left: -4px;
    /*margin-right: -4px;*/
    border-bottom-right-radius: 16px;
    border-top-right-radius: 16px;
  }
  .fc-input-text:hover:not(:disabled), .fc-input-date:hover:not(:disabled), .fc-input-number:hover:not(:disabled), .fc-input-percentage:hover:not(:disabled), .fc-input-currency:hover:not(:disabled), .fc-input-integer:hover:not(:disabled) {
    border-bottom-color: #FD6400;
  }
  .fc-input-text:focus:not(:disabled), .fc-input-date:focus:not(:disabled), .fc-input-number:focus:not(:disabled), .fc-input-percentage:focus:not(:disabled), .fc-input-currency:focus:not(:disabled), .fc-input-integer:focus:not(:disabled), .fc-input-text :active:not(:disabled), .fc-input-date :active:not(:disabled), .fc-input-number :active:not(:disabled), .fc-input-percentage :active:not(:disabled), .fc-input-currency :active:not(:disabled), .fc-input-integer :active:not(:disabled) {
    border-bottom-color: #FD6400;
    outline: none;
    outline-width: 0;
  }
  .fc-input-text.fc-input-full-width, .fc-input-full-width.fc-input-date, .fc-input-full-width.fc-input-number, .fc-input-full-width.fc-input-percentage, .fc-input-full-width.fc-input-currency, .fc-input-full-width.fc-input-integer {
    /* Width = 100% minus padding */
    width: calc(100% - 26px);
  }
  .fc-input-icon {
    color: #000099;
    /* SAME FONT IS USED IN FC-BUTTON */
    font-family: Myriad, "Segoe UI", "Helvetica Neue", Arial, Sans-serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 11pt !important;
    position: relative;
  }
  .fc-input-icon > i {
    position: absolute;
    display: block;
    top: 4px;
    pointer-events: none;
    width: 28px;
    text-align: center;
    font-style: normal;
  }
  .fc-input-icon-right > i {
    right: 0;
  }
  .fc-input-icon.fc-input-icon-left > input {
    padding-left: 30px;
  }
  .fc-input-icon.fc-input-icon-right > input {
    padding-right: 30px;
    text-align: right;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* All of these entries are marked important, to make sure things like 'type-ahead' don't overrule us. */
  /* Chrome, Safari, Edge, Opera */
  input[type=number][class~=fc-input-no-spin]::-webkit-inner-spin-button,
  input[type=number][class~=fc-input-no-spin]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  /* Firefox */
  input[type=number][class~=fc-input-no-spin] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* All of these entries are marked important, to make sure things like 'type-ahead' don't overrule us. */
  /* Chrome, Safari, Edge, Opera */
  input[type=number][class~=fc-input-no-spin]::-webkit-inner-spin-button,
  input[type=number][class~=fc-input-no-spin]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  /* Firefox */
  input[type=number][class~=fc-input-no-spin] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  .fc-input-text, .fc-input-date, .fc-input-number, .fc-input-percentage, .fc-input-currency, .fc-input-integer {
    color: #000099;
    /* SAME FONT IS USED IN FC-BUTTON */
    font-family: Myriad, "Segoe UI", "Helvetica Neue", Arial, Sans-serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 11pt !important;
    background: transparent !important;
    border: 1px solid transparent;
    border-bottom-color: #aaa;
    overflow: hidden;
    padding-right: 13px;
    padding-left: 13px;
    padding-top: 3px;
    padding-bottom: 3px;
    transition: all 100ms ease-out;
    white-space: nowrap;
    border-bottom-left-radius: 16px;
    border-top-left-radius: 16px;
    margin-left: -4px;
    /*margin-right: -4px;*/
    border-bottom-right-radius: 16px;
    border-top-right-radius: 16px;
  }
  .fc-input-text:hover:not(:disabled), .fc-input-date:hover:not(:disabled), .fc-input-number:hover:not(:disabled), .fc-input-percentage:hover:not(:disabled), .fc-input-currency:hover:not(:disabled), .fc-input-integer:hover:not(:disabled) {
    border-bottom-color: #FD6400;
  }
  .fc-input-text:focus:not(:disabled), .fc-input-date:focus:not(:disabled), .fc-input-number:focus:not(:disabled), .fc-input-percentage:focus:not(:disabled), .fc-input-currency:focus:not(:disabled), .fc-input-integer:focus:not(:disabled), .fc-input-text :active:not(:disabled), .fc-input-date :active:not(:disabled), .fc-input-number :active:not(:disabled), .fc-input-percentage :active:not(:disabled), .fc-input-currency :active:not(:disabled), .fc-input-integer :active:not(:disabled) {
    border-bottom-color: #FD6400;
    outline: none;
    outline-width: 0;
  }
  .fc-input-text.fc-input-full-width, .fc-input-full-width.fc-input-date, .fc-input-full-width.fc-input-number, .fc-input-full-width.fc-input-percentage, .fc-input-full-width.fc-input-currency, .fc-input-full-width.fc-input-integer {
    /* Width = 100% minus padding */
    width: calc(100% - 26px);
  }
  .fc-input-integer {
    color: #000099;
    /* SAME FONT IS USED IN FC-BUTTON */
    font-family: Myriad, "Segoe UI", "Helvetica Neue", Arial, Sans-serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 11pt !important;
    background: transparent !important;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* All of these entries are marked important, to make sure things like 'type-ahead' don't overrule us. */
  /* Chrome, Safari, Edge, Opera */
  input[type=number][class~=fc-input-no-spin]::-webkit-inner-spin-button,
  input[type=number][class~=fc-input-no-spin]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  /* Firefox */
  input[type=number][class~=fc-input-no-spin] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* All of these entries are marked important, to make sure things like 'type-ahead' don't overrule us. */
  /* Chrome, Safari, Edge, Opera */
  input[type=number][class~=fc-input-no-spin]::-webkit-inner-spin-button,
  input[type=number][class~=fc-input-no-spin]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  /* Firefox */
  input[type=number][class~=fc-input-no-spin] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  .fc-input-text, .fc-input-date, .fc-input-number, .fc-input-percentage, .fc-input-currency, .fc-input-integer {
    color: #000099;
    /* SAME FONT IS USED IN FC-BUTTON */
    font-family: Myriad, "Segoe UI", "Helvetica Neue", Arial, Sans-serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 11pt !important;
    background: transparent !important;
    border: 1px solid transparent;
    border-bottom-color: #aaa;
    overflow: hidden;
    padding-right: 13px;
    padding-left: 13px;
    padding-top: 3px;
    padding-bottom: 3px;
    transition: all 100ms ease-out;
    white-space: nowrap;
    border-bottom-left-radius: 16px;
    border-top-left-radius: 16px;
    margin-left: -4px;
    /*margin-right: -4px;*/
    border-bottom-right-radius: 16px;
    border-top-right-radius: 16px;
  }
  .fc-input-text:hover:not(:disabled), .fc-input-date:hover:not(:disabled), .fc-input-number:hover:not(:disabled), .fc-input-percentage:hover:not(:disabled), .fc-input-currency:hover:not(:disabled), .fc-input-integer:hover:not(:disabled) {
    border-bottom-color: #FD6400;
  }
  .fc-input-text:focus:not(:disabled), .fc-input-date:focus:not(:disabled), .fc-input-number:focus:not(:disabled), .fc-input-percentage:focus:not(:disabled), .fc-input-currency:focus:not(:disabled), .fc-input-integer:focus:not(:disabled), .fc-input-text :active:not(:disabled), .fc-input-date :active:not(:disabled), .fc-input-number :active:not(:disabled), .fc-input-percentage :active:not(:disabled), .fc-input-currency :active:not(:disabled), .fc-input-integer :active:not(:disabled) {
    border-bottom-color: #FD6400;
    outline: none;
    outline-width: 0;
  }
  .fc-input-text.fc-input-full-width, .fc-input-full-width.fc-input-date, .fc-input-full-width.fc-input-number, .fc-input-full-width.fc-input-percentage, .fc-input-full-width.fc-input-currency, .fc-input-full-width.fc-input-integer {
    /* Width = 100% minus padding */
    width: calc(100% - 26px);
  }
  .fc-input-currency {
    color: #000099;
    /* SAME FONT IS USED IN FC-BUTTON */
    font-family: Myriad, "Segoe UI", "Helvetica Neue", Arial, Sans-serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 11pt !important;
    background: transparent !important;
    /*position: relative;*/
    text-align: left;
  }
  .fc-input-currency.fc-input-align-right {
    text-align: right;
  }
  .fc-input-currency.fc-input-full-width {
    /* Width = 100% plus offset icon + padding-right*/
    width: calc(100% - 43px) !important;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* All of these entries are marked important, to make sure things like 'type-ahead' don't overrule us. */
  /* Chrome, Safari, Edge, Opera */
  input[type=number][class~=fc-input-no-spin]::-webkit-inner-spin-button,
  input[type=number][class~=fc-input-no-spin]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  /* Firefox */
  input[type=number][class~=fc-input-no-spin] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* All of these entries are marked important, to make sure things like 'type-ahead' don't overrule us. */
  /* Chrome, Safari, Edge, Opera */
  input[type=number][class~=fc-input-no-spin]::-webkit-inner-spin-button,
  input[type=number][class~=fc-input-no-spin]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  /* Firefox */
  input[type=number][class~=fc-input-no-spin] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  .fc-input-text, .fc-input-date, .fc-input-number, .fc-input-percentage, .fc-input-integer, .fc-input-currency {
    color: #000099;
    /* SAME FONT IS USED IN FC-BUTTON */
    font-family: Myriad, "Segoe UI", "Helvetica Neue", Arial, Sans-serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 11pt !important;
    background: transparent !important;
    border: 1px solid transparent;
    border-bottom-color: #aaa;
    overflow: hidden;
    padding-right: 13px;
    padding-left: 13px;
    padding-top: 3px;
    padding-bottom: 3px;
    transition: all 100ms ease-out;
    white-space: nowrap;
    border-bottom-left-radius: 16px;
    border-top-left-radius: 16px;
    margin-left: -4px;
    /*margin-right: -4px;*/
    border-bottom-right-radius: 16px;
    border-top-right-radius: 16px;
  }
  .fc-input-text:hover:not(:disabled), .fc-input-date:hover:not(:disabled), .fc-input-number:hover:not(:disabled), .fc-input-percentage:hover:not(:disabled), .fc-input-integer:hover:not(:disabled), .fc-input-currency:hover:not(:disabled) {
    border-bottom-color: #FD6400;
  }
  .fc-input-text:focus:not(:disabled), .fc-input-date:focus:not(:disabled), .fc-input-number:focus:not(:disabled), .fc-input-percentage:focus:not(:disabled), .fc-input-integer:focus:not(:disabled), .fc-input-currency:focus:not(:disabled), .fc-input-text :active:not(:disabled), .fc-input-date :active:not(:disabled), .fc-input-number :active:not(:disabled), .fc-input-percentage :active:not(:disabled), .fc-input-integer :active:not(:disabled), .fc-input-currency :active:not(:disabled) {
    border-bottom-color: #FD6400;
    outline: none;
    outline-width: 0;
  }
  .fc-input-text.fc-input-full-width, .fc-input-full-width.fc-input-date, .fc-input-full-width.fc-input-number, .fc-input-full-width.fc-input-percentage, .fc-input-full-width.fc-input-integer, .fc-input-full-width.fc-input-currency {
    /* Width = 100% minus padding */
    width: calc(100% - 26px);
  }
  .fc-input-percentage {
    color: #000099;
    /* SAME FONT IS USED IN FC-BUTTON */
    font-family: Myriad, "Segoe UI", "Helvetica Neue", Arial, Sans-serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 11pt !important;
    background: transparent !important;
    /*position: relative;*/
  }
  .fc-input-percentage.fc-input-full-width {
    /* Width = 100% plus offset icon + padding-right*/
    width: calc(100% - 43px) !important;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* All of these entries are marked important, to make sure things like 'type-ahead' don't overrule us. */
  /* Chrome, Safari, Edge, Opera */
  input[type=number][class~=fc-input-no-spin]::-webkit-inner-spin-button,
  input[type=number][class~=fc-input-no-spin]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  /* Firefox */
  input[type=number][class~=fc-input-no-spin] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* All of these entries are marked important, to make sure things like 'type-ahead' don't overrule us. */
  /* Chrome, Safari, Edge, Opera */
  input[type=number][class~=fc-input-no-spin]::-webkit-inner-spin-button,
  input[type=number][class~=fc-input-no-spin]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  /* Firefox */
  input[type=number][class~=fc-input-no-spin] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  .fc-input-text, .fc-input-date, .fc-input-number, .fc-input-integer, .fc-input-currency, .fc-input-percentage {
    color: #000099;
    /* SAME FONT IS USED IN FC-BUTTON */
    font-family: Myriad, "Segoe UI", "Helvetica Neue", Arial, Sans-serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 11pt !important;
    background: transparent !important;
    border: 1px solid transparent;
    border-bottom-color: #aaa;
    overflow: hidden;
    padding-right: 13px;
    padding-left: 13px;
    padding-top: 3px;
    padding-bottom: 3px;
    transition: all 100ms ease-out;
    white-space: nowrap;
    border-bottom-left-radius: 16px;
    border-top-left-radius: 16px;
    margin-left: -4px;
    /*margin-right: -4px;*/
    border-bottom-right-radius: 16px;
    border-top-right-radius: 16px;
  }
  .fc-input-text:hover:not(:disabled), .fc-input-date:hover:not(:disabled), .fc-input-number:hover:not(:disabled), .fc-input-integer:hover:not(:disabled), .fc-input-currency:hover:not(:disabled), .fc-input-percentage:hover:not(:disabled) {
    border-bottom-color: #FD6400;
  }
  .fc-input-text:focus:not(:disabled), .fc-input-date:focus:not(:disabled), .fc-input-number:focus:not(:disabled), .fc-input-integer:focus:not(:disabled), .fc-input-currency:focus:not(:disabled), .fc-input-percentage:focus:not(:disabled), .fc-input-text :active:not(:disabled), .fc-input-date :active:not(:disabled), .fc-input-number :active:not(:disabled), .fc-input-integer :active:not(:disabled), .fc-input-currency :active:not(:disabled), .fc-input-percentage :active:not(:disabled) {
    border-bottom-color: #FD6400;
    outline: none;
    outline-width: 0;
  }
  .fc-input-text.fc-input-full-width, .fc-input-full-width.fc-input-date, .fc-input-full-width.fc-input-number, .fc-input-full-width.fc-input-integer, .fc-input-full-width.fc-input-currency, .fc-input-full-width.fc-input-percentage {
    /* Width = 100% minus padding */
    width: calc(100% - 26px);
  }
  .fc-input-number {
    color: #000099;
    /* SAME FONT IS USED IN FC-BUTTON */
    font-family: Myriad, "Segoe UI", "Helvetica Neue", Arial, Sans-serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 11pt !important;
    background: transparent !important;
    /*position: relative;*/
  }
  .fc-input-number.fc-input-full-width {
    /* Width = 100% plus offset */
    width: calc(100% - 25px) !important;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* All of these entries are marked important, to make sure things like 'type-ahead' don't overrule us. */
  /* Chrome, Safari, Edge, Opera */
  input[type=number][class~=fc-input-no-spin]::-webkit-inner-spin-button,
  input[type=number][class~=fc-input-no-spin]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  /* Firefox */
  input[type=number][class~=fc-input-no-spin] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  .fc-checkbox {
    color: #000099;
    /* SAME FONT IS USED IN FC-BUTTON */
    font-family: Myriad, "Segoe UI", "Helvetica Neue", Arial, Sans-serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 11pt !important;
    background: transparent !important;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    display: grid;
    white-space: nowrap;
    grid-template-columns: 25px 1fr;
    align-items: center;
  }
  .fc-checkbox.enabled {
    cursor: pointer;
  }
  /*.fc-checkbox-label {
      margin-left: 25px;
  }*/
  .fc-checkbox input[type=checkbox] {
    /*position: absolute;*/
    opacity: 0;
  }
  .fc-checkbox-marker {
    display: grid;
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    font-size: 12px;
    background-color: transparent;
    border-style: solid;
    border-width: 1px;
    border-radius: 3px;
    border-color: #AAA;
    align-content: center;
    justify-content: center;
  }
  .fc-checkbox-marker-content {
    margin-left: 1px;
    margin-top: 2px;
    font-size: 10px;
    color: white;
    display: none;
  }
  .fc-checkbox:hover input[type=checkbox]:not(:disabled) ~ .fc-checkbox-marker {
    border-color: #FD6400;
  }
  .fc-checkbox input[type=checkbox]:checked ~ .fc-checkbox-marker .fc-checkbox-marker-content {
    display: block;
  }
  .fc-checkbox input[type=checkbox]:checked ~ .fc-checkbox-marker {
    border-color: #FD6400;
    background-color: #FD6400;
  }
  .fc-checkbox input[type=checkbox]:focus ~ .fc-checkbox-marker {
    border-color: #FD6400;
    box-shadow: 0 0 2px 2px #FFC200;
  }
  .fc-checkbox input[type=checkbox]:disabled ~ .fc-checkbox-marker {
    border-color: #AAA;
    background-color: lightgray;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* All of these entries are marked important, to make sure things like 'type-ahead' don't overrule us. */
  /* Chrome, Safari, Edge, Opera */
  input[type=number][class~=fc-input-no-spin]::-webkit-inner-spin-button,
  input[type=number][class~=fc-input-no-spin]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  /* Firefox */
  input[type=number][class~=fc-input-no-spin] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  .fc-radiobutton {
    color: #000099;
    /* SAME FONT IS USED IN FC-BUTTON */
    font-family: Myriad, "Segoe UI", "Helvetica Neue", Arial, Sans-serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 11pt !important;
    background: transparent !important;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
  }
  .fc-radiobutton.enabled {
    cursor: pointer;
  }
  .fc-radiobutton-label {
    margin-left: 25px;
  }
  .fc-radiobutton input[type=radio] {
    position: absolute;
    opacity: 0;
  }
  .fc-radiobutton-marker {
    position: absolute;
    /* top: -2px; */
    left: 0;
    height: 16px;
    width: 16px;
    background-color: transparent;
    border-style: solid;
    border-width: 1px;
    border-radius: 50%;
    border-color: #AAA;
  }
  .fc-radiobutton-marker-content {
    display: block;
    height: 8px;
    width: 8px;
    border-style: solid;
    border-width: 1px;
    border-radius: 50%;
    border-color: #AAA;
    margin-left: 3px;
    margin-top: 3px;
    background-color: #EEF0F0;
  }
  .fc-radiobutton:hover input[type=radio]:not(:disabled) ~ .fc-radiobutton-marker .fc-radiobutton-marker-content {
    border-color: #FD6400;
  }
  /*.fc-radiobutton input[type="radio"]:checked ~ .fc-radiobutton-marker .fc-radiobutton-marker-content {
      display: block;
  }*/
  .fc-radiobutton input[type=radio]:checked ~ .fc-radiobutton-marker .fc-radiobutton-marker-content {
    border-color: #FD6400;
    background-color: #FD6400;
  }
  .fc-radiobutton input[type=radio]:focus ~ .fc-radiobutton-marker {
    border-color: #FD6400;
    box-shadow: 0 0 2px 2px #FFC200;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* All of these entries are marked important, to make sure things like 'type-ahead' don't overrule us. */
  /* Chrome, Safari, Edge, Opera */
  input[type=number][class~=fc-input-no-spin]::-webkit-inner-spin-button,
  input[type=number][class~=fc-input-no-spin]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  /* Firefox */
  input[type=number][class~=fc-input-no-spin] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  .fc-input-select {
    color: #000099;
    /* SAME FONT IS USED IN FC-BUTTON */
    font-family: Myriad, "Segoe UI", "Helvetica Neue", Arial, Sans-serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 11pt !important;
    background: transparent !important;
    width: max-content;
    border: 1px solid transparent;
    border-bottom-color: #aaa;
    overflow: auto;
    padding: 3px 9px;
    transition: all 100ms ease-out;
    white-space: nowrap;
    border-bottom-left-radius: 16px;
    border-top-left-radius: 16px;
    margin-left: -4px;
    margin-right: 4px;
    border-bottom-right-radius: 16px;
    border-top-right-radius: 16px;
  }
  .fc-input-select:hover:not(:disabled) {
    border-bottom-color: #FD6400;
  }
  .fc-input-select:focus:not(:disabled), .fc-input-select :active:not(:disabled) {
    border-bottom-color: #FD6400;
    outline: none;
    outline-width: 0;
  }
  .fc-input-select.fc-input-full-width {
    /* Width = 100% plus offset */
    /*width: calc(100% + 2px);   ER: 20-11-2023 replaced with just 100% */
    width: 100%;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* All of these entries are marked important, to make sure things like 'type-ahead' don't overrule us. */
  /* Chrome, Safari, Edge, Opera */
  input[type=number][class~=fc-input-no-spin]::-webkit-inner-spin-button,
  input[type=number][class~=fc-input-no-spin]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  /* Firefox */
  input[type=number][class~=fc-input-no-spin] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  .fc-input-select-multi {
    color: #000099;
    /* SAME FONT IS USED IN FC-BUTTON */
    font-family: Myriad, "Segoe UI", "Helvetica Neue", Arial, Sans-serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 11pt !important;
    background: transparent !important;
    border: 1px solid transparent;
    border-bottom-color: #aaa;
    overflow: auto;
    padding: 3px 13px;
    transition: all 100ms ease-out;
    white-space: nowrap;
    border-bottom-left-radius: 16px;
    border-top-left-radius: 16px;
    margin-left: -4px;
    /*margin-right: -4px;*/
    border-bottom-right-radius: 16px;
    border-top-right-radius: 16px;
  }
  .fc-input-select-multi:hover:not(:disabled) {
    border-bottom-color: #FD6400;
  }
  .fc-input-select-multi:focus:not(:disabled), .fc-input-select-multi :active:not(:disabled) {
    border-bottom-color: #FD6400;
    outline: none;
    outline-width: 0;
  }
  .fc-input-select-multi.fc-input-full-width {
    /* Width = 100% plus offset */
    width: calc(100% + 4px);
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* All of these entries are marked important, to make sure things like 'type-ahead' don't overrule us. */
  /* Chrome, Safari, Edge, Opera */
  input[type=number][class~=fc-input-no-spin]::-webkit-inner-spin-button,
  input[type=number][class~=fc-input-no-spin]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  /* Firefox */
  input[type=number][class~=fc-input-no-spin] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  .fc-input-text, .fc-input-date, .fc-input-integer, .fc-input-currency, .fc-input-percentage, .fc-input-number {
    color: #000099;
    /* SAME FONT IS USED IN FC-BUTTON */
    font-family: Myriad, "Segoe UI", "Helvetica Neue", Arial, Sans-serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 11pt !important;
    background: transparent !important;
    border: 1px solid transparent;
    border-bottom-color: #aaa;
    overflow: hidden;
    padding-right: 13px;
    padding-left: 13px;
    padding-top: 3px;
    padding-bottom: 3px;
    transition: all 100ms ease-out;
    white-space: nowrap;
    border-bottom-left-radius: 16px;
    border-top-left-radius: 16px;
    margin-left: -4px;
    /*margin-right: -4px;*/
    border-bottom-right-radius: 16px;
    border-top-right-radius: 16px;
  }
  .fc-input-text:hover:not(:disabled), .fc-input-date:hover:not(:disabled), .fc-input-integer:hover:not(:disabled), .fc-input-currency:hover:not(:disabled), .fc-input-percentage:hover:not(:disabled), .fc-input-number:hover:not(:disabled) {
    border-bottom-color: #FD6400;
  }
  .fc-input-text:focus:not(:disabled), .fc-input-date:focus:not(:disabled), .fc-input-integer:focus:not(:disabled), .fc-input-currency:focus:not(:disabled), .fc-input-percentage:focus:not(:disabled), .fc-input-number:focus:not(:disabled), .fc-input-text :active:not(:disabled), .fc-input-date :active:not(:disabled), .fc-input-integer :active:not(:disabled), .fc-input-currency :active:not(:disabled), .fc-input-percentage :active:not(:disabled), .fc-input-number :active:not(:disabled) {
    border-bottom-color: #FD6400;
    outline: none;
    outline-width: 0;
  }
  .fc-input-text.fc-input-full-width, .fc-input-full-width.fc-input-date, .fc-input-full-width.fc-input-integer, .fc-input-full-width.fc-input-currency, .fc-input-full-width.fc-input-percentage, .fc-input-full-width.fc-input-number {
    /* Width = 100% minus padding */
    width: calc(100% - 26px);
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* All of these entries are marked important, to make sure things like 'type-ahead' don't overrule us. */
  /* Chrome, Safari, Edge, Opera */
  input[type=number][class~=fc-input-no-spin]::-webkit-inner-spin-button,
  input[type=number][class~=fc-input-no-spin]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  /* Firefox */
  input[type=number][class~=fc-input-no-spin] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* All of these entries are marked important, to make sure things like 'type-ahead' don't overrule us. */
  /* Chrome, Safari, Edge, Opera */
  input[type=number][class~=fc-input-no-spin]::-webkit-inner-spin-button,
  input[type=number][class~=fc-input-no-spin]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  /* Firefox */
  input[type=number][class~=fc-input-no-spin] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  .fc-input-text, .fc-input-date, .fc-input-integer, .fc-input-currency, .fc-input-percentage, .fc-input-number {
    color: #000099;
    /* SAME FONT IS USED IN FC-BUTTON */
    font-family: Myriad, "Segoe UI", "Helvetica Neue", Arial, Sans-serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 11pt !important;
    background: transparent !important;
    border: 1px solid transparent;
    border-bottom-color: #aaa;
    overflow: hidden;
    padding-right: 13px;
    padding-left: 13px;
    padding-top: 3px;
    padding-bottom: 3px;
    transition: all 100ms ease-out;
    white-space: nowrap;
    border-bottom-left-radius: 16px;
    border-top-left-radius: 16px;
    margin-left: -4px;
    /*margin-right: -4px;*/
    border-bottom-right-radius: 16px;
    border-top-right-radius: 16px;
  }
  .fc-input-text:hover:not(:disabled), .fc-input-date:hover:not(:disabled), .fc-input-integer:hover:not(:disabled), .fc-input-currency:hover:not(:disabled), .fc-input-percentage:hover:not(:disabled), .fc-input-number:hover:not(:disabled) {
    border-bottom-color: #FD6400;
  }
  .fc-input-text:focus:not(:disabled), .fc-input-date:focus:not(:disabled), .fc-input-integer:focus:not(:disabled), .fc-input-currency:focus:not(:disabled), .fc-input-percentage:focus:not(:disabled), .fc-input-number:focus:not(:disabled), .fc-input-text :active:not(:disabled), .fc-input-date :active:not(:disabled), .fc-input-integer :active:not(:disabled), .fc-input-currency :active:not(:disabled), .fc-input-percentage :active:not(:disabled), .fc-input-number :active:not(:disabled) {
    border-bottom-color: #FD6400;
    outline: none;
    outline-width: 0;
  }
  .fc-input-text.fc-input-full-width, .fc-input-full-width.fc-input-date, .fc-input-full-width.fc-input-integer, .fc-input-full-width.fc-input-currency, .fc-input-full-width.fc-input-percentage, .fc-input-full-width.fc-input-number {
    /* Width = 100% minus padding */
    width: calc(100% - 26px);
  }
  .fc-textarea {
    display: grid;
    grid-auto-columns: calc(100% - 20px) min-content;
    justify-content: start;
  }
  .fc-textarea.fc-input-full-width {
    /* Width = 100% minus offset */
    width: calc(100% - 4px);
  }
  .fc-textarea .fc-input-textarea {
    color: #000099;
    /* SAME FONT IS USED IN FC-BUTTON */
    font-family: Myriad, "Segoe UI", "Helvetica Neue", Arial, Sans-serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 11pt !important;
    background: transparent !important;
    border: 1px solid transparent;
    border-bottom-color: #aaa;
    border-bottom-left-radius: 16px;
    border-top-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border-top-right-radius: 16px;
    padding: 3px 13px;
    margin-left: -4px;
    transition: all 100ms ease-out;
    min-height: 17px;
    line-height: 17px;
    width: 100%;
    resize: none; /* Turn of little resize handle on bottom right */
    /*overflow: hidden;*/
    /*overflow-y: auto !important;*/
    /*white-space: nowrap;*/
    /*white-space: pre-wrap !important;*/
    /*margin-right: -4px;*/
  }
  .fc-textarea .fc-input-textarea:hover:not(:disabled) {
    border-bottom-color: #FD6400;
  }
  .fc-textarea .fc-input-textarea:focus:not(:disabled), .fc-textarea .fc-input-textarea :active:not(:disabled) {
    border-bottom-color: #FD6400;
    outline: none;
    outline-width: 0;
  }
  .fc-textarea .fc-input-textarea::-webkit-scrollbar {
    width: 10px;
  }
  .fc-textarea .fc-input-textarea::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
  }
  .fc-textarea .fc-textarea-handlebar {
    text-align: center;
    cursor: ns-resize;
    width: 100%;
    margin-left: 10px;
    margin-bottom: -100%;
    height: 10px;
  }
  .fc-textarea .fc-textarea-handlebar:after {
    content: "·····";
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* All of these entries are marked important, to make sure things like 'type-ahead' don't overrule us. */
  /* Chrome, Safari, Edge, Opera */
  input[type=number][class~=fc-input-no-spin]::-webkit-inner-spin-button,
  input[type=number][class~=fc-input-no-spin]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  /* Firefox */
  input[type=number][class~=fc-input-no-spin] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* All of these entries are marked important, to make sure things like 'type-ahead' don't overrule us. */
  /* Chrome, Safari, Edge, Opera */
  input[type=number][class~=fc-input-no-spin]::-webkit-inner-spin-button,
  input[type=number][class~=fc-input-no-spin]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  /* Firefox */
  input[type=number][class~=fc-input-no-spin] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  .fc-input-text, .fc-input-date, .fc-input-integer, .fc-input-currency, .fc-input-percentage, .fc-input-number {
    color: #000099;
    /* SAME FONT IS USED IN FC-BUTTON */
    font-family: Myriad, "Segoe UI", "Helvetica Neue", Arial, Sans-serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 11pt !important;
    background: transparent !important;
    border: 1px solid transparent;
    border-bottom-color: #aaa;
    overflow: hidden;
    padding-right: 13px;
    padding-left: 13px;
    padding-top: 3px;
    padding-bottom: 3px;
    transition: all 100ms ease-out;
    white-space: nowrap;
    border-bottom-left-radius: 16px;
    border-top-left-radius: 16px;
    margin-left: -4px;
    /*margin-right: -4px;*/
    border-bottom-right-radius: 16px;
    border-top-right-radius: 16px;
  }
  .fc-input-text:hover:not(:disabled), .fc-input-date:hover:not(:disabled), .fc-input-integer:hover:not(:disabled), .fc-input-currency:hover:not(:disabled), .fc-input-percentage:hover:not(:disabled), .fc-input-number:hover:not(:disabled) {
    border-bottom-color: #FD6400;
  }
  .fc-input-text:focus:not(:disabled), .fc-input-date:focus:not(:disabled), .fc-input-integer:focus:not(:disabled), .fc-input-currency:focus:not(:disabled), .fc-input-percentage:focus:not(:disabled), .fc-input-number:focus:not(:disabled), .fc-input-text :active:not(:disabled), .fc-input-date :active:not(:disabled), .fc-input-integer :active:not(:disabled), .fc-input-currency :active:not(:disabled), .fc-input-percentage :active:not(:disabled), .fc-input-number :active:not(:disabled) {
    border-bottom-color: #FD6400;
    outline: none;
    outline-width: 0;
  }
  .fc-input-text.fc-input-full-width, .fc-input-full-width.fc-input-date, .fc-input-full-width.fc-input-integer, .fc-input-full-width.fc-input-currency, .fc-input-full-width.fc-input-percentage, .fc-input-full-width.fc-input-number {
    /* Width = 100% minus padding */
    width: calc(100% - 26px);
  }
  /*.fc-input-date-container {
      position: relative;
      display: grid;
      grid-template-columns: 1fr auto;
  }*/
  .fc-input-date {
    padding-left: 10px;
    padding-bottom: 0px;
    padding-top: 3px;
    padding-right: 4px;
    margin-right: 1px;
    /* Moved here from .fc-input-date-container */
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    width: max-content;
  }
  .fc-input-date.fc-input-full-width {
    /* Width = 100% minus padding */
    width: calc(100% - 13px);
  }
  .fc-input-date-internal {
    color: #000099;
    /* SAME FONT IS USED IN FC-BUTTON */
    font-family: Myriad, "Segoe UI", "Helvetica Neue", Arial, Sans-serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 11pt !important;
    background: transparent !important;
    white-space: nowrap;
    border: 0;
  }
  .fc-input-date-internal:hover:not(:disabled) {
    border-bottom-color: #FD6400;
  }
  .fc-input-date-internal:focus:not(:disabled), .fc-input-date-internal :active:not(:disabled) {
    border-bottom-color: #FD6400;
    outline: none;
    outline-width: 0;
  }
  .fc-input-date-icon {
    cursor: pointer;
  }
  .fc-input-date-icon.fc-input-full-width {
    margin-left: 8px;
  }
  .fc-input-date-iconclear {
    grid-row: 1;
    grid-column: 2;
    cursor: pointer;
    margin-top: -5px;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /* All of these entries are marked important, to make sure things like 'type-ahead' don't overrule us. */
  /* Chrome, Safari, Edge, Opera */
  input[type=number][class~=fc-input-no-spin]::-webkit-inner-spin-button,
  input[type=number][class~=fc-input-no-spin]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  /* Firefox */
  input[type=number][class~=fc-input-no-spin] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  /* Styles for validation helpers. These come from JQuery.Validation.Unobtrusive */
  .field-validation-error {
    color: red;
    padding-top: 5px;
    /*display: none;*/
  }
  .field-validation-valid {
    /*display: none;*/
  }
  /*input.input-validation-error {
      border: 1px solid #b94a48;
  }*/
  .input-validation-error {
    /*border: 1px solid #b94a48;*/
    border-bottom-color: red;
  }
  input[type=checkbox].input-validation-error {
    border: 0 none;
  }
  .validation-summary-errors {
    color: red;
  }
  .validation-summary-valid {
    display: none;
  }
  html, body {
    font-family: Myriad, "Segoe UI", "Helvetica Neue", Arial, Sans-serif; /*'Helvetica Neue', Helvetica, Arial, sans-serif;*/
    -webkit-font-smoothing: antialiased;
    font-size: 12pt;
    font-weight: 300;
    background-color: #EEF0F0;
  }
  /* These need to be imported after fc. Don't know why ??!?!! */
  /*!
   * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com
   * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
   * Copyright 2024 Fonticons, Inc.
   */
  .fa {
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
  }
  .fas, .fc-icon-spinner, .fc-icon-trash, .fc-icon-edit, .fc-icon-select-in-table, .fc-icon-chevron, .fc-icon-select, .fc-icon-plus, .fc-icon-danger, .fc-icon-caret-down, .fc-icon-check, .fc-icon-angle-double-down, .fc-icon-validation-nok, .fc-icon-play, .fc-icon-pause, .fc-announcement-icon.fc-problem,
  .far,
  .fc-icon-copy,
  .fc-icon-validation-ok,
  .fab,
  .fa-solid,
  .fa-regular,
  .fa-brands,
  .fa {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
  }
  .fas::before, .fc-icon-spinner::before, .fc-icon-trash::before, .fc-icon-edit::before, .fc-icon-select-in-table::before, .fc-icon-chevron::before, .fc-icon-select::before, .fc-icon-plus::before, .fc-icon-danger::before, .fc-icon-caret-down::before, .fc-icon-check::before, .fc-icon-angle-double-down::before, .fc-icon-validation-nok::before, .fc-icon-play::before, .fc-icon-pause::before, .fc-announcement-icon.fc-problem::before,
  .far::before,
  .fc-icon-copy::before,
  .fc-icon-validation-ok::before,
  .fab::before,
  .fa-solid::before,
  .fa-regular::before,
  .fa-brands::before,
  .fa::before {
    content: var(--fa);
  }
  .fa-classic,
  .fas,
  .fc-icon-spinner,
  .fc-icon-trash,
  .fc-icon-edit,
  .fc-icon-select-in-table,
  .fc-icon-chevron,
  .fc-icon-select,
  .fc-icon-plus,
  .fc-icon-danger,
  .fc-icon-caret-down,
  .fc-icon-check,
  .fc-icon-angle-double-down,
  .fc-icon-validation-nok,
  .fc-icon-play,
  .fc-icon-pause,
  .fc-announcement-icon.fc-problem,
  .fa-solid,
  .far,
  .fc-icon-copy,
  .fc-icon-validation-ok,
  .fa-regular {
    font-family: "Font Awesome 6 Free";
  }
  .fa-brands,
  .fab {
    font-family: "Font Awesome 6 Brands";
  }
  .fa-1x {
    font-size: 1em;
  }
  .fa-2x, .fc-icon-spinner.fc-icon-larger, .fc-icon-copy.fc-icon-larger, .fc-icon-trash.fc-icon-larger, .fc-icon-edit.fc-icon-larger, .fc-icon-select-in-table.fc-icon-larger, .fc-icon-chevron.fc-icon-larger, .fc-icon-larger.fc-icon-select, .fc-icon-plus.fc-icon-larger, .fc-icon-danger.fc-icon-larger, .fc-icon-caret-down.fc-icon-larger, .fc-icon-check.fc-icon-larger, .fc-icon-angle-double-down.fc-icon-larger, .fc-icon-validation-ok.fc-icon-larger, .fc-icon-validation-nok.fc-icon-larger, .fc-icon-play.fc-icon-larger, .fc-icon-pause.fc-icon-larger, .fc-icon-larger.fc-announcement-icon.fc-problem {
    font-size: 2em;
  }
  .fa-3x, .fc-icon-spinner.fc-icon-extra-large, .fc-icon-copy.fc-icon-extra-large, .fc-icon-trash.fc-icon-extra-large, .fc-icon-edit.fc-icon-extra-large, .fc-icon-select-in-table.fc-icon-extra-large, .fc-icon-chevron.fc-icon-extra-large, .fc-icon-extra-large.fc-icon-select, .fc-icon-plus.fc-icon-extra-large, .fc-icon-danger.fc-icon-extra-large, .fc-icon-caret-down.fc-icon-extra-large, .fc-icon-check.fc-icon-extra-large, .fc-icon-angle-double-down.fc-icon-extra-large, .fc-icon-validation-ok.fc-icon-extra-large, .fc-icon-validation-nok.fc-icon-extra-large, .fc-icon-play.fc-icon-extra-large, .fc-icon-pause.fc-icon-extra-large, .fc-icon-extra-large.fc-announcement-icon.fc-problem {
    font-size: 3em;
  }
  .fa-4x {
    font-size: 4em;
  }
  .fa-5x {
    font-size: 5em;
  }
  .fa-6x {
    font-size: 6em;
  }
  .fa-7x {
    font-size: 7em;
  }
  .fa-8x {
    font-size: 8em;
  }
  .fa-9x {
    font-size: 9em;
  }
  .fa-10x {
    font-size: 10em;
  }
  .fa-2xs {
    font-size: 0.625em;
    line-height: 0.1em;
    vertical-align: 0.225em;
  }
  .fa-xs, .fc-icon-spinner.fc-icon-super-small, .fc-icon-spinner.fc-icon-extra-small, .fc-icon-copy.fc-icon-super-small, .fc-icon-copy.fc-icon-extra-small, .fc-icon-trash.fc-icon-super-small, .fc-icon-trash.fc-icon-extra-small, .fc-icon-edit.fc-icon-super-small, .fc-icon-edit.fc-icon-extra-small, .fc-icon-select-in-table.fc-icon-super-small, .fc-icon-select-in-table.fc-icon-extra-small, .fc-icon-chevron.fc-icon-super-small, .fc-icon-super-small.fc-icon-select, .fc-icon-chevron.fc-icon-extra-small, .fc-icon-extra-small.fc-icon-select, .fc-icon-plus.fc-icon-super-small, .fc-icon-plus.fc-icon-extra-small, .fc-icon-danger.fc-icon-super-small, .fc-icon-danger.fc-icon-extra-small, .fc-icon-caret-down.fc-icon-super-small, .fc-icon-caret-down.fc-icon-extra-small, .fc-icon-check.fc-icon-super-small, .fc-icon-check.fc-icon-extra-small, .fc-icon-angle-double-down.fc-icon-super-small, .fc-icon-angle-double-down.fc-icon-extra-small, .fc-icon-validation-ok.fc-icon-super-small, .fc-icon-validation-ok.fc-icon-extra-small, .fc-icon-validation-nok.fc-icon-super-small, .fc-icon-validation-nok.fc-icon-extra-small, .fc-icon-play.fc-icon-super-small, .fc-icon-play.fc-icon-extra-small, .fc-icon-pause.fc-icon-super-small, .fc-icon-pause.fc-icon-extra-small, .fc-icon-super-small.fc-announcement-icon.fc-problem, .fc-icon-extra-small.fc-announcement-icon.fc-problem {
    font-size: 0.75em;
    line-height: 0.08333em;
    vertical-align: 0.125em;
  }
  .fa-sm, .fc-icon-spinner.fc-icon-small, .fc-icon-spinner.fc-icon-medium, .fc-icon-copy.fc-icon-small, .fc-icon-copy.fc-icon-medium, .fc-icon-trash.fc-icon-small, .fc-icon-trash.fc-icon-medium, .fc-icon-edit.fc-icon-small, .fc-icon-edit.fc-icon-medium, .fc-icon-select-in-table.fc-icon-small, .fc-icon-select-in-table.fc-icon-medium, .fc-icon-chevron.fc-icon-small, .fc-icon-small.fc-icon-select, .fc-icon-chevron.fc-icon-medium, .fc-icon-medium.fc-icon-select, .fc-icon-plus.fc-icon-small, .fc-icon-plus.fc-icon-medium, .fc-icon-danger.fc-icon-small, .fc-icon-danger.fc-icon-medium, .fc-icon-caret-down.fc-icon-small, .fc-icon-caret-down.fc-icon-medium, .fc-icon-check.fc-icon-small, .fc-icon-check.fc-icon-medium, .fc-icon-angle-double-down.fc-icon-small, .fc-icon-angle-double-down.fc-icon-medium, .fc-icon-validation-ok.fc-icon-small, .fc-icon-validation-ok.fc-icon-medium, .fc-icon-validation-nok.fc-icon-small, .fc-icon-validation-nok.fc-icon-medium, .fc-icon-play.fc-icon-small, .fc-icon-play.fc-icon-medium, .fc-icon-pause.fc-icon-small, .fc-icon-pause.fc-icon-medium, .fc-icon-small.fc-announcement-icon.fc-problem, .fc-icon-medium.fc-announcement-icon.fc-problem {
    font-size: 0.875em;
    line-height: 0.07143em;
    vertical-align: 0.05357em;
  }
  .fa-lg, .fc-icon-spinner.fc-icon-large, .fc-icon-copy.fc-icon-large, .fc-icon-trash.fc-icon-large, .fc-icon-edit.fc-icon-large, .fc-icon-select-in-table.fc-icon-large, .fc-icon-chevron.fc-icon-large, .fc-icon-large.fc-icon-select, .fc-icon-plus.fc-icon-large, .fc-icon-danger.fc-icon-large, .fc-icon-caret-down.fc-icon-large, .fc-icon-check.fc-icon-large, .fc-icon-angle-double-down.fc-icon-large, .fc-icon-validation-ok.fc-icon-large, .fc-icon-validation-nok.fc-icon-large, .fc-icon-play.fc-icon-large, .fc-icon-pause.fc-icon-large, .fc-icon-large.fc-announcement-icon.fc-problem {
    font-size: 1.25em;
    line-height: 0.05em;
    vertical-align: -0.075em;
  }
  .fa-xl {
    font-size: 1.5em;
    line-height: 0.04167em;
    vertical-align: -0.125em;
  }
  .fa-2xl {
    font-size: 2em;
    line-height: 0.03125em;
    vertical-align: -0.1875em;
  }
  .fa-fw {
    text-align: center;
    width: 1.25em;
  }
  .fa-ul {
    list-style-type: none;
    margin-left: var(--fa-li-margin, 2.5em);
    padding-left: 0;
  }
  .fa-ul > li {
    position: relative;
  }
  .fa-li {
    left: calc(-1 * var(--fa-li-width, 2em));
    position: absolute;
    text-align: center;
    width: var(--fa-li-width, 2em);
    line-height: inherit;
  }
  .fa-border {
    border-color: var(--fa-border-color, #eee);
    border-radius: var(--fa-border-radius, 0.1em);
    border-style: var(--fa-border-style, solid);
    border-width: var(--fa-border-width, 0.08em);
    padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
  }
  .fa-pull-left {
    float: left;
    margin-right: var(--fa-pull-margin, 0.3em);
  }
  .fa-pull-right {
    float: right;
    margin-left: var(--fa-pull-margin, 0.3em);
  }
  .fa-beat {
    animation-name: fa-beat;
    animation-delay: var(--fa-animation-delay, 0s);
    animation-direction: var(--fa-animation-direction, normal);
    animation-duration: var(--fa-animation-duration, 1s);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    animation-timing-function: var(--fa-animation-timing, ease-in-out);
  }
  .fa-bounce {
    animation-name: fa-bounce;
    animation-delay: var(--fa-animation-delay, 0s);
    animation-direction: var(--fa-animation-direction, normal);
    animation-duration: var(--fa-animation-duration, 1s);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
  }
  .fa-fade {
    animation-name: fa-fade;
    animation-delay: var(--fa-animation-delay, 0s);
    animation-direction: var(--fa-animation-direction, normal);
    animation-duration: var(--fa-animation-duration, 1s);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
  }
  .fa-beat-fade {
    animation-name: fa-beat-fade;
    animation-delay: var(--fa-animation-delay, 0s);
    animation-direction: var(--fa-animation-direction, normal);
    animation-duration: var(--fa-animation-duration, 1s);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
  }
  .fa-flip {
    animation-name: fa-flip;
    animation-delay: var(--fa-animation-delay, 0s);
    animation-direction: var(--fa-animation-direction, normal);
    animation-duration: var(--fa-animation-duration, 1s);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    animation-timing-function: var(--fa-animation-timing, ease-in-out);
  }
  .fa-shake {
    animation-name: fa-shake;
    animation-delay: var(--fa-animation-delay, 0s);
    animation-direction: var(--fa-animation-direction, normal);
    animation-duration: var(--fa-animation-duration, 1s);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    animation-timing-function: var(--fa-animation-timing, linear);
  }
  .fa-spin, .fc-icon-spinner {
    animation-name: fa-spin;
    animation-delay: var(--fa-animation-delay, 0s);
    animation-direction: var(--fa-animation-direction, normal);
    animation-duration: var(--fa-animation-duration, 2s);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    animation-timing-function: var(--fa-animation-timing, linear);
  }
  .fa-spin-reverse {
    --fa-animation-direction: reverse;
  }
  .fa-pulse,
  .fa-spin-pulse {
    animation-name: fa-spin;
    animation-direction: var(--fa-animation-direction, normal);
    animation-duration: var(--fa-animation-duration, 1s);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    animation-timing-function: var(--fa-animation-timing, steps(8));
  }
  @media (prefers-reduced-motion: reduce) {
    .fa-beat,
    .fa-bounce,
    .fa-fade,
    .fa-beat-fade,
    .fa-flip,
    .fa-pulse,
    .fa-shake,
    .fa-spin,
    .fc-icon-spinner,
    .fa-spin-pulse {
      animation-delay: -1ms;
      animation-duration: 1ms;
      animation-iteration-count: 1;
      transition-delay: 0s;
      transition-duration: 0s;
    }
  }
  @keyframes fa-beat {
    0%, 90% {
      transform: scale(1);
    }
    45% {
      transform: scale(var(--fa-beat-scale, 1.25));
    }
  }
  @keyframes fa-bounce {
    0% {
      transform: scale(1, 1) translateY(0);
    }
    10% {
      transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
    }
    30% {
      transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
    }
    50% {
      transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
    }
    57% {
      transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
    }
    64% {
      transform: scale(1, 1) translateY(0);
    }
    100% {
      transform: scale(1, 1) translateY(0);
    }
  }
  @keyframes fa-fade {
    50% {
      opacity: var(--fa-fade-opacity, 0.4);
    }
  }
  @keyframes fa-beat-fade {
    0%, 100% {
      opacity: var(--fa-beat-fade-opacity, 0.4);
      transform: scale(1);
    }
    50% {
      opacity: 1;
      transform: scale(var(--fa-beat-fade-scale, 1.125));
    }
  }
  @keyframes fa-flip {
    50% {
      transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
    }
  }
  @keyframes fa-shake {
    0% {
      transform: rotate(-15deg);
    }
    4% {
      transform: rotate(15deg);
    }
    8%, 24% {
      transform: rotate(-18deg);
    }
    12%, 28% {
      transform: rotate(18deg);
    }
    16% {
      transform: rotate(-22deg);
    }
    20% {
      transform: rotate(22deg);
    }
    32% {
      transform: rotate(-12deg);
    }
    36% {
      transform: rotate(12deg);
    }
    40%, 100% {
      transform: rotate(0deg);
    }
  }
  @keyframes fa-spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .fa-rotate-90 {
    transform: rotate(90deg);
  }
  .fa-rotate-180 {
    transform: rotate(180deg);
  }
  .fa-rotate-270 {
    transform: rotate(270deg);
  }
  .fa-flip-horizontal {
    transform: scale(-1, 1);
  }
  .fa-flip-vertical {
    transform: scale(1, -1);
  }
  .fa-flip-both,
  .fa-flip-horizontal.fa-flip-vertical {
    transform: scale(-1, -1);
  }
  .fa-rotate-by {
    transform: rotate(var(--fa-rotate-angle, 0));
  }
  .fa-stack {
    display: inline-block;
    height: 2em;
    line-height: 2em;
    position: relative;
    vertical-align: middle;
    width: 2.5em;
  }
  .fa-stack-1x,
  .fa-stack-2x {
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: var(--fa-stack-z-index, auto);
  }
  .fa-stack-1x {
    line-height: inherit;
  }
  .fa-stack-2x {
    font-size: 2em;
  }
  .fa-inverse {
    color: var(--fa-inverse, #fff);
  }
  /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  readers do not read off random characters that represent icons */
  .fa-0 {
    --fa: "0";
  }
  .fa-1 {
    --fa: "1";
  }
  .fa-2 {
    --fa: "2";
  }
  .fa-3 {
    --fa: "3";
  }
  .fa-4 {
    --fa: "4";
  }
  .fa-5 {
    --fa: "5";
  }
  .fa-6 {
    --fa: "6";
  }
  .fa-7 {
    --fa: "7";
  }
  .fa-8 {
    --fa: "8";
  }
  .fa-9 {
    --fa: "9";
  }
  .fa-fill-drip {
    --fa: "";
  }
  .fa-arrows-to-circle {
    --fa: "";
  }
  .fa-circle-chevron-right {
    --fa: "";
  }
  .fa-chevron-circle-right {
    --fa: "";
  }
  .fa-at {
    --fa: "@";
  }
  .fa-trash-can {
    --fa: "";
  }
  .fa-trash-alt, .fc-icon-trash {
    --fa: "";
  }
  .fa-text-height {
    --fa: "";
  }
  .fa-user-xmark {
    --fa: "";
  }
  .fa-user-times {
    --fa: "";
  }
  .fa-stethoscope {
    --fa: "";
  }
  .fa-message {
    --fa: "";
  }
  .fa-comment-alt {
    --fa: "";
  }
  .fa-info {
    --fa: "";
  }
  .fa-down-left-and-up-right-to-center {
    --fa: "";
  }
  .fa-compress-alt {
    --fa: "";
  }
  .fa-explosion {
    --fa: "";
  }
  .fa-file-lines {
    --fa: "";
  }
  .fa-file-alt {
    --fa: "";
  }
  .fa-file-text {
    --fa: "";
  }
  .fa-wave-square {
    --fa: "";
  }
  .fa-ring {
    --fa: "";
  }
  .fa-building-un {
    --fa: "";
  }
  .fa-dice-three {
    --fa: "";
  }
  .fa-calendar-days {
    --fa: "";
  }
  .fa-calendar-alt {
    --fa: "";
  }
  .fa-anchor-circle-check {
    --fa: "";
  }
  .fa-building-circle-arrow-right {
    --fa: "";
  }
  .fa-volleyball {
    --fa: "";
  }
  .fa-volleyball-ball {
    --fa: "";
  }
  .fa-arrows-up-to-line {
    --fa: "";
  }
  .fa-sort-down {
    --fa: "";
  }
  .fa-sort-desc {
    --fa: "";
  }
  .fa-circle-minus {
    --fa: "";
  }
  .fa-minus-circle {
    --fa: "";
  }
  .fa-door-open {
    --fa: "";
  }
  .fa-right-from-bracket {
    --fa: "";
  }
  .fa-sign-out-alt {
    --fa: "";
  }
  .fa-atom {
    --fa: "";
  }
  .fa-soap {
    --fa: "";
  }
  .fa-icons {
    --fa: "";
  }
  .fa-heart-music-camera-bolt {
    --fa: "";
  }
  .fa-microphone-lines-slash {
    --fa: "";
  }
  .fa-microphone-alt-slash {
    --fa: "";
  }
  .fa-bridge-circle-check {
    --fa: "";
  }
  .fa-pump-medical {
    --fa: "";
  }
  .fa-fingerprint {
    --fa: "";
  }
  .fa-hand-point-right {
    --fa: "";
  }
  .fa-magnifying-glass-location {
    --fa: "";
  }
  .fa-search-location {
    --fa: "";
  }
  .fa-forward-step {
    --fa: "";
  }
  .fa-step-forward {
    --fa: "";
  }
  .fa-face-smile-beam {
    --fa: "";
  }
  .fa-smile-beam {
    --fa: "";
  }
  .fa-flag-checkered {
    --fa: "";
  }
  .fa-football {
    --fa: "";
  }
  .fa-football-ball {
    --fa: "";
  }
  .fa-school-circle-exclamation {
    --fa: "";
  }
  .fa-crop {
    --fa: "";
  }
  .fa-angles-down {
    --fa: "";
  }
  .fa-angle-double-down, .fc-icon-angle-double-down {
    --fa: "";
  }
  .fa-users-rectangle {
    --fa: "";
  }
  .fa-people-roof {
    --fa: "";
  }
  .fa-people-line {
    --fa: "";
  }
  .fa-beer-mug-empty {
    --fa: "";
  }
  .fa-beer {
    --fa: "";
  }
  .fa-diagram-predecessor {
    --fa: "";
  }
  .fa-arrow-up-long {
    --fa: "";
  }
  .fa-long-arrow-up {
    --fa: "";
  }
  .fa-fire-flame-simple {
    --fa: "";
  }
  .fa-burn {
    --fa: "";
  }
  .fa-person {
    --fa: "";
  }
  .fa-male {
    --fa: "";
  }
  .fa-laptop {
    --fa: "";
  }
  .fa-file-csv {
    --fa: "";
  }
  .fa-menorah {
    --fa: "";
  }
  .fa-truck-plane {
    --fa: "";
  }
  .fa-record-vinyl {
    --fa: "";
  }
  .fa-face-grin-stars {
    --fa: "";
  }
  .fa-grin-stars {
    --fa: "";
  }
  .fa-bong {
    --fa: "";
  }
  .fa-spaghetti-monster-flying {
    --fa: "";
  }
  .fa-pastafarianism {
    --fa: "";
  }
  .fa-arrow-down-up-across-line {
    --fa: "";
  }
  .fa-spoon {
    --fa: "";
  }
  .fa-utensil-spoon {
    --fa: "";
  }
  .fa-jar-wheat {
    --fa: "";
  }
  .fa-envelopes-bulk {
    --fa: "";
  }
  .fa-mail-bulk {
    --fa: "";
  }
  .fa-file-circle-exclamation {
    --fa: "";
  }
  .fa-circle-h {
    --fa: "";
  }
  .fa-hospital-symbol {
    --fa: "";
  }
  .fa-pager {
    --fa: "";
  }
  .fa-address-book {
    --fa: "";
  }
  .fa-contact-book {
    --fa: "";
  }
  .fa-strikethrough {
    --fa: "";
  }
  .fa-k {
    --fa: "K";
  }
  .fa-landmark-flag {
    --fa: "";
  }
  .fa-pencil {
    --fa: "";
  }
  .fa-pencil-alt, .fc-icon-edit {
    --fa: "";
  }
  .fa-backward {
    --fa: "";
  }
  .fa-caret-right {
    --fa: "";
  }
  .fa-comments {
    --fa: "";
  }
  .fa-paste {
    --fa: "";
  }
  .fa-file-clipboard {
    --fa: "";
  }
  .fa-code-pull-request {
    --fa: "";
  }
  .fa-clipboard-list {
    --fa: "";
  }
  .fa-truck-ramp-box {
    --fa: "";
  }
  .fa-truck-loading {
    --fa: "";
  }
  .fa-user-check {
    --fa: "";
  }
  .fa-vial-virus {
    --fa: "";
  }
  .fa-sheet-plastic {
    --fa: "";
  }
  .fa-blog {
    --fa: "";
  }
  .fa-user-ninja {
    --fa: "";
  }
  .fa-person-arrow-up-from-line {
    --fa: "";
  }
  .fa-scroll-torah {
    --fa: "";
  }
  .fa-torah {
    --fa: "";
  }
  .fa-broom-ball {
    --fa: "";
  }
  .fa-quidditch {
    --fa: "";
  }
  .fa-quidditch-broom-ball {
    --fa: "";
  }
  .fa-toggle-off {
    --fa: "";
  }
  .fa-box-archive {
    --fa: "";
  }
  .fa-archive {
    --fa: "";
  }
  .fa-person-drowning {
    --fa: "";
  }
  .fa-arrow-down-9-1 {
    --fa: "";
  }
  .fa-sort-numeric-desc {
    --fa: "";
  }
  .fa-sort-numeric-down-alt {
    --fa: "";
  }
  .fa-face-grin-tongue-squint {
    --fa: "";
  }
  .fa-grin-tongue-squint {
    --fa: "";
  }
  .fa-spray-can {
    --fa: "";
  }
  .fa-truck-monster {
    --fa: "";
  }
  .fa-w {
    --fa: "W";
  }
  .fa-earth-africa {
    --fa: "";
  }
  .fa-globe-africa {
    --fa: "";
  }
  .fa-rainbow {
    --fa: "";
  }
  .fa-circle-notch {
    --fa: "";
  }
  .fa-tablet-screen-button {
    --fa: "";
  }
  .fa-tablet-alt {
    --fa: "";
  }
  .fa-paw {
    --fa: "";
  }
  .fa-cloud {
    --fa: "";
  }
  .fa-trowel-bricks {
    --fa: "";
  }
  .fa-face-flushed {
    --fa: "";
  }
  .fa-flushed {
    --fa: "";
  }
  .fa-hospital-user {
    --fa: "";
  }
  .fa-tent-arrow-left-right {
    --fa: "";
  }
  .fa-gavel {
    --fa: "";
  }
  .fa-legal {
    --fa: "";
  }
  .fa-binoculars {
    --fa: "";
  }
  .fa-microphone-slash {
    --fa: "";
  }
  .fa-box-tissue {
    --fa: "";
  }
  .fa-motorcycle {
    --fa: "";
  }
  .fa-bell-concierge {
    --fa: "";
  }
  .fa-concierge-bell {
    --fa: "";
  }
  .fa-pen-ruler {
    --fa: "";
  }
  .fa-pencil-ruler {
    --fa: "";
  }
  .fa-people-arrows {
    --fa: "";
  }
  .fa-people-arrows-left-right {
    --fa: "";
  }
  .fa-mars-and-venus-burst {
    --fa: "";
  }
  .fa-square-caret-right {
    --fa: "";
  }
  .fa-caret-square-right {
    --fa: "";
  }
  .fa-scissors {
    --fa: "";
  }
  .fa-cut {
    --fa: "";
  }
  .fa-sun-plant-wilt {
    --fa: "";
  }
  .fa-toilets-portable {
    --fa: "";
  }
  .fa-hockey-puck {
    --fa: "";
  }
  .fa-table {
    --fa: "";
  }
  .fa-magnifying-glass-arrow-right {
    --fa: "";
  }
  .fa-tachograph-digital {
    --fa: "";
  }
  .fa-digital-tachograph {
    --fa: "";
  }
  .fa-users-slash {
    --fa: "";
  }
  .fa-clover {
    --fa: "";
  }
  .fa-reply {
    --fa: "";
  }
  .fa-mail-reply {
    --fa: "";
  }
  .fa-star-and-crescent {
    --fa: "";
  }
  .fa-house-fire {
    --fa: "";
  }
  .fa-square-minus {
    --fa: "";
  }
  .fa-minus-square {
    --fa: "";
  }
  .fa-helicopter {
    --fa: "";
  }
  .fa-compass {
    --fa: "";
  }
  .fa-square-caret-down {
    --fa: "";
  }
  .fa-caret-square-down {
    --fa: "";
  }
  .fa-file-circle-question {
    --fa: "";
  }
  .fa-laptop-code {
    --fa: "";
  }
  .fa-swatchbook {
    --fa: "";
  }
  .fa-prescription-bottle {
    --fa: "";
  }
  .fa-bars {
    --fa: "";
  }
  .fa-navicon {
    --fa: "";
  }
  .fa-people-group {
    --fa: "";
  }
  .fa-hourglass-end {
    --fa: "";
  }
  .fa-hourglass-3 {
    --fa: "";
  }
  .fa-heart-crack {
    --fa: "";
  }
  .fa-heart-broken {
    --fa: "";
  }
  .fa-square-up-right {
    --fa: "";
  }
  .fa-external-link-square-alt {
    --fa: "";
  }
  .fa-face-kiss-beam {
    --fa: "";
  }
  .fa-kiss-beam {
    --fa: "";
  }
  .fa-film {
    --fa: "";
  }
  .fa-ruler-horizontal {
    --fa: "";
  }
  .fa-people-robbery {
    --fa: "";
  }
  .fa-lightbulb {
    --fa: "";
  }
  .fa-caret-left {
    --fa: "";
  }
  .fa-circle-exclamation {
    --fa: "";
  }
  .fa-exclamation-circle, .fc-icon-validation-nok {
    --fa: "";
  }
  .fa-school-circle-xmark {
    --fa: "";
  }
  .fa-arrow-right-from-bracket {
    --fa: "";
  }
  .fa-sign-out {
    --fa: "";
  }
  .fa-circle-chevron-down {
    --fa: "";
  }
  .fa-chevron-circle-down {
    --fa: "";
  }
  .fa-unlock-keyhole {
    --fa: "";
  }
  .fa-unlock-alt {
    --fa: "";
  }
  .fa-cloud-showers-heavy {
    --fa: "";
  }
  .fa-headphones-simple {
    --fa: "";
  }
  .fa-headphones-alt {
    --fa: "";
  }
  .fa-sitemap {
    --fa: "";
  }
  .fa-circle-dollar-to-slot {
    --fa: "";
  }
  .fa-donate {
    --fa: "";
  }
  .fa-memory {
    --fa: "";
  }
  .fa-road-spikes {
    --fa: "";
  }
  .fa-fire-burner {
    --fa: "";
  }
  .fa-flag {
    --fa: "";
  }
  .fa-hanukiah {
    --fa: "";
  }
  .fa-feather {
    --fa: "";
  }
  .fa-volume-low {
    --fa: "";
  }
  .fa-volume-down {
    --fa: "";
  }
  .fa-comment-slash {
    --fa: "";
  }
  .fa-cloud-sun-rain {
    --fa: "";
  }
  .fa-compress {
    --fa: "";
  }
  .fa-wheat-awn {
    --fa: "";
  }
  .fa-wheat-alt {
    --fa: "";
  }
  .fa-ankh {
    --fa: "";
  }
  .fa-hands-holding-child {
    --fa: "";
  }
  .fa-asterisk {
    --fa: "*";
  }
  .fa-square-check {
    --fa: "";
  }
  .fa-check-square {
    --fa: "";
  }
  .fa-peseta-sign {
    --fa: "";
  }
  .fa-heading {
    --fa: "";
  }
  .fa-header {
    --fa: "";
  }
  .fa-ghost {
    --fa: "";
  }
  .fa-list {
    --fa: "";
  }
  .fa-list-squares {
    --fa: "";
  }
  .fa-square-phone-flip {
    --fa: "";
  }
  .fa-phone-square-alt {
    --fa: "";
  }
  .fa-cart-plus {
    --fa: "";
  }
  .fa-gamepad {
    --fa: "";
  }
  .fa-circle-dot {
    --fa: "";
  }
  .fa-dot-circle {
    --fa: "";
  }
  .fa-face-dizzy {
    --fa: "";
  }
  .fa-dizzy {
    --fa: "";
  }
  .fa-egg {
    --fa: "";
  }
  .fa-house-medical-circle-xmark {
    --fa: "";
  }
  .fa-campground {
    --fa: "";
  }
  .fa-folder-plus {
    --fa: "";
  }
  .fa-futbol {
    --fa: "";
  }
  .fa-futbol-ball {
    --fa: "";
  }
  .fa-soccer-ball {
    --fa: "";
  }
  .fa-paintbrush {
    --fa: "";
  }
  .fa-paint-brush {
    --fa: "";
  }
  .fa-lock {
    --fa: "";
  }
  .fa-gas-pump {
    --fa: "";
  }
  .fa-hot-tub-person {
    --fa: "";
  }
  .fa-hot-tub {
    --fa: "";
  }
  .fa-map-location {
    --fa: "";
  }
  .fa-map-marked {
    --fa: "";
  }
  .fa-house-flood-water {
    --fa: "";
  }
  .fa-tree {
    --fa: "";
  }
  .fa-bridge-lock {
    --fa: "";
  }
  .fa-sack-dollar {
    --fa: "";
  }
  .fa-pen-to-square {
    --fa: "";
  }
  .fa-edit {
    --fa: "";
  }
  .fa-car-side {
    --fa: "";
  }
  .fa-share-nodes {
    --fa: "";
  }
  .fa-share-alt {
    --fa: "";
  }
  .fa-heart-circle-minus {
    --fa: "";
  }
  .fa-hourglass-half {
    --fa: "";
  }
  .fa-hourglass-2 {
    --fa: "";
  }
  .fa-microscope {
    --fa: "";
  }
  .fa-sink {
    --fa: "";
  }
  .fa-bag-shopping {
    --fa: "";
  }
  .fa-shopping-bag {
    --fa: "";
  }
  .fa-arrow-down-z-a {
    --fa: "";
  }
  .fa-sort-alpha-desc {
    --fa: "";
  }
  .fa-sort-alpha-down-alt {
    --fa: "";
  }
  .fa-mitten {
    --fa: "";
  }
  .fa-person-rays {
    --fa: "";
  }
  .fa-users {
    --fa: "";
  }
  .fa-eye-slash {
    --fa: "";
  }
  .fa-flask-vial {
    --fa: "";
  }
  .fa-hand {
    --fa: "";
  }
  .fa-hand-paper {
    --fa: "";
  }
  .fa-om {
    --fa: "";
  }
  .fa-worm {
    --fa: "";
  }
  .fa-house-circle-xmark {
    --fa: "";
  }
  .fa-plug {
    --fa: "";
  }
  .fa-chevron-up {
    --fa: "";
  }
  .fa-hand-spock {
    --fa: "";
  }
  .fa-stopwatch {
    --fa: "";
  }
  .fa-face-kiss {
    --fa: "";
  }
  .fa-kiss {
    --fa: "";
  }
  .fa-bridge-circle-xmark {
    --fa: "";
  }
  .fa-face-grin-tongue {
    --fa: "";
  }
  .fa-grin-tongue {
    --fa: "";
  }
  .fa-chess-bishop {
    --fa: "";
  }
  .fa-face-grin-wink {
    --fa: "";
  }
  .fa-grin-wink {
    --fa: "";
  }
  .fa-ear-deaf {
    --fa: "";
  }
  .fa-deaf {
    --fa: "";
  }
  .fa-deafness {
    --fa: "";
  }
  .fa-hard-of-hearing {
    --fa: "";
  }
  .fa-road-circle-check {
    --fa: "";
  }
  .fa-dice-five {
    --fa: "";
  }
  .fa-square-rss {
    --fa: "";
  }
  .fa-rss-square {
    --fa: "";
  }
  .fa-land-mine-on {
    --fa: "";
  }
  .fa-i-cursor {
    --fa: "";
  }
  .fa-stamp {
    --fa: "";
  }
  .fa-stairs {
    --fa: "";
  }
  .fa-i {
    --fa: "I";
  }
  .fa-hryvnia-sign {
    --fa: "";
  }
  .fa-hryvnia {
    --fa: "";
  }
  .fa-pills {
    --fa: "";
  }
  .fa-face-grin-wide {
    --fa: "";
  }
  .fa-grin-alt {
    --fa: "";
  }
  .fa-tooth {
    --fa: "";
  }
  .fa-v {
    --fa: "V";
  }
  .fa-bangladeshi-taka-sign {
    --fa: "";
  }
  .fa-bicycle {
    --fa: "";
  }
  .fa-staff-snake {
    --fa: "";
  }
  .fa-rod-asclepius {
    --fa: "";
  }
  .fa-rod-snake {
    --fa: "";
  }
  .fa-staff-aesculapius {
    --fa: "";
  }
  .fa-head-side-cough-slash {
    --fa: "";
  }
  .fa-truck-medical {
    --fa: "";
  }
  .fa-ambulance {
    --fa: "";
  }
  .fa-wheat-awn-circle-exclamation {
    --fa: "";
  }
  .fa-snowman {
    --fa: "";
  }
  .fa-mortar-pestle {
    --fa: "";
  }
  .fa-road-barrier {
    --fa: "";
  }
  .fa-school {
    --fa: "";
  }
  .fa-igloo {
    --fa: "";
  }
  .fa-joint {
    --fa: "";
  }
  .fa-angle-right {
    --fa: "";
  }
  .fa-horse {
    --fa: "";
  }
  .fa-q {
    --fa: "Q";
  }
  .fa-g {
    --fa: "G";
  }
  .fa-notes-medical {
    --fa: "";
  }
  .fa-temperature-half {
    --fa: "";
  }
  .fa-temperature-2 {
    --fa: "";
  }
  .fa-thermometer-2 {
    --fa: "";
  }
  .fa-thermometer-half {
    --fa: "";
  }
  .fa-dong-sign {
    --fa: "";
  }
  .fa-capsules {
    --fa: "";
  }
  .fa-poo-storm {
    --fa: "";
  }
  .fa-poo-bolt {
    --fa: "";
  }
  .fa-face-frown-open {
    --fa: "";
  }
  .fa-frown-open {
    --fa: "";
  }
  .fa-hand-point-up {
    --fa: "";
  }
  .fa-money-bill {
    --fa: "";
  }
  .fa-bookmark {
    --fa: "";
  }
  .fa-align-justify {
    --fa: "";
  }
  .fa-umbrella-beach {
    --fa: "";
  }
  .fa-helmet-un {
    --fa: "";
  }
  .fa-bullseye {
    --fa: "";
  }
  .fa-bacon {
    --fa: "";
  }
  .fa-hand-point-down {
    --fa: "";
  }
  .fa-arrow-up-from-bracket {
    --fa: "";
  }
  .fa-folder {
    --fa: "";
  }
  .fa-folder-blank {
    --fa: "";
  }
  .fa-file-waveform {
    --fa: "";
  }
  .fa-file-medical-alt {
    --fa: "";
  }
  .fa-radiation {
    --fa: "";
  }
  .fa-chart-simple {
    --fa: "";
  }
  .fa-mars-stroke {
    --fa: "";
  }
  .fa-vial {
    --fa: "";
  }
  .fa-gauge {
    --fa: "";
  }
  .fa-dashboard {
    --fa: "";
  }
  .fa-gauge-med {
    --fa: "";
  }
  .fa-tachometer-alt-average {
    --fa: "";
  }
  .fa-wand-magic-sparkles {
    --fa: "";
  }
  .fa-magic-wand-sparkles {
    --fa: "";
  }
  .fa-e {
    --fa: "E";
  }
  .fa-pen-clip {
    --fa: "";
  }
  .fa-pen-alt {
    --fa: "";
  }
  .fa-bridge-circle-exclamation {
    --fa: "";
  }
  .fa-user {
    --fa: "";
  }
  .fa-school-circle-check {
    --fa: "";
  }
  .fa-dumpster {
    --fa: "";
  }
  .fa-van-shuttle {
    --fa: "";
  }
  .fa-shuttle-van {
    --fa: "";
  }
  .fa-building-user {
    --fa: "";
  }
  .fa-square-caret-left {
    --fa: "";
  }
  .fa-caret-square-left {
    --fa: "";
  }
  .fa-highlighter {
    --fa: "";
  }
  .fa-key {
    --fa: "";
  }
  .fa-bullhorn {
    --fa: "";
  }
  .fa-globe {
    --fa: "";
  }
  .fa-synagogue {
    --fa: "";
  }
  .fa-person-half-dress {
    --fa: "";
  }
  .fa-road-bridge {
    --fa: "";
  }
  .fa-location-arrow {
    --fa: "";
  }
  .fa-c {
    --fa: "C";
  }
  .fa-tablet-button {
    --fa: "";
  }
  .fa-building-lock {
    --fa: "";
  }
  .fa-pizza-slice {
    --fa: "";
  }
  .fa-money-bill-wave {
    --fa: "";
  }
  .fa-chart-area {
    --fa: "";
  }
  .fa-area-chart {
    --fa: "";
  }
  .fa-house-flag {
    --fa: "";
  }
  .fa-person-circle-minus {
    --fa: "";
  }
  .fa-ban {
    --fa: "";
  }
  .fa-cancel {
    --fa: "";
  }
  .fa-camera-rotate {
    --fa: "";
  }
  .fa-spray-can-sparkles {
    --fa: "";
  }
  .fa-air-freshener {
    --fa: "";
  }
  .fa-star {
    --fa: "";
  }
  .fa-repeat {
    --fa: "";
  }
  .fa-cross {
    --fa: "";
  }
  .fa-box {
    --fa: "";
  }
  .fa-venus-mars {
    --fa: "";
  }
  .fa-arrow-pointer {
    --fa: "";
  }
  .fa-mouse-pointer {
    --fa: "";
  }
  .fa-maximize {
    --fa: "";
  }
  .fa-expand-arrows-alt {
    --fa: "";
  }
  .fa-charging-station {
    --fa: "";
  }
  .fa-shapes {
    --fa: "";
  }
  .fa-triangle-circle-square {
    --fa: "";
  }
  .fa-shuffle {
    --fa: "";
  }
  .fa-random {
    --fa: "";
  }
  .fa-person-running {
    --fa: "";
  }
  .fa-running {
    --fa: "";
  }
  .fa-mobile-retro {
    --fa: "";
  }
  .fa-grip-lines-vertical {
    --fa: "";
  }
  .fa-spider {
    --fa: "";
  }
  .fa-hands-bound {
    --fa: "";
  }
  .fa-file-invoice-dollar {
    --fa: "";
  }
  .fa-plane-circle-exclamation {
    --fa: "";
  }
  .fa-x-ray {
    --fa: "";
  }
  .fa-spell-check {
    --fa: "";
  }
  .fa-slash {
    --fa: "";
  }
  .fa-computer-mouse {
    --fa: "";
  }
  .fa-mouse {
    --fa: "";
  }
  .fa-arrow-right-to-bracket {
    --fa: "";
  }
  .fa-sign-in {
    --fa: "";
  }
  .fa-shop-slash {
    --fa: "";
  }
  .fa-store-alt-slash {
    --fa: "";
  }
  .fa-server {
    --fa: "";
  }
  .fa-virus-covid-slash {
    --fa: "";
  }
  .fa-shop-lock {
    --fa: "";
  }
  .fa-hourglass-start {
    --fa: "";
  }
  .fa-hourglass-1 {
    --fa: "";
  }
  .fa-blender-phone {
    --fa: "";
  }
  .fa-building-wheat {
    --fa: "";
  }
  .fa-person-breastfeeding {
    --fa: "";
  }
  .fa-right-to-bracket {
    --fa: "";
  }
  .fa-sign-in-alt {
    --fa: "";
  }
  .fa-venus {
    --fa: "";
  }
  .fa-passport {
    --fa: "";
  }
  .fa-thumbtack-slash {
    --fa: "";
  }
  .fa-thumb-tack-slash {
    --fa: "";
  }
  .fa-heart-pulse {
    --fa: "";
  }
  .fa-heartbeat {
    --fa: "";
  }
  .fa-people-carry-box {
    --fa: "";
  }
  .fa-people-carry {
    --fa: "";
  }
  .fa-temperature-high {
    --fa: "";
  }
  .fa-microchip {
    --fa: "";
  }
  .fa-crown {
    --fa: "";
  }
  .fa-weight-hanging {
    --fa: "";
  }
  .fa-xmarks-lines {
    --fa: "";
  }
  .fa-file-prescription {
    --fa: "";
  }
  .fa-weight-scale {
    --fa: "";
  }
  .fa-weight {
    --fa: "";
  }
  .fa-user-group {
    --fa: "";
  }
  .fa-user-friends {
    --fa: "";
  }
  .fa-arrow-up-a-z {
    --fa: "";
  }
  .fa-sort-alpha-up {
    --fa: "";
  }
  .fa-chess-knight {
    --fa: "";
  }
  .fa-face-laugh-squint {
    --fa: "";
  }
  .fa-laugh-squint {
    --fa: "";
  }
  .fa-wheelchair {
    --fa: "";
  }
  .fa-circle-arrow-up {
    --fa: "";
  }
  .fa-arrow-circle-up {
    --fa: "";
  }
  .fa-toggle-on {
    --fa: "";
  }
  .fa-person-walking {
    --fa: "";
  }
  .fa-walking {
    --fa: "";
  }
  .fa-l {
    --fa: "L";
  }
  .fa-fire {
    --fa: "";
  }
  .fa-bed-pulse {
    --fa: "";
  }
  .fa-procedures {
    --fa: "";
  }
  .fa-shuttle-space {
    --fa: "";
  }
  .fa-space-shuttle {
    --fa: "";
  }
  .fa-face-laugh {
    --fa: "";
  }
  .fa-laugh {
    --fa: "";
  }
  .fa-folder-open {
    --fa: "";
  }
  .fa-heart-circle-plus {
    --fa: "";
  }
  .fa-code-fork {
    --fa: "";
  }
  .fa-city {
    --fa: "";
  }
  .fa-microphone-lines {
    --fa: "";
  }
  .fa-microphone-alt {
    --fa: "";
  }
  .fa-pepper-hot {
    --fa: "";
  }
  .fa-unlock {
    --fa: "";
  }
  .fa-colon-sign {
    --fa: "";
  }
  .fa-headset {
    --fa: "";
  }
  .fa-store-slash {
    --fa: "";
  }
  .fa-road-circle-xmark {
    --fa: "";
  }
  .fa-user-minus {
    --fa: "";
  }
  .fa-mars-stroke-up {
    --fa: "";
  }
  .fa-mars-stroke-v {
    --fa: "";
  }
  .fa-champagne-glasses {
    --fa: "";
  }
  .fa-glass-cheers {
    --fa: "";
  }
  .fa-clipboard {
    --fa: "";
  }
  .fa-house-circle-exclamation {
    --fa: "";
  }
  .fa-file-arrow-up {
    --fa: "";
  }
  .fa-file-upload {
    --fa: "";
  }
  .fa-wifi {
    --fa: "";
  }
  .fa-wifi-3 {
    --fa: "";
  }
  .fa-wifi-strong {
    --fa: "";
  }
  .fa-bath {
    --fa: "";
  }
  .fa-bathtub {
    --fa: "";
  }
  .fa-underline {
    --fa: "";
  }
  .fa-user-pen {
    --fa: "";
  }
  .fa-user-edit {
    --fa: "";
  }
  .fa-signature {
    --fa: "";
  }
  .fa-stroopwafel {
    --fa: "";
  }
  .fa-bold {
    --fa: "";
  }
  .fa-anchor-lock {
    --fa: "";
  }
  .fa-building-ngo {
    --fa: "";
  }
  .fa-manat-sign {
    --fa: "";
  }
  .fa-not-equal {
    --fa: "";
  }
  .fa-border-top-left {
    --fa: "";
  }
  .fa-border-style {
    --fa: "";
  }
  .fa-map-location-dot {
    --fa: "";
  }
  .fa-map-marked-alt {
    --fa: "";
  }
  .fa-jedi {
    --fa: "";
  }
  .fa-square-poll-vertical {
    --fa: "";
  }
  .fa-poll {
    --fa: "";
  }
  .fa-mug-hot {
    --fa: "";
  }
  .fa-car-battery {
    --fa: "";
  }
  .fa-battery-car {
    --fa: "";
  }
  .fa-gift {
    --fa: "";
  }
  .fa-dice-two {
    --fa: "";
  }
  .fa-chess-queen {
    --fa: "";
  }
  .fa-glasses {
    --fa: "";
  }
  .fa-chess-board {
    --fa: "";
  }
  .fa-building-circle-check {
    --fa: "";
  }
  .fa-person-chalkboard {
    --fa: "";
  }
  .fa-mars-stroke-right {
    --fa: "";
  }
  .fa-mars-stroke-h {
    --fa: "";
  }
  .fa-hand-back-fist {
    --fa: "";
  }
  .fa-hand-rock {
    --fa: "";
  }
  .fa-square-caret-up {
    --fa: "";
  }
  .fa-caret-square-up {
    --fa: "";
  }
  .fa-cloud-showers-water {
    --fa: "";
  }
  .fa-chart-bar {
    --fa: "";
  }
  .fa-bar-chart {
    --fa: "";
  }
  .fa-hands-bubbles {
    --fa: "";
  }
  .fa-hands-wash {
    --fa: "";
  }
  .fa-less-than-equal {
    --fa: "";
  }
  .fa-train {
    --fa: "";
  }
  .fa-eye-low-vision {
    --fa: "";
  }
  .fa-low-vision {
    --fa: "";
  }
  .fa-crow {
    --fa: "";
  }
  .fa-sailboat {
    --fa: "";
  }
  .fa-window-restore {
    --fa: "";
  }
  .fa-square-plus {
    --fa: "";
  }
  .fa-plus-square {
    --fa: "";
  }
  .fa-torii-gate {
    --fa: "";
  }
  .fa-frog {
    --fa: "";
  }
  .fa-bucket {
    --fa: "";
  }
  .fa-image {
    --fa: "";
  }
  .fa-microphone {
    --fa: "";
  }
  .fa-cow {
    --fa: "";
  }
  .fa-caret-up {
    --fa: "";
  }
  .fa-screwdriver {
    --fa: "";
  }
  .fa-folder-closed {
    --fa: "";
  }
  .fa-house-tsunami {
    --fa: "";
  }
  .fa-square-nfi {
    --fa: "";
  }
  .fa-arrow-up-from-ground-water {
    --fa: "";
  }
  .fa-martini-glass {
    --fa: "";
  }
  .fa-glass-martini-alt {
    --fa: "";
  }
  .fa-square-binary {
    --fa: "";
  }
  .fa-rotate-left {
    --fa: "";
  }
  .fa-rotate-back {
    --fa: "";
  }
  .fa-rotate-backward {
    --fa: "";
  }
  .fa-undo-alt {
    --fa: "";
  }
  .fa-table-columns {
    --fa: "";
  }
  .fa-columns {
    --fa: "";
  }
  .fa-lemon {
    --fa: "";
  }
  .fa-head-side-mask {
    --fa: "";
  }
  .fa-handshake {
    --fa: "";
  }
  .fa-gem {
    --fa: "";
  }
  .fa-dolly {
    --fa: "";
  }
  .fa-dolly-box {
    --fa: "";
  }
  .fa-smoking {
    --fa: "";
  }
  .fa-minimize {
    --fa: "";
  }
  .fa-compress-arrows-alt {
    --fa: "";
  }
  .fa-monument {
    --fa: "";
  }
  .fa-snowplow {
    --fa: "";
  }
  .fa-angles-right {
    --fa: "";
  }
  .fa-angle-double-right {
    --fa: "";
  }
  .fa-cannabis {
    --fa: "";
  }
  .fa-circle-play {
    --fa: "";
  }
  .fa-play-circle {
    --fa: "";
  }
  .fa-tablets {
    --fa: "";
  }
  .fa-ethernet {
    --fa: "";
  }
  .fa-euro-sign {
    --fa: "";
  }
  .fa-eur {
    --fa: "";
  }
  .fa-euro {
    --fa: "";
  }
  .fa-chair {
    --fa: "";
  }
  .fa-circle-check {
    --fa: "";
  }
  .fa-check-circle, .fc-icon-validation-ok {
    --fa: "";
  }
  .fa-circle-stop {
    --fa: "";
  }
  .fa-stop-circle {
    --fa: "";
  }
  .fa-compass-drafting {
    --fa: "";
  }
  .fa-drafting-compass {
    --fa: "";
  }
  .fa-plate-wheat {
    --fa: "";
  }
  .fa-icicles {
    --fa: "";
  }
  .fa-person-shelter {
    --fa: "";
  }
  .fa-neuter {
    --fa: "";
  }
  .fa-id-badge {
    --fa: "";
  }
  .fa-marker {
    --fa: "";
  }
  .fa-face-laugh-beam {
    --fa: "";
  }
  .fa-laugh-beam {
    --fa: "";
  }
  .fa-helicopter-symbol {
    --fa: "";
  }
  .fa-universal-access {
    --fa: "";
  }
  .fa-circle-chevron-up {
    --fa: "";
  }
  .fa-chevron-circle-up {
    --fa: "";
  }
  .fa-lari-sign {
    --fa: "";
  }
  .fa-volcano {
    --fa: "";
  }
  .fa-person-walking-dashed-line-arrow-right {
    --fa: "";
  }
  .fa-sterling-sign {
    --fa: "";
  }
  .fa-gbp {
    --fa: "";
  }
  .fa-pound-sign {
    --fa: "";
  }
  .fa-viruses {
    --fa: "";
  }
  .fa-square-person-confined {
    --fa: "";
  }
  .fa-user-tie {
    --fa: "";
  }
  .fa-arrow-down-long {
    --fa: "";
  }
  .fa-long-arrow-down {
    --fa: "";
  }
  .fa-tent-arrow-down-to-line {
    --fa: "";
  }
  .fa-certificate {
    --fa: "";
  }
  .fa-reply-all {
    --fa: "";
  }
  .fa-mail-reply-all {
    --fa: "";
  }
  .fa-suitcase {
    --fa: "";
  }
  .fa-person-skating {
    --fa: "";
  }
  .fa-skating {
    --fa: "";
  }
  .fa-filter-circle-dollar {
    --fa: "";
  }
  .fa-funnel-dollar {
    --fa: "";
  }
  .fa-camera-retro {
    --fa: "";
  }
  .fa-circle-arrow-down {
    --fa: "";
  }
  .fa-arrow-circle-down {
    --fa: "";
  }
  .fa-file-import {
    --fa: "";
  }
  .fa-arrow-right-to-file {
    --fa: "";
  }
  .fa-square-arrow-up-right {
    --fa: "";
  }
  .fa-external-link-square {
    --fa: "";
  }
  .fa-box-open {
    --fa: "";
  }
  .fa-scroll {
    --fa: "";
  }
  .fa-spa {
    --fa: "";
  }
  .fa-location-pin-lock {
    --fa: "";
  }
  .fa-pause, .fc-icon-pause {
    --fa: "";
  }
  .fa-hill-avalanche {
    --fa: "";
  }
  .fa-temperature-empty {
    --fa: "";
  }
  .fa-temperature-0 {
    --fa: "";
  }
  .fa-thermometer-0 {
    --fa: "";
  }
  .fa-thermometer-empty {
    --fa: "";
  }
  .fa-bomb {
    --fa: "";
  }
  .fa-registered {
    --fa: "";
  }
  .fa-address-card {
    --fa: "";
  }
  .fa-contact-card {
    --fa: "";
  }
  .fa-vcard {
    --fa: "";
  }
  .fa-scale-unbalanced-flip {
    --fa: "";
  }
  .fa-balance-scale-right {
    --fa: "";
  }
  .fa-subscript {
    --fa: "";
  }
  .fa-diamond-turn-right {
    --fa: "";
  }
  .fa-directions {
    --fa: "";
  }
  .fa-burst {
    --fa: "";
  }
  .fa-house-laptop {
    --fa: "";
  }
  .fa-laptop-house {
    --fa: "";
  }
  .fa-face-tired {
    --fa: "";
  }
  .fa-tired {
    --fa: "";
  }
  .fa-money-bills {
    --fa: "";
  }
  .fa-smog {
    --fa: "";
  }
  .fa-crutch {
    --fa: "";
  }
  .fa-cloud-arrow-up {
    --fa: "";
  }
  .fa-cloud-upload {
    --fa: "";
  }
  .fa-cloud-upload-alt {
    --fa: "";
  }
  .fa-palette {
    --fa: "";
  }
  .fa-arrows-turn-right {
    --fa: "";
  }
  .fa-vest {
    --fa: "";
  }
  .fa-ferry {
    --fa: "";
  }
  .fa-arrows-down-to-people {
    --fa: "";
  }
  .fa-seedling {
    --fa: "";
  }
  .fa-sprout {
    --fa: "";
  }
  .fa-left-right {
    --fa: "";
  }
  .fa-arrows-alt-h {
    --fa: "";
  }
  .fa-boxes-packing {
    --fa: "";
  }
  .fa-circle-arrow-left {
    --fa: "";
  }
  .fa-arrow-circle-left {
    --fa: "";
  }
  .fa-group-arrows-rotate {
    --fa: "";
  }
  .fa-bowl-food {
    --fa: "";
  }
  .fa-candy-cane {
    --fa: "";
  }
  .fa-arrow-down-wide-short {
    --fa: "";
  }
  .fa-sort-amount-asc {
    --fa: "";
  }
  .fa-sort-amount-down {
    --fa: "";
  }
  .fa-cloud-bolt {
    --fa: "";
  }
  .fa-thunderstorm {
    --fa: "";
  }
  .fa-text-slash {
    --fa: "";
  }
  .fa-remove-format {
    --fa: "";
  }
  .fa-face-smile-wink {
    --fa: "";
  }
  .fa-smile-wink {
    --fa: "";
  }
  .fa-file-word {
    --fa: "";
  }
  .fa-file-powerpoint {
    --fa: "";
  }
  .fa-arrows-left-right {
    --fa: "";
  }
  .fa-arrows-h {
    --fa: "";
  }
  .fa-house-lock {
    --fa: "";
  }
  .fa-cloud-arrow-down {
    --fa: "";
  }
  .fa-cloud-download {
    --fa: "";
  }
  .fa-cloud-download-alt {
    --fa: "";
  }
  .fa-children {
    --fa: "";
  }
  .fa-chalkboard {
    --fa: "";
  }
  .fa-blackboard {
    --fa: "";
  }
  .fa-user-large-slash {
    --fa: "";
  }
  .fa-user-alt-slash {
    --fa: "";
  }
  .fa-envelope-open {
    --fa: "";
  }
  .fa-handshake-simple-slash {
    --fa: "";
  }
  .fa-handshake-alt-slash {
    --fa: "";
  }
  .fa-mattress-pillow {
    --fa: "";
  }
  .fa-guarani-sign {
    --fa: "";
  }
  .fa-arrows-rotate {
    --fa: "";
  }
  .fa-refresh {
    --fa: "";
  }
  .fa-sync {
    --fa: "";
  }
  .fa-fire-extinguisher {
    --fa: "";
  }
  .fa-cruzeiro-sign {
    --fa: "";
  }
  .fa-greater-than-equal {
    --fa: "";
  }
  .fa-shield-halved {
    --fa: "";
  }
  .fa-shield-alt {
    --fa: "";
  }
  .fa-book-atlas {
    --fa: "";
  }
  .fa-atlas {
    --fa: "";
  }
  .fa-virus {
    --fa: "";
  }
  .fa-envelope-circle-check {
    --fa: "";
  }
  .fa-layer-group {
    --fa: "";
  }
  .fa-arrows-to-dot {
    --fa: "";
  }
  .fa-archway {
    --fa: "";
  }
  .fa-heart-circle-check {
    --fa: "";
  }
  .fa-house-chimney-crack {
    --fa: "";
  }
  .fa-house-damage {
    --fa: "";
  }
  .fa-file-zipper {
    --fa: "";
  }
  .fa-file-archive {
    --fa: "";
  }
  .fa-square {
    --fa: "";
  }
  .fa-martini-glass-empty {
    --fa: "";
  }
  .fa-glass-martini {
    --fa: "";
  }
  .fa-couch {
    --fa: "";
  }
  .fa-cedi-sign {
    --fa: "";
  }
  .fa-italic {
    --fa: "";
  }
  .fa-table-cells-column-lock {
    --fa: "";
  }
  .fa-church {
    --fa: "";
  }
  .fa-comments-dollar {
    --fa: "";
  }
  .fa-democrat {
    --fa: "";
  }
  .fa-z {
    --fa: "Z";
  }
  .fa-person-skiing {
    --fa: "";
  }
  .fa-skiing {
    --fa: "";
  }
  .fa-road-lock {
    --fa: "";
  }
  .fa-a {
    --fa: "A";
  }
  .fa-temperature-arrow-down {
    --fa: "";
  }
  .fa-temperature-down {
    --fa: "";
  }
  .fa-feather-pointed {
    --fa: "";
  }
  .fa-feather-alt {
    --fa: "";
  }
  .fa-p {
    --fa: "P";
  }
  .fa-snowflake {
    --fa: "";
  }
  .fa-newspaper {
    --fa: "";
  }
  .fa-rectangle-ad {
    --fa: "";
  }
  .fa-ad {
    --fa: "";
  }
  .fa-circle-arrow-right {
    --fa: "";
  }
  .fa-arrow-circle-right {
    --fa: "";
  }
  .fa-filter-circle-xmark {
    --fa: "";
  }
  .fa-locust {
    --fa: "";
  }
  .fa-sort {
    --fa: "";
  }
  .fa-unsorted {
    --fa: "";
  }
  .fa-list-ol {
    --fa: "";
  }
  .fa-list-1-2 {
    --fa: "";
  }
  .fa-list-numeric {
    --fa: "";
  }
  .fa-person-dress-burst {
    --fa: "";
  }
  .fa-money-check-dollar {
    --fa: "";
  }
  .fa-money-check-alt {
    --fa: "";
  }
  .fa-vector-square {
    --fa: "";
  }
  .fa-bread-slice {
    --fa: "";
  }
  .fa-language {
    --fa: "";
  }
  .fa-face-kiss-wink-heart {
    --fa: "";
  }
  .fa-kiss-wink-heart {
    --fa: "";
  }
  .fa-filter {
    --fa: "";
  }
  .fa-question {
    --fa: "?";
  }
  .fa-file-signature {
    --fa: "";
  }
  .fa-up-down-left-right {
    --fa: "";
  }
  .fa-arrows-alt {
    --fa: "";
  }
  .fa-house-chimney-user {
    --fa: "";
  }
  .fa-hand-holding-heart {
    --fa: "";
  }
  .fa-puzzle-piece {
    --fa: "";
  }
  .fa-money-check {
    --fa: "";
  }
  .fa-star-half-stroke {
    --fa: "";
  }
  .fa-star-half-alt {
    --fa: "";
  }
  .fa-code {
    --fa: "";
  }
  .fa-whiskey-glass {
    --fa: "";
  }
  .fa-glass-whiskey {
    --fa: "";
  }
  .fa-building-circle-exclamation {
    --fa: "";
  }
  .fa-magnifying-glass-chart {
    --fa: "";
  }
  .fa-arrow-up-right-from-square {
    --fa: "";
  }
  .fa-external-link {
    --fa: "";
  }
  .fa-cubes-stacked {
    --fa: "";
  }
  .fa-won-sign {
    --fa: "";
  }
  .fa-krw {
    --fa: "";
  }
  .fa-won {
    --fa: "";
  }
  .fa-virus-covid {
    --fa: "";
  }
  .fa-austral-sign {
    --fa: "";
  }
  .fa-f {
    --fa: "F";
  }
  .fa-leaf {
    --fa: "";
  }
  .fa-road {
    --fa: "";
  }
  .fa-taxi {
    --fa: "";
  }
  .fa-cab {
    --fa: "";
  }
  .fa-person-circle-plus {
    --fa: "";
  }
  .fa-chart-pie {
    --fa: "";
  }
  .fa-pie-chart {
    --fa: "";
  }
  .fa-bolt-lightning {
    --fa: "";
  }
  .fa-sack-xmark {
    --fa: "";
  }
  .fa-file-excel {
    --fa: "";
  }
  .fa-file-contract {
    --fa: "";
  }
  .fa-fish-fins {
    --fa: "";
  }
  .fa-building-flag {
    --fa: "";
  }
  .fa-face-grin-beam {
    --fa: "";
  }
  .fa-grin-beam {
    --fa: "";
  }
  .fa-object-ungroup {
    --fa: "";
  }
  .fa-poop {
    --fa: "";
  }
  .fa-location-pin {
    --fa: "";
  }
  .fa-map-marker {
    --fa: "";
  }
  .fa-kaaba {
    --fa: "";
  }
  .fa-toilet-paper {
    --fa: "";
  }
  .fa-helmet-safety {
    --fa: "";
  }
  .fa-hard-hat {
    --fa: "";
  }
  .fa-hat-hard {
    --fa: "";
  }
  .fa-eject {
    --fa: "";
  }
  .fa-circle-right {
    --fa: "";
  }
  .fa-arrow-alt-circle-right {
    --fa: "";
  }
  .fa-plane-circle-check {
    --fa: "";
  }
  .fa-face-rolling-eyes {
    --fa: "";
  }
  .fa-meh-rolling-eyes {
    --fa: "";
  }
  .fa-object-group {
    --fa: "";
  }
  .fa-chart-line {
    --fa: "";
  }
  .fa-line-chart {
    --fa: "";
  }
  .fa-mask-ventilator {
    --fa: "";
  }
  .fa-arrow-right {
    --fa: "";
  }
  .fa-signs-post {
    --fa: "";
  }
  .fa-map-signs {
    --fa: "";
  }
  .fa-cash-register {
    --fa: "";
  }
  .fa-person-circle-question {
    --fa: "";
  }
  .fa-h {
    --fa: "H";
  }
  .fa-tarp {
    --fa: "";
  }
  .fa-screwdriver-wrench {
    --fa: "";
  }
  .fa-tools {
    --fa: "";
  }
  .fa-arrows-to-eye {
    --fa: "";
  }
  .fa-plug-circle-bolt {
    --fa: "";
  }
  .fa-heart {
    --fa: "";
  }
  .fa-mars-and-venus {
    --fa: "";
  }
  .fa-house-user {
    --fa: "";
  }
  .fa-home-user {
    --fa: "";
  }
  .fa-dumpster-fire {
    --fa: "";
  }
  .fa-house-crack {
    --fa: "";
  }
  .fa-martini-glass-citrus {
    --fa: "";
  }
  .fa-cocktail {
    --fa: "";
  }
  .fa-face-surprise {
    --fa: "";
  }
  .fa-surprise {
    --fa: "";
  }
  .fa-bottle-water {
    --fa: "";
  }
  .fa-circle-pause {
    --fa: "";
  }
  .fa-pause-circle {
    --fa: "";
  }
  .fa-toilet-paper-slash {
    --fa: "";
  }
  .fa-apple-whole {
    --fa: "";
  }
  .fa-apple-alt {
    --fa: "";
  }
  .fa-kitchen-set {
    --fa: "";
  }
  .fa-r {
    --fa: "R";
  }
  .fa-temperature-quarter {
    --fa: "";
  }
  .fa-temperature-1 {
    --fa: "";
  }
  .fa-thermometer-1 {
    --fa: "";
  }
  .fa-thermometer-quarter {
    --fa: "";
  }
  .fa-cube {
    --fa: "";
  }
  .fa-bitcoin-sign {
    --fa: "";
  }
  .fa-shield-dog {
    --fa: "";
  }
  .fa-solar-panel {
    --fa: "";
  }
  .fa-lock-open {
    --fa: "";
  }
  .fa-elevator {
    --fa: "";
  }
  .fa-money-bill-transfer {
    --fa: "";
  }
  .fa-money-bill-trend-up {
    --fa: "";
  }
  .fa-house-flood-water-circle-arrow-right {
    --fa: "";
  }
  .fa-square-poll-horizontal {
    --fa: "";
  }
  .fa-poll-h {
    --fa: "";
  }
  .fa-circle {
    --fa: "";
  }
  .fa-backward-fast {
    --fa: "";
  }
  .fa-fast-backward {
    --fa: "";
  }
  .fa-recycle {
    --fa: "";
  }
  .fa-user-astronaut {
    --fa: "";
  }
  .fa-plane-slash {
    --fa: "";
  }
  .fa-trademark {
    --fa: "";
  }
  .fa-basketball {
    --fa: "";
  }
  .fa-basketball-ball {
    --fa: "";
  }
  .fa-satellite-dish {
    --fa: "";
  }
  .fa-circle-up {
    --fa: "";
  }
  .fa-arrow-alt-circle-up {
    --fa: "";
  }
  .fa-mobile-screen-button {
    --fa: "";
  }
  .fa-mobile-alt {
    --fa: "";
  }
  .fa-volume-high {
    --fa: "";
  }
  .fa-volume-up {
    --fa: "";
  }
  .fa-users-rays {
    --fa: "";
  }
  .fa-wallet {
    --fa: "";
  }
  .fa-clipboard-check {
    --fa: "";
  }
  .fa-file-audio {
    --fa: "";
  }
  .fa-burger {
    --fa: "";
  }
  .fa-hamburger {
    --fa: "";
  }
  .fa-wrench {
    --fa: "";
  }
  .fa-bugs {
    --fa: "";
  }
  .fa-rupee-sign {
    --fa: "";
  }
  .fa-rupee {
    --fa: "";
  }
  .fa-file-image {
    --fa: "";
  }
  .fa-circle-question {
    --fa: "";
  }
  .fa-question-circle {
    --fa: "";
  }
  .fa-plane-departure {
    --fa: "";
  }
  .fa-handshake-slash {
    --fa: "";
  }
  .fa-book-bookmark {
    --fa: "";
  }
  .fa-code-branch {
    --fa: "";
  }
  .fa-hat-cowboy {
    --fa: "";
  }
  .fa-bridge {
    --fa: "";
  }
  .fa-phone-flip {
    --fa: "";
  }
  .fa-phone-alt {
    --fa: "";
  }
  .fa-truck-front {
    --fa: "";
  }
  .fa-cat {
    --fa: "";
  }
  .fa-anchor-circle-exclamation {
    --fa: "";
  }
  .fa-truck-field {
    --fa: "";
  }
  .fa-route {
    --fa: "";
  }
  .fa-clipboard-question {
    --fa: "";
  }
  .fa-panorama {
    --fa: "";
  }
  .fa-comment-medical {
    --fa: "";
  }
  .fa-teeth-open {
    --fa: "";
  }
  .fa-file-circle-minus {
    --fa: "";
  }
  .fa-tags {
    --fa: "";
  }
  .fa-wine-glass {
    --fa: "";
  }
  .fa-forward-fast {
    --fa: "";
  }
  .fa-fast-forward {
    --fa: "";
  }
  .fa-face-meh-blank {
    --fa: "";
  }
  .fa-meh-blank {
    --fa: "";
  }
  .fa-square-parking {
    --fa: "";
  }
  .fa-parking {
    --fa: "";
  }
  .fa-house-signal {
    --fa: "";
  }
  .fa-bars-progress {
    --fa: "";
  }
  .fa-tasks-alt {
    --fa: "";
  }
  .fa-faucet-drip {
    --fa: "";
  }
  .fa-cart-flatbed {
    --fa: "";
  }
  .fa-dolly-flatbed {
    --fa: "";
  }
  .fa-ban-smoking {
    --fa: "";
  }
  .fa-smoking-ban {
    --fa: "";
  }
  .fa-terminal {
    --fa: "";
  }
  .fa-mobile-button {
    --fa: "";
  }
  .fa-house-medical-flag {
    --fa: "";
  }
  .fa-basket-shopping {
    --fa: "";
  }
  .fa-shopping-basket {
    --fa: "";
  }
  .fa-tape {
    --fa: "";
  }
  .fa-bus-simple {
    --fa: "";
  }
  .fa-bus-alt {
    --fa: "";
  }
  .fa-eye {
    --fa: "";
  }
  .fa-face-sad-cry {
    --fa: "";
  }
  .fa-sad-cry {
    --fa: "";
  }
  .fa-audio-description {
    --fa: "";
  }
  .fa-person-military-to-person {
    --fa: "";
  }
  .fa-file-shield {
    --fa: "";
  }
  .fa-user-slash {
    --fa: "";
  }
  .fa-pen {
    --fa: "";
  }
  .fa-tower-observation {
    --fa: "";
  }
  .fa-file-code {
    --fa: "";
  }
  .fa-signal {
    --fa: "";
  }
  .fa-signal-5 {
    --fa: "";
  }
  .fa-signal-perfect {
    --fa: "";
  }
  .fa-bus {
    --fa: "";
  }
  .fa-heart-circle-xmark {
    --fa: "";
  }
  .fa-house-chimney {
    --fa: "";
  }
  .fa-home-lg {
    --fa: "";
  }
  .fa-window-maximize {
    --fa: "";
  }
  .fa-face-frown {
    --fa: "";
  }
  .fa-frown {
    --fa: "";
  }
  .fa-prescription {
    --fa: "";
  }
  .fa-shop {
    --fa: "";
  }
  .fa-store-alt {
    --fa: "";
  }
  .fa-floppy-disk {
    --fa: "";
  }
  .fa-save {
    --fa: "";
  }
  .fa-vihara {
    --fa: "";
  }
  .fa-scale-unbalanced {
    --fa: "";
  }
  .fa-balance-scale-left {
    --fa: "";
  }
  .fa-sort-up {
    --fa: "";
  }
  .fa-sort-asc {
    --fa: "";
  }
  .fa-comment-dots {
    --fa: "";
  }
  .fa-commenting {
    --fa: "";
  }
  .fa-plant-wilt {
    --fa: "";
  }
  .fa-diamond {
    --fa: "";
  }
  .fa-face-grin-squint {
    --fa: "";
  }
  .fa-grin-squint {
    --fa: "";
  }
  .fa-hand-holding-dollar {
    --fa: "";
  }
  .fa-hand-holding-usd {
    --fa: "";
  }
  .fa-chart-diagram {
    --fa: "";
  }
  .fa-bacterium {
    --fa: "";
  }
  .fa-hand-pointer {
    --fa: "";
  }
  .fa-drum-steelpan {
    --fa: "";
  }
  .fa-hand-scissors {
    --fa: "";
  }
  .fa-hands-praying {
    --fa: "";
  }
  .fa-praying-hands {
    --fa: "";
  }
  .fa-arrow-rotate-right {
    --fa: "";
  }
  .fa-arrow-right-rotate {
    --fa: "";
  }
  .fa-arrow-rotate-forward {
    --fa: "";
  }
  .fa-redo {
    --fa: "";
  }
  .fa-biohazard {
    --fa: "";
  }
  .fa-location-crosshairs {
    --fa: "";
  }
  .fa-location {
    --fa: "";
  }
  .fa-mars-double {
    --fa: "";
  }
  .fa-child-dress {
    --fa: "";
  }
  .fa-users-between-lines {
    --fa: "";
  }
  .fa-lungs-virus {
    --fa: "";
  }
  .fa-face-grin-tears {
    --fa: "";
  }
  .fa-grin-tears {
    --fa: "";
  }
  .fa-phone {
    --fa: "";
  }
  .fa-calendar-xmark {
    --fa: "";
  }
  .fa-calendar-times {
    --fa: "";
  }
  .fa-child-reaching {
    --fa: "";
  }
  .fa-head-side-virus {
    --fa: "";
  }
  .fa-user-gear {
    --fa: "";
  }
  .fa-user-cog {
    --fa: "";
  }
  .fa-arrow-up-1-9 {
    --fa: "";
  }
  .fa-sort-numeric-up {
    --fa: "";
  }
  .fa-door-closed {
    --fa: "";
  }
  .fa-shield-virus {
    --fa: "";
  }
  .fa-dice-six {
    --fa: "";
  }
  .fa-mosquito-net {
    --fa: "";
  }
  .fa-file-fragment {
    --fa: "";
  }
  .fa-bridge-water {
    --fa: "";
  }
  .fa-person-booth {
    --fa: "";
  }
  .fa-text-width {
    --fa: "";
  }
  .fa-hat-wizard {
    --fa: "";
  }
  .fa-pen-fancy {
    --fa: "";
  }
  .fa-person-digging {
    --fa: "";
  }
  .fa-digging {
    --fa: "";
  }
  .fa-trash {
    --fa: "";
  }
  .fa-gauge-simple {
    --fa: "";
  }
  .fa-gauge-simple-med {
    --fa: "";
  }
  .fa-tachometer-average {
    --fa: "";
  }
  .fa-book-medical {
    --fa: "";
  }
  .fa-poo {
    --fa: "";
  }
  .fa-quote-right {
    --fa: "";
  }
  .fa-quote-right-alt {
    --fa: "";
  }
  .fa-shirt {
    --fa: "";
  }
  .fa-t-shirt {
    --fa: "";
  }
  .fa-tshirt {
    --fa: "";
  }
  .fa-cubes {
    --fa: "";
  }
  .fa-divide {
    --fa: "";
  }
  .fa-tenge-sign {
    --fa: "";
  }
  .fa-tenge {
    --fa: "";
  }
  .fa-headphones {
    --fa: "";
  }
  .fa-hands-holding {
    --fa: "";
  }
  .fa-hands-clapping {
    --fa: "";
  }
  .fa-republican {
    --fa: "";
  }
  .fa-arrow-left {
    --fa: "";
  }
  .fa-person-circle-xmark {
    --fa: "";
  }
  .fa-ruler {
    --fa: "";
  }
  .fa-align-left {
    --fa: "";
  }
  .fa-dice-d6 {
    --fa: "";
  }
  .fa-restroom {
    --fa: "";
  }
  .fa-j {
    --fa: "J";
  }
  .fa-users-viewfinder {
    --fa: "";
  }
  .fa-file-video {
    --fa: "";
  }
  .fa-up-right-from-square {
    --fa: "";
  }
  .fa-external-link-alt {
    --fa: "";
  }
  .fa-table-cells {
    --fa: "";
  }
  .fa-th {
    --fa: "";
  }
  .fa-file-pdf {
    --fa: "";
  }
  .fa-book-bible {
    --fa: "";
  }
  .fa-bible {
    --fa: "";
  }
  .fa-o {
    --fa: "O";
  }
  .fa-suitcase-medical {
    --fa: "";
  }
  .fa-medkit {
    --fa: "";
  }
  .fa-user-secret {
    --fa: "";
  }
  .fa-otter {
    --fa: "";
  }
  .fa-person-dress {
    --fa: "";
  }
  .fa-female {
    --fa: "";
  }
  .fa-comment-dollar {
    --fa: "";
  }
  .fa-business-time {
    --fa: "";
  }
  .fa-briefcase-clock {
    --fa: "";
  }
  .fa-table-cells-large {
    --fa: "";
  }
  .fa-th-large {
    --fa: "";
  }
  .fa-book-tanakh {
    --fa: "";
  }
  .fa-tanakh {
    --fa: "";
  }
  .fa-phone-volume {
    --fa: "";
  }
  .fa-volume-control-phone {
    --fa: "";
  }
  .fa-hat-cowboy-side {
    --fa: "";
  }
  .fa-clipboard-user {
    --fa: "";
  }
  .fa-child {
    --fa: "";
  }
  .fa-lira-sign {
    --fa: "";
  }
  .fa-satellite {
    --fa: "";
  }
  .fa-plane-lock {
    --fa: "";
  }
  .fa-tag {
    --fa: "";
  }
  .fa-comment {
    --fa: "";
  }
  .fa-cake-candles {
    --fa: "";
  }
  .fa-birthday-cake {
    --fa: "";
  }
  .fa-cake {
    --fa: "";
  }
  .fa-envelope {
    --fa: "";
  }
  .fa-angles-up {
    --fa: "";
  }
  .fa-angle-double-up {
    --fa: "";
  }
  .fa-paperclip {
    --fa: "";
  }
  .fa-arrow-right-to-city {
    --fa: "";
  }
  .fa-ribbon {
    --fa: "";
  }
  .fa-lungs {
    --fa: "";
  }
  .fa-arrow-up-9-1 {
    --fa: "";
  }
  .fa-sort-numeric-up-alt {
    --fa: "";
  }
  .fa-litecoin-sign {
    --fa: "";
  }
  .fa-border-none {
    --fa: "";
  }
  .fa-circle-nodes {
    --fa: "";
  }
  .fa-parachute-box {
    --fa: "";
  }
  .fa-indent {
    --fa: "";
  }
  .fa-truck-field-un {
    --fa: "";
  }
  .fa-hourglass {
    --fa: "";
  }
  .fa-hourglass-empty {
    --fa: "";
  }
  .fa-mountain {
    --fa: "";
  }
  .fa-user-doctor {
    --fa: "";
  }
  .fa-user-md {
    --fa: "";
  }
  .fa-circle-info {
    --fa: "";
  }
  .fa-info-circle {
    --fa: "";
  }
  .fa-cloud-meatball {
    --fa: "";
  }
  .fa-camera {
    --fa: "";
  }
  .fa-camera-alt {
    --fa: "";
  }
  .fa-square-virus {
    --fa: "";
  }
  .fa-meteor {
    --fa: "";
  }
  .fa-car-on {
    --fa: "";
  }
  .fa-sleigh {
    --fa: "";
  }
  .fa-arrow-down-1-9 {
    --fa: "";
  }
  .fa-sort-numeric-asc {
    --fa: "";
  }
  .fa-sort-numeric-down {
    --fa: "";
  }
  .fa-hand-holding-droplet {
    --fa: "";
  }
  .fa-hand-holding-water {
    --fa: "";
  }
  .fa-water {
    --fa: "";
  }
  .fa-calendar-check {
    --fa: "";
  }
  .fa-braille {
    --fa: "";
  }
  .fa-prescription-bottle-medical {
    --fa: "";
  }
  .fa-prescription-bottle-alt {
    --fa: "";
  }
  .fa-landmark {
    --fa: "";
  }
  .fa-truck {
    --fa: "";
  }
  .fa-crosshairs {
    --fa: "";
  }
  .fa-person-cane {
    --fa: "";
  }
  .fa-tent {
    --fa: "";
  }
  .fa-vest-patches {
    --fa: "";
  }
  .fa-check-double {
    --fa: "";
  }
  .fa-arrow-down-a-z {
    --fa: "";
  }
  .fa-sort-alpha-asc {
    --fa: "";
  }
  .fa-sort-alpha-down {
    --fa: "";
  }
  .fa-money-bill-wheat {
    --fa: "";
  }
  .fa-cookie {
    --fa: "";
  }
  .fa-arrow-rotate-left {
    --fa: "";
  }
  .fa-arrow-left-rotate {
    --fa: "";
  }
  .fa-arrow-rotate-back {
    --fa: "";
  }
  .fa-arrow-rotate-backward {
    --fa: "";
  }
  .fa-undo {
    --fa: "";
  }
  .fa-hard-drive {
    --fa: "";
  }
  .fa-hdd {
    --fa: "";
  }
  .fa-face-grin-squint-tears {
    --fa: "";
  }
  .fa-grin-squint-tears {
    --fa: "";
  }
  .fa-dumbbell {
    --fa: "";
  }
  .fa-rectangle-list {
    --fa: "";
  }
  .fa-list-alt {
    --fa: "";
  }
  .fa-tarp-droplet {
    --fa: "";
  }
  .fa-house-medical-circle-check {
    --fa: "";
  }
  .fa-person-skiing-nordic {
    --fa: "";
  }
  .fa-skiing-nordic {
    --fa: "";
  }
  .fa-calendar-plus {
    --fa: "";
  }
  .fa-plane-arrival {
    --fa: "";
  }
  .fa-circle-left {
    --fa: "";
  }
  .fa-arrow-alt-circle-left {
    --fa: "";
  }
  .fa-train-subway {
    --fa: "";
  }
  .fa-subway {
    --fa: "";
  }
  .fa-chart-gantt {
    --fa: "";
  }
  .fa-indian-rupee-sign {
    --fa: "";
  }
  .fa-indian-rupee {
    --fa: "";
  }
  .fa-inr {
    --fa: "";
  }
  .fa-crop-simple {
    --fa: "";
  }
  .fa-crop-alt {
    --fa: "";
  }
  .fa-money-bill-1 {
    --fa: "";
  }
  .fa-money-bill-alt {
    --fa: "";
  }
  .fa-left-long {
    --fa: "";
  }
  .fa-long-arrow-alt-left {
    --fa: "";
  }
  .fa-dna {
    --fa: "";
  }
  .fa-virus-slash {
    --fa: "";
  }
  .fa-minus {
    --fa: "";
  }
  .fa-subtract {
    --fa: "";
  }
  .fa-chess {
    --fa: "";
  }
  .fa-arrow-left-long {
    --fa: "";
  }
  .fa-long-arrow-left {
    --fa: "";
  }
  .fa-plug-circle-check {
    --fa: "";
  }
  .fa-street-view {
    --fa: "";
  }
  .fa-franc-sign {
    --fa: "";
  }
  .fa-volume-off {
    --fa: "";
  }
  .fa-hands-asl-interpreting {
    --fa: "";
  }
  .fa-american-sign-language-interpreting {
    --fa: "";
  }
  .fa-asl-interpreting {
    --fa: "";
  }
  .fa-hands-american-sign-language-interpreting {
    --fa: "";
  }
  .fa-gear {
    --fa: "";
  }
  .fa-cog {
    --fa: "";
  }
  .fa-droplet-slash {
    --fa: "";
  }
  .fa-tint-slash {
    --fa: "";
  }
  .fa-mosque {
    --fa: "";
  }
  .fa-mosquito {
    --fa: "";
  }
  .fa-star-of-david {
    --fa: "";
  }
  .fa-person-military-rifle {
    --fa: "";
  }
  .fa-cart-shopping {
    --fa: "";
  }
  .fa-shopping-cart {
    --fa: "";
  }
  .fa-vials {
    --fa: "";
  }
  .fa-plug-circle-plus {
    --fa: "";
  }
  .fa-place-of-worship {
    --fa: "";
  }
  .fa-grip-vertical {
    --fa: "";
  }
  .fa-hexagon-nodes {
    --fa: "";
  }
  .fa-arrow-turn-up {
    --fa: "";
  }
  .fa-level-up {
    --fa: "";
  }
  .fa-u {
    --fa: "U";
  }
  .fa-square-root-variable {
    --fa: "";
  }
  .fa-square-root-alt {
    --fa: "";
  }
  .fa-clock {
    --fa: "";
  }
  .fa-clock-four {
    --fa: "";
  }
  .fa-backward-step {
    --fa: "";
  }
  .fa-step-backward {
    --fa: "";
  }
  .fa-pallet {
    --fa: "";
  }
  .fa-faucet {
    --fa: "";
  }
  .fa-baseball-bat-ball {
    --fa: "";
  }
  .fa-s {
    --fa: "S";
  }
  .fa-timeline {
    --fa: "";
  }
  .fa-keyboard {
    --fa: "";
  }
  .fa-caret-down, .fc-icon-caret-down {
    --fa: "";
  }
  .fa-house-chimney-medical {
    --fa: "";
  }
  .fa-clinic-medical {
    --fa: "";
  }
  .fa-temperature-three-quarters {
    --fa: "";
  }
  .fa-temperature-3 {
    --fa: "";
  }
  .fa-thermometer-3 {
    --fa: "";
  }
  .fa-thermometer-three-quarters {
    --fa: "";
  }
  .fa-mobile-screen {
    --fa: "";
  }
  .fa-mobile-android-alt {
    --fa: "";
  }
  .fa-plane-up {
    --fa: "";
  }
  .fa-piggy-bank {
    --fa: "";
  }
  .fa-battery-half {
    --fa: "";
  }
  .fa-battery-3 {
    --fa: "";
  }
  .fa-mountain-city {
    --fa: "";
  }
  .fa-coins {
    --fa: "";
  }
  .fa-khanda {
    --fa: "";
  }
  .fa-sliders {
    --fa: "";
  }
  .fa-sliders-h {
    --fa: "";
  }
  .fa-folder-tree {
    --fa: "";
  }
  .fa-network-wired {
    --fa: "";
  }
  .fa-map-pin {
    --fa: "";
  }
  .fa-hamsa {
    --fa: "";
  }
  .fa-cent-sign {
    --fa: "";
  }
  .fa-flask {
    --fa: "";
  }
  .fa-person-pregnant {
    --fa: "";
  }
  .fa-wand-sparkles {
    --fa: "";
  }
  .fa-ellipsis-vertical {
    --fa: "";
  }
  .fa-ellipsis-v {
    --fa: "";
  }
  .fa-ticket {
    --fa: "";
  }
  .fa-power-off {
    --fa: "";
  }
  .fa-right-long {
    --fa: "";
  }
  .fa-long-arrow-alt-right {
    --fa: "";
  }
  .fa-flag-usa {
    --fa: "";
  }
  .fa-laptop-file {
    --fa: "";
  }
  .fa-tty {
    --fa: "";
  }
  .fa-teletype {
    --fa: "";
  }
  .fa-diagram-next {
    --fa: "";
  }
  .fa-person-rifle {
    --fa: "";
  }
  .fa-house-medical-circle-exclamation {
    --fa: "";
  }
  .fa-closed-captioning {
    --fa: "";
  }
  .fa-person-hiking {
    --fa: "";
  }
  .fa-hiking {
    --fa: "";
  }
  .fa-venus-double {
    --fa: "";
  }
  .fa-images {
    --fa: "";
  }
  .fa-calculator {
    --fa: "";
  }
  .fa-people-pulling {
    --fa: "";
  }
  .fa-n {
    --fa: "N";
  }
  .fa-cable-car {
    --fa: "";
  }
  .fa-tram {
    --fa: "";
  }
  .fa-cloud-rain {
    --fa: "";
  }
  .fa-building-circle-xmark {
    --fa: "";
  }
  .fa-ship {
    --fa: "";
  }
  .fa-arrows-down-to-line {
    --fa: "";
  }
  .fa-download {
    --fa: "";
  }
  .fa-face-grin {
    --fa: "";
  }
  .fa-grin {
    --fa: "";
  }
  .fa-delete-left {
    --fa: "";
  }
  .fa-backspace {
    --fa: "";
  }
  .fa-eye-dropper {
    --fa: "";
  }
  .fa-eye-dropper-empty {
    --fa: "";
  }
  .fa-eyedropper {
    --fa: "";
  }
  .fa-file-circle-check {
    --fa: "";
  }
  .fa-forward, .fc-icon-select-in-table {
    --fa: "";
  }
  .fa-mobile {
    --fa: "";
  }
  .fa-mobile-android {
    --fa: "";
  }
  .fa-mobile-phone {
    --fa: "";
  }
  .fa-face-meh {
    --fa: "";
  }
  .fa-meh {
    --fa: "";
  }
  .fa-align-center {
    --fa: "";
  }
  .fa-book-skull {
    --fa: "";
  }
  .fa-book-dead {
    --fa: "";
  }
  .fa-id-card {
    --fa: "";
  }
  .fa-drivers-license {
    --fa: "";
  }
  .fa-outdent {
    --fa: "";
  }
  .fa-dedent {
    --fa: "";
  }
  .fa-heart-circle-exclamation {
    --fa: "";
  }
  .fa-house {
    --fa: "";
  }
  .fa-home {
    --fa: "";
  }
  .fa-home-alt {
    --fa: "";
  }
  .fa-home-lg-alt {
    --fa: "";
  }
  .fa-calendar-week {
    --fa: "";
  }
  .fa-laptop-medical {
    --fa: "";
  }
  .fa-b {
    --fa: "B";
  }
  .fa-file-medical {
    --fa: "";
  }
  .fa-dice-one {
    --fa: "";
  }
  .fa-kiwi-bird {
    --fa: "";
  }
  .fa-arrow-right-arrow-left {
    --fa: "";
  }
  .fa-exchange {
    --fa: "";
  }
  .fa-rotate-right {
    --fa: "";
  }
  .fa-redo-alt {
    --fa: "";
  }
  .fa-rotate-forward {
    --fa: "";
  }
  .fa-utensils {
    --fa: "";
  }
  .fa-cutlery {
    --fa: "";
  }
  .fa-arrow-up-wide-short {
    --fa: "";
  }
  .fa-sort-amount-up {
    --fa: "";
  }
  .fa-mill-sign {
    --fa: "";
  }
  .fa-bowl-rice {
    --fa: "";
  }
  .fa-skull {
    --fa: "";
  }
  .fa-tower-broadcast {
    --fa: "";
  }
  .fa-broadcast-tower {
    --fa: "";
  }
  .fa-truck-pickup {
    --fa: "";
  }
  .fa-up-long {
    --fa: "";
  }
  .fa-long-arrow-alt-up {
    --fa: "";
  }
  .fa-stop {
    --fa: "";
  }
  .fa-code-merge {
    --fa: "";
  }
  .fa-upload {
    --fa: "";
  }
  .fa-hurricane {
    --fa: "";
  }
  .fa-mound {
    --fa: "";
  }
  .fa-toilet-portable {
    --fa: "";
  }
  .fa-compact-disc {
    --fa: "";
  }
  .fa-file-arrow-down {
    --fa: "";
  }
  .fa-file-download {
    --fa: "";
  }
  .fa-caravan {
    --fa: "";
  }
  .fa-shield-cat {
    --fa: "";
  }
  .fa-bolt {
    --fa: "";
  }
  .fa-zap {
    --fa: "";
  }
  .fa-glass-water {
    --fa: "";
  }
  .fa-oil-well {
    --fa: "";
  }
  .fa-vault {
    --fa: "";
  }
  .fa-mars {
    --fa: "";
  }
  .fa-toilet {
    --fa: "";
  }
  .fa-plane-circle-xmark {
    --fa: "";
  }
  .fa-yen-sign {
    --fa: "";
  }
  .fa-cny {
    --fa: "";
  }
  .fa-jpy {
    --fa: "";
  }
  .fa-rmb {
    --fa: "";
  }
  .fa-yen {
    --fa: "";
  }
  .fa-ruble-sign {
    --fa: "";
  }
  .fa-rouble {
    --fa: "";
  }
  .fa-rub {
    --fa: "";
  }
  .fa-ruble {
    --fa: "";
  }
  .fa-sun {
    --fa: "";
  }
  .fa-guitar {
    --fa: "";
  }
  .fa-face-laugh-wink {
    --fa: "";
  }
  .fa-laugh-wink {
    --fa: "";
  }
  .fa-horse-head {
    --fa: "";
  }
  .fa-bore-hole {
    --fa: "";
  }
  .fa-industry {
    --fa: "";
  }
  .fa-circle-down {
    --fa: "";
  }
  .fa-arrow-alt-circle-down {
    --fa: "";
  }
  .fa-arrows-turn-to-dots {
    --fa: "";
  }
  .fa-florin-sign {
    --fa: "";
  }
  .fa-arrow-down-short-wide {
    --fa: "";
  }
  .fa-sort-amount-desc {
    --fa: "";
  }
  .fa-sort-amount-down-alt {
    --fa: "";
  }
  .fa-less-than {
    --fa: "<";
  }
  .fa-angle-down {
    --fa: "";
  }
  .fa-car-tunnel {
    --fa: "";
  }
  .fa-head-side-cough {
    --fa: "";
  }
  .fa-grip-lines {
    --fa: "";
  }
  .fa-thumbs-down {
    --fa: "";
  }
  .fa-user-lock {
    --fa: "";
  }
  .fa-arrow-right-long {
    --fa: "";
  }
  .fa-long-arrow-right {
    --fa: "";
  }
  .fa-anchor-circle-xmark {
    --fa: "";
  }
  .fa-ellipsis {
    --fa: "";
  }
  .fa-ellipsis-h {
    --fa: "";
  }
  .fa-chess-pawn {
    --fa: "";
  }
  .fa-kit-medical {
    --fa: "";
  }
  .fa-first-aid {
    --fa: "";
  }
  .fa-person-through-window {
    --fa: "";
  }
  .fa-toolbox {
    --fa: "";
  }
  .fa-hands-holding-circle {
    --fa: "";
  }
  .fa-bug {
    --fa: "";
  }
  .fa-credit-card {
    --fa: "";
  }
  .fa-credit-card-alt {
    --fa: "";
  }
  .fa-car {
    --fa: "";
  }
  .fa-automobile {
    --fa: "";
  }
  .fa-hand-holding-hand {
    --fa: "";
  }
  .fa-book-open-reader {
    --fa: "";
  }
  .fa-book-reader {
    --fa: "";
  }
  .fa-mountain-sun {
    --fa: "";
  }
  .fa-arrows-left-right-to-line {
    --fa: "";
  }
  .fa-dice-d20 {
    --fa: "";
  }
  .fa-truck-droplet {
    --fa: "";
  }
  .fa-file-circle-xmark {
    --fa: "";
  }
  .fa-temperature-arrow-up {
    --fa: "";
  }
  .fa-temperature-up {
    --fa: "";
  }
  .fa-medal {
    --fa: "";
  }
  .fa-bed {
    --fa: "";
  }
  .fa-square-h {
    --fa: "";
  }
  .fa-h-square {
    --fa: "";
  }
  .fa-podcast {
    --fa: "";
  }
  .fa-temperature-full {
    --fa: "";
  }
  .fa-temperature-4 {
    --fa: "";
  }
  .fa-thermometer-4 {
    --fa: "";
  }
  .fa-thermometer-full {
    --fa: "";
  }
  .fa-bell {
    --fa: "";
  }
  .fa-superscript {
    --fa: "";
  }
  .fa-plug-circle-xmark {
    --fa: "";
  }
  .fa-star-of-life {
    --fa: "";
  }
  .fa-phone-slash {
    --fa: "";
  }
  .fa-paint-roller {
    --fa: "";
  }
  .fa-handshake-angle {
    --fa: "";
  }
  .fa-hands-helping {
    --fa: "";
  }
  .fa-location-dot {
    --fa: "";
  }
  .fa-map-marker-alt {
    --fa: "";
  }
  .fa-file {
    --fa: "";
  }
  .fa-greater-than {
    --fa: ">";
  }
  .fa-person-swimming {
    --fa: "";
  }
  .fa-swimmer {
    --fa: "";
  }
  .fa-arrow-down {
    --fa: "";
  }
  .fa-droplet {
    --fa: "";
  }
  .fa-tint {
    --fa: "";
  }
  .fa-eraser {
    --fa: "";
  }
  .fa-earth-americas {
    --fa: "";
  }
  .fa-earth {
    --fa: "";
  }
  .fa-earth-america {
    --fa: "";
  }
  .fa-globe-americas {
    --fa: "";
  }
  .fa-person-burst {
    --fa: "";
  }
  .fa-dove {
    --fa: "";
  }
  .fa-battery-empty {
    --fa: "";
  }
  .fa-battery-0 {
    --fa: "";
  }
  .fa-socks {
    --fa: "";
  }
  .fa-inbox {
    --fa: "";
  }
  .fa-section {
    --fa: "";
  }
  .fa-gauge-high {
    --fa: "";
  }
  .fa-tachometer-alt {
    --fa: "";
  }
  .fa-tachometer-alt-fast {
    --fa: "";
  }
  .fa-envelope-open-text {
    --fa: "";
  }
  .fa-hospital {
    --fa: "";
  }
  .fa-hospital-alt {
    --fa: "";
  }
  .fa-hospital-wide {
    --fa: "";
  }
  .fa-wine-bottle {
    --fa: "";
  }
  .fa-chess-rook {
    --fa: "";
  }
  .fa-bars-staggered {
    --fa: "";
  }
  .fa-reorder {
    --fa: "";
  }
  .fa-stream {
    --fa: "";
  }
  .fa-dharmachakra {
    --fa: "";
  }
  .fa-hotdog {
    --fa: "";
  }
  .fa-person-walking-with-cane {
    --fa: "";
  }
  .fa-blind {
    --fa: "";
  }
  .fa-drum {
    --fa: "";
  }
  .fa-ice-cream {
    --fa: "";
  }
  .fa-heart-circle-bolt {
    --fa: "";
  }
  .fa-fax {
    --fa: "";
  }
  .fa-paragraph {
    --fa: "";
  }
  .fa-check-to-slot {
    --fa: "";
  }
  .fa-vote-yea {
    --fa: "";
  }
  .fa-star-half {
    --fa: "";
  }
  .fa-boxes-stacked {
    --fa: "";
  }
  .fa-boxes {
    --fa: "";
  }
  .fa-boxes-alt {
    --fa: "";
  }
  .fa-link {
    --fa: "";
  }
  .fa-chain {
    --fa: "";
  }
  .fa-ear-listen {
    --fa: "";
  }
  .fa-assistive-listening-systems {
    --fa: "";
  }
  .fa-tree-city {
    --fa: "";
  }
  .fa-play, .fc-icon-play {
    --fa: "";
  }
  .fa-font {
    --fa: "";
  }
  .fa-table-cells-row-lock {
    --fa: "";
  }
  .fa-rupiah-sign {
    --fa: "";
  }
  .fa-magnifying-glass {
    --fa: "";
  }
  .fa-search {
    --fa: "";
  }
  .fa-table-tennis-paddle-ball {
    --fa: "";
  }
  .fa-ping-pong-paddle-ball {
    --fa: "";
  }
  .fa-table-tennis {
    --fa: "";
  }
  .fa-person-dots-from-line {
    --fa: "";
  }
  .fa-diagnoses {
    --fa: "";
  }
  .fa-trash-can-arrow-up {
    --fa: "";
  }
  .fa-trash-restore-alt {
    --fa: "";
  }
  .fa-naira-sign {
    --fa: "";
  }
  .fa-cart-arrow-down {
    --fa: "";
  }
  .fa-walkie-talkie {
    --fa: "";
  }
  .fa-file-pen {
    --fa: "";
  }
  .fa-file-edit {
    --fa: "";
  }
  .fa-receipt {
    --fa: "";
  }
  .fa-square-pen {
    --fa: "";
  }
  .fa-pen-square {
    --fa: "";
  }
  .fa-pencil-square {
    --fa: "";
  }
  .fa-suitcase-rolling {
    --fa: "";
  }
  .fa-person-circle-exclamation {
    --fa: "";
  }
  .fa-chevron-down {
    --fa: "";
  }
  .fa-battery-full {
    --fa: "";
  }
  .fa-battery {
    --fa: "";
  }
  .fa-battery-5 {
    --fa: "";
  }
  .fa-skull-crossbones {
    --fa: "";
  }
  .fa-code-compare {
    --fa: "";
  }
  .fa-list-ul {
    --fa: "";
  }
  .fa-list-dots {
    --fa: "";
  }
  .fa-school-lock {
    --fa: "";
  }
  .fa-tower-cell {
    --fa: "";
  }
  .fa-down-long {
    --fa: "";
  }
  .fa-long-arrow-alt-down {
    --fa: "";
  }
  .fa-ranking-star {
    --fa: "";
  }
  .fa-chess-king {
    --fa: "";
  }
  .fa-person-harassing {
    --fa: "";
  }
  .fa-brazilian-real-sign {
    --fa: "";
  }
  .fa-landmark-dome {
    --fa: "";
  }
  .fa-landmark-alt {
    --fa: "";
  }
  .fa-arrow-up {
    --fa: "";
  }
  .fa-tv {
    --fa: "";
  }
  .fa-television {
    --fa: "";
  }
  .fa-tv-alt {
    --fa: "";
  }
  .fa-shrimp {
    --fa: "";
  }
  .fa-list-check {
    --fa: "";
  }
  .fa-tasks {
    --fa: "";
  }
  .fa-jug-detergent {
    --fa: "";
  }
  .fa-circle-user {
    --fa: "";
  }
  .fa-user-circle {
    --fa: "";
  }
  .fa-user-shield {
    --fa: "";
  }
  .fa-wind {
    --fa: "";
  }
  .fa-car-burst {
    --fa: "";
  }
  .fa-car-crash {
    --fa: "";
  }
  .fa-y {
    --fa: "Y";
  }
  .fa-person-snowboarding {
    --fa: "";
  }
  .fa-snowboarding {
    --fa: "";
  }
  .fa-truck-fast {
    --fa: "";
  }
  .fa-shipping-fast {
    --fa: "";
  }
  .fa-fish {
    --fa: "";
  }
  .fa-user-graduate {
    --fa: "";
  }
  .fa-circle-half-stroke {
    --fa: "";
  }
  .fa-adjust {
    --fa: "";
  }
  .fa-clapperboard {
    --fa: "";
  }
  .fa-circle-radiation {
    --fa: "";
  }
  .fa-radiation-alt {
    --fa: "";
  }
  .fa-baseball {
    --fa: "";
  }
  .fa-baseball-ball {
    --fa: "";
  }
  .fa-jet-fighter-up {
    --fa: "";
  }
  .fa-diagram-project {
    --fa: "";
  }
  .fa-project-diagram {
    --fa: "";
  }
  .fa-copy {
    --fa: "";
  }
  .fa-volume-xmark {
    --fa: "";
  }
  .fa-volume-mute {
    --fa: "";
  }
  .fa-volume-times {
    --fa: "";
  }
  .fa-hand-sparkles {
    --fa: "";
  }
  .fa-grip {
    --fa: "";
  }
  .fa-grip-horizontal {
    --fa: "";
  }
  .fa-share-from-square {
    --fa: "";
  }
  .fa-share-square {
    --fa: "";
  }
  .fa-child-combatant {
    --fa: "";
  }
  .fa-child-rifle {
    --fa: "";
  }
  .fa-gun {
    --fa: "";
  }
  .fa-square-phone {
    --fa: "";
  }
  .fa-phone-square {
    --fa: "";
  }
  .fa-plus {
    --fa: "+";
  }
  .fa-add {
    --fa: "+";
  }
  .fa-expand {
    --fa: "";
  }
  .fa-computer {
    --fa: "";
  }
  .fa-xmark {
    --fa: "";
  }
  .fa-close {
    --fa: "";
  }
  .fa-multiply {
    --fa: "";
  }
  .fa-remove {
    --fa: "";
  }
  .fa-times {
    --fa: "";
  }
  .fa-arrows-up-down-left-right {
    --fa: "";
  }
  .fa-arrows {
    --fa: "";
  }
  .fa-chalkboard-user {
    --fa: "";
  }
  .fa-chalkboard-teacher {
    --fa: "";
  }
  .fa-peso-sign {
    --fa: "";
  }
  .fa-building-shield {
    --fa: "";
  }
  .fa-baby {
    --fa: "";
  }
  .fa-users-line {
    --fa: "";
  }
  .fa-quote-left {
    --fa: "";
  }
  .fa-quote-left-alt {
    --fa: "";
  }
  .fa-tractor {
    --fa: "";
  }
  .fa-trash-arrow-up {
    --fa: "";
  }
  .fa-trash-restore {
    --fa: "";
  }
  .fa-arrow-down-up-lock {
    --fa: "";
  }
  .fa-lines-leaning {
    --fa: "";
  }
  .fa-ruler-combined {
    --fa: "";
  }
  .fa-copyright {
    --fa: "";
  }
  .fa-equals {
    --fa: "=";
  }
  .fa-blender {
    --fa: "";
  }
  .fa-teeth {
    --fa: "";
  }
  .fa-shekel-sign {
    --fa: "";
  }
  .fa-ils {
    --fa: "";
  }
  .fa-shekel {
    --fa: "";
  }
  .fa-sheqel {
    --fa: "";
  }
  .fa-sheqel-sign {
    --fa: "";
  }
  .fa-map {
    --fa: "";
  }
  .fa-rocket {
    --fa: "";
  }
  .fa-photo-film {
    --fa: "";
  }
  .fa-photo-video {
    --fa: "";
  }
  .fa-folder-minus {
    --fa: "";
  }
  .fa-hexagon-nodes-bolt {
    --fa: "";
  }
  .fa-store {
    --fa: "";
  }
  .fa-arrow-trend-up {
    --fa: "";
  }
  .fa-plug-circle-minus {
    --fa: "";
  }
  .fa-sign-hanging {
    --fa: "";
  }
  .fa-sign {
    --fa: "";
  }
  .fa-bezier-curve {
    --fa: "";
  }
  .fa-bell-slash {
    --fa: "";
  }
  .fa-tablet {
    --fa: "";
  }
  .fa-tablet-android {
    --fa: "";
  }
  .fa-school-flag {
    --fa: "";
  }
  .fa-fill {
    --fa: "";
  }
  .fa-angle-up {
    --fa: "";
  }
  .fa-drumstick-bite {
    --fa: "";
  }
  .fa-holly-berry {
    --fa: "";
  }
  .fa-chevron-left {
    --fa: "";
  }
  .fa-bacteria {
    --fa: "";
  }
  .fa-hand-lizard {
    --fa: "";
  }
  .fa-notdef {
    --fa: "";
  }
  .fa-disease {
    --fa: "";
  }
  .fa-briefcase-medical {
    --fa: "";
  }
  .fa-genderless {
    --fa: "";
  }
  .fa-chevron-right, .fc-icon-chevron, .fc-icon-select {
    --fa: "";
  }
  .fa-retweet {
    --fa: "";
  }
  .fa-car-rear {
    --fa: "";
  }
  .fa-car-alt {
    --fa: "";
  }
  .fa-pump-soap {
    --fa: "";
  }
  .fa-video-slash {
    --fa: "";
  }
  .fa-battery-quarter {
    --fa: "";
  }
  .fa-battery-2 {
    --fa: "";
  }
  .fa-radio {
    --fa: "";
  }
  .fa-baby-carriage {
    --fa: "";
  }
  .fa-carriage-baby {
    --fa: "";
  }
  .fa-traffic-light {
    --fa: "";
  }
  .fa-thermometer {
    --fa: "";
  }
  .fa-vr-cardboard {
    --fa: "";
  }
  .fa-hand-middle-finger {
    --fa: "";
  }
  .fa-percent {
    --fa: "%";
  }
  .fa-percentage {
    --fa: "%";
  }
  .fa-truck-moving {
    --fa: "";
  }
  .fa-glass-water-droplet {
    --fa: "";
  }
  .fa-display {
    --fa: "";
  }
  .fa-face-smile {
    --fa: "";
  }
  .fa-smile {
    --fa: "";
  }
  .fa-thumbtack {
    --fa: "";
  }
  .fa-thumb-tack {
    --fa: "";
  }
  .fa-trophy {
    --fa: "";
  }
  .fa-person-praying {
    --fa: "";
  }
  .fa-pray {
    --fa: "";
  }
  .fa-hammer {
    --fa: "";
  }
  .fa-hand-peace {
    --fa: "";
  }
  .fa-rotate {
    --fa: "";
  }
  .fa-sync-alt {
    --fa: "";
  }
  .fa-spinner, .fc-icon-spinner {
    --fa: "";
  }
  .fa-robot {
    --fa: "";
  }
  .fa-peace {
    --fa: "";
  }
  .fa-gears {
    --fa: "";
  }
  .fa-cogs {
    --fa: "";
  }
  .fa-warehouse {
    --fa: "";
  }
  .fa-arrow-up-right-dots {
    --fa: "";
  }
  .fa-splotch {
    --fa: "";
  }
  .fa-face-grin-hearts {
    --fa: "";
  }
  .fa-grin-hearts {
    --fa: "";
  }
  .fa-dice-four {
    --fa: "";
  }
  .fa-sim-card {
    --fa: "";
  }
  .fa-transgender {
    --fa: "";
  }
  .fa-transgender-alt {
    --fa: "";
  }
  .fa-mercury {
    --fa: "";
  }
  .fa-arrow-turn-down {
    --fa: "";
  }
  .fa-level-down {
    --fa: "";
  }
  .fa-person-falling-burst {
    --fa: "";
  }
  .fa-award {
    --fa: "";
  }
  .fa-ticket-simple {
    --fa: "";
  }
  .fa-ticket-alt {
    --fa: "";
  }
  .fa-building {
    --fa: "";
  }
  .fa-angles-left {
    --fa: "";
  }
  .fa-angle-double-left {
    --fa: "";
  }
  .fa-qrcode {
    --fa: "";
  }
  .fa-clock-rotate-left {
    --fa: "";
  }
  .fa-history {
    --fa: "";
  }
  .fa-face-grin-beam-sweat {
    --fa: "";
  }
  .fa-grin-beam-sweat {
    --fa: "";
  }
  .fa-file-export {
    --fa: "";
  }
  .fa-arrow-right-from-file {
    --fa: "";
  }
  .fa-shield {
    --fa: "";
  }
  .fa-shield-blank {
    --fa: "";
  }
  .fa-arrow-up-short-wide {
    --fa: "";
  }
  .fa-sort-amount-up-alt {
    --fa: "";
  }
  .fa-comment-nodes {
    --fa: "";
  }
  .fa-house-medical {
    --fa: "";
  }
  .fa-golf-ball-tee {
    --fa: "";
  }
  .fa-golf-ball {
    --fa: "";
  }
  .fa-circle-chevron-left {
    --fa: "";
  }
  .fa-chevron-circle-left {
    --fa: "";
  }
  .fa-house-chimney-window {
    --fa: "";
  }
  .fa-pen-nib {
    --fa: "";
  }
  .fa-tent-arrow-turn-left {
    --fa: "";
  }
  .fa-tents {
    --fa: "";
  }
  .fa-wand-magic {
    --fa: "";
  }
  .fa-magic {
    --fa: "";
  }
  .fa-dog {
    --fa: "";
  }
  .fa-carrot {
    --fa: "";
  }
  .fa-moon {
    --fa: "";
  }
  .fa-wine-glass-empty {
    --fa: "";
  }
  .fa-wine-glass-alt {
    --fa: "";
  }
  .fa-cheese {
    --fa: "";
  }
  .fa-yin-yang {
    --fa: "";
  }
  .fa-music {
    --fa: "";
  }
  .fa-code-commit {
    --fa: "";
  }
  .fa-temperature-low {
    --fa: "";
  }
  .fa-person-biking {
    --fa: "";
  }
  .fa-biking {
    --fa: "";
  }
  .fa-broom {
    --fa: "";
  }
  .fa-shield-heart {
    --fa: "";
  }
  .fa-gopuram {
    --fa: "";
  }
  .fa-earth-oceania {
    --fa: "";
  }
  .fa-globe-oceania {
    --fa: "";
  }
  .fa-square-xmark {
    --fa: "";
  }
  .fa-times-square {
    --fa: "";
  }
  .fa-xmark-square {
    --fa: "";
  }
  .fa-hashtag {
    --fa: "#";
  }
  .fa-up-right-and-down-left-from-center {
    --fa: "";
  }
  .fa-expand-alt {
    --fa: "";
  }
  .fa-oil-can {
    --fa: "";
  }
  .fa-t {
    --fa: "T";
  }
  .fa-hippo {
    --fa: "";
  }
  .fa-chart-column {
    --fa: "";
  }
  .fa-infinity {
    --fa: "";
  }
  .fa-vial-circle-check {
    --fa: "";
  }
  .fa-person-arrow-down-to-line {
    --fa: "";
  }
  .fa-voicemail {
    --fa: "";
  }
  .fa-fan {
    --fa: "";
  }
  .fa-person-walking-luggage {
    --fa: "";
  }
  .fa-up-down {
    --fa: "";
  }
  .fa-arrows-alt-v {
    --fa: "";
  }
  .fa-cloud-moon-rain {
    --fa: "";
  }
  .fa-calendar {
    --fa: "";
  }
  .fa-trailer {
    --fa: "";
  }
  .fa-bahai {
    --fa: "";
  }
  .fa-haykal {
    --fa: "";
  }
  .fa-sd-card {
    --fa: "";
  }
  .fa-dragon {
    --fa: "";
  }
  .fa-shoe-prints {
    --fa: "";
  }
  .fa-circle-plus {
    --fa: "";
  }
  .fa-plus-circle, .fc-icon-plus {
    --fa: "";
  }
  .fa-face-grin-tongue-wink {
    --fa: "";
  }
  .fa-grin-tongue-wink {
    --fa: "";
  }
  .fa-hand-holding {
    --fa: "";
  }
  .fa-plug-circle-exclamation {
    --fa: "";
  }
  .fa-link-slash {
    --fa: "";
  }
  .fa-chain-broken {
    --fa: "";
  }
  .fa-chain-slash {
    --fa: "";
  }
  .fa-unlink {
    --fa: "";
  }
  .fa-clone, .fc-icon-copy {
    --fa: "";
  }
  .fa-person-walking-arrow-loop-left {
    --fa: "";
  }
  .fa-arrow-up-z-a {
    --fa: "";
  }
  .fa-sort-alpha-up-alt {
    --fa: "";
  }
  .fa-fire-flame-curved {
    --fa: "";
  }
  .fa-fire-alt {
    --fa: "";
  }
  .fa-tornado {
    --fa: "";
  }
  .fa-file-circle-plus {
    --fa: "";
  }
  .fa-book-quran {
    --fa: "";
  }
  .fa-quran {
    --fa: "";
  }
  .fa-anchor {
    --fa: "";
  }
  .fa-border-all {
    --fa: "";
  }
  .fa-face-angry {
    --fa: "";
  }
  .fa-angry {
    --fa: "";
  }
  .fa-cookie-bite {
    --fa: "";
  }
  .fa-arrow-trend-down {
    --fa: "";
  }
  .fa-rss {
    --fa: "";
  }
  .fa-feed {
    --fa: "";
  }
  .fa-draw-polygon {
    --fa: "";
  }
  .fa-scale-balanced {
    --fa: "";
  }
  .fa-balance-scale {
    --fa: "";
  }
  .fa-gauge-simple-high {
    --fa: "";
  }
  .fa-tachometer {
    --fa: "";
  }
  .fa-tachometer-fast {
    --fa: "";
  }
  .fa-shower {
    --fa: "";
  }
  .fa-desktop {
    --fa: "";
  }
  .fa-desktop-alt {
    --fa: "";
  }
  .fa-m {
    --fa: "M";
  }
  .fa-table-list {
    --fa: "";
  }
  .fa-th-list {
    --fa: "";
  }
  .fa-comment-sms {
    --fa: "";
  }
  .fa-sms {
    --fa: "";
  }
  .fa-book {
    --fa: "";
  }
  .fa-user-plus {
    --fa: "";
  }
  .fa-check, .fc-icon-check {
    --fa: "";
  }
  .fa-battery-three-quarters {
    --fa: "";
  }
  .fa-battery-4 {
    --fa: "";
  }
  .fa-house-circle-check {
    --fa: "";
  }
  .fa-angle-left {
    --fa: "";
  }
  .fa-diagram-successor {
    --fa: "";
  }
  .fa-truck-arrow-right {
    --fa: "";
  }
  .fa-arrows-split-up-and-left {
    --fa: "";
  }
  .fa-hand-fist {
    --fa: "";
  }
  .fa-fist-raised {
    --fa: "";
  }
  .fa-cloud-moon {
    --fa: "";
  }
  .fa-briefcase {
    --fa: "";
  }
  .fa-person-falling {
    --fa: "";
  }
  .fa-image-portrait {
    --fa: "";
  }
  .fa-portrait {
    --fa: "";
  }
  .fa-user-tag {
    --fa: "";
  }
  .fa-rug {
    --fa: "";
  }
  .fa-earth-europe {
    --fa: "";
  }
  .fa-globe-europe {
    --fa: "";
  }
  .fa-cart-flatbed-suitcase {
    --fa: "";
  }
  .fa-luggage-cart {
    --fa: "";
  }
  .fa-rectangle-xmark {
    --fa: "";
  }
  .fa-rectangle-times {
    --fa: "";
  }
  .fa-times-rectangle {
    --fa: "";
  }
  .fa-window-close {
    --fa: "";
  }
  .fa-baht-sign {
    --fa: "";
  }
  .fa-book-open {
    --fa: "";
  }
  .fa-book-journal-whills {
    --fa: "";
  }
  .fa-journal-whills {
    --fa: "";
  }
  .fa-handcuffs {
    --fa: "";
  }
  .fa-triangle-exclamation {
    --fa: "";
  }
  .fa-exclamation-triangle, .fc-icon-danger, .fc-announcement-icon.fc-problem {
    --fa: "";
  }
  .fa-warning {
    --fa: "";
  }
  .fa-database {
    --fa: "";
  }
  .fa-share {
    --fa: "";
  }
  .fa-mail-forward {
    --fa: "";
  }
  .fa-bottle-droplet {
    --fa: "";
  }
  .fa-mask-face {
    --fa: "";
  }
  .fa-hill-rockslide {
    --fa: "";
  }
  .fa-right-left {
    --fa: "";
  }
  .fa-exchange-alt {
    --fa: "";
  }
  .fa-paper-plane {
    --fa: "";
  }
  .fa-road-circle-exclamation {
    --fa: "";
  }
  .fa-dungeon {
    --fa: "";
  }
  .fa-align-right {
    --fa: "";
  }
  .fa-money-bill-1-wave {
    --fa: "";
  }
  .fa-money-bill-wave-alt {
    --fa: "";
  }
  .fa-life-ring {
    --fa: "";
  }
  .fa-hands {
    --fa: "";
  }
  .fa-sign-language {
    --fa: "";
  }
  .fa-signing {
    --fa: "";
  }
  .fa-calendar-day {
    --fa: "";
  }
  .fa-water-ladder {
    --fa: "";
  }
  .fa-ladder-water {
    --fa: "";
  }
  .fa-swimming-pool {
    --fa: "";
  }
  .fa-arrows-up-down {
    --fa: "";
  }
  .fa-arrows-v {
    --fa: "";
  }
  .fa-face-grimace {
    --fa: "";
  }
  .fa-grimace {
    --fa: "";
  }
  .fa-wheelchair-move {
    --fa: "";
  }
  .fa-wheelchair-alt {
    --fa: "";
  }
  .fa-turn-down {
    --fa: "";
  }
  .fa-level-down-alt {
    --fa: "";
  }
  .fa-person-walking-arrow-right {
    --fa: "";
  }
  .fa-square-envelope {
    --fa: "";
  }
  .fa-envelope-square {
    --fa: "";
  }
  .fa-dice {
    --fa: "";
  }
  .fa-bowling-ball {
    --fa: "";
  }
  .fa-brain {
    --fa: "";
  }
  .fa-bandage {
    --fa: "";
  }
  .fa-band-aid {
    --fa: "";
  }
  .fa-calendar-minus {
    --fa: "";
  }
  .fa-circle-xmark {
    --fa: "";
  }
  .fa-times-circle {
    --fa: "";
  }
  .fa-xmark-circle {
    --fa: "";
  }
  .fa-gifts {
    --fa: "";
  }
  .fa-hotel {
    --fa: "";
  }
  .fa-earth-asia {
    --fa: "";
  }
  .fa-globe-asia {
    --fa: "";
  }
  .fa-id-card-clip {
    --fa: "";
  }
  .fa-id-card-alt {
    --fa: "";
  }
  .fa-magnifying-glass-plus {
    --fa: "";
  }
  .fa-search-plus {
    --fa: "";
  }
  .fa-thumbs-up {
    --fa: "";
  }
  .fa-user-clock {
    --fa: "";
  }
  .fa-hand-dots {
    --fa: "";
  }
  .fa-allergies {
    --fa: "";
  }
  .fa-file-invoice {
    --fa: "";
  }
  .fa-window-minimize {
    --fa: "";
  }
  .fa-mug-saucer {
    --fa: "";
  }
  .fa-coffee {
    --fa: "";
  }
  .fa-brush {
    --fa: "";
  }
  .fa-file-half-dashed {
    --fa: "";
  }
  .fa-mask {
    --fa: "";
  }
  .fa-magnifying-glass-minus {
    --fa: "";
  }
  .fa-search-minus {
    --fa: "";
  }
  .fa-ruler-vertical {
    --fa: "";
  }
  .fa-user-large {
    --fa: "";
  }
  .fa-user-alt {
    --fa: "";
  }
  .fa-train-tram {
    --fa: "";
  }
  .fa-user-nurse {
    --fa: "";
  }
  .fa-syringe {
    --fa: "";
  }
  .fa-cloud-sun {
    --fa: "";
  }
  .fa-stopwatch-20 {
    --fa: "";
  }
  .fa-square-full {
    --fa: "";
  }
  .fa-magnet {
    --fa: "";
  }
  .fa-jar {
    --fa: "";
  }
  .fa-note-sticky {
    --fa: "";
  }
  .fa-sticky-note {
    --fa: "";
  }
  .fa-bug-slash {
    --fa: "";
  }
  .fa-arrow-up-from-water-pump {
    --fa: "";
  }
  .fa-bone {
    --fa: "";
  }
  .fa-table-cells-row-unlock {
    --fa: "";
  }
  .fa-user-injured {
    --fa: "";
  }
  .fa-face-sad-tear {
    --fa: "";
  }
  .fa-sad-tear {
    --fa: "";
  }
  .fa-plane {
    --fa: "";
  }
  .fa-tent-arrows-down {
    --fa: "";
  }
  .fa-exclamation {
    --fa: "!";
  }
  .fa-arrows-spin {
    --fa: "";
  }
  .fa-print {
    --fa: "";
  }
  .fa-turkish-lira-sign {
    --fa: "";
  }
  .fa-try {
    --fa: "";
  }
  .fa-turkish-lira {
    --fa: "";
  }
  .fa-dollar-sign {
    --fa: "$";
  }
  .fa-dollar {
    --fa: "$";
  }
  .fa-usd {
    --fa: "$";
  }
  .fa-x {
    --fa: "X";
  }
  .fa-magnifying-glass-dollar {
    --fa: "";
  }
  .fa-search-dollar {
    --fa: "";
  }
  .fa-users-gear {
    --fa: "";
  }
  .fa-users-cog {
    --fa: "";
  }
  .fa-person-military-pointing {
    --fa: "";
  }
  .fa-building-columns {
    --fa: "";
  }
  .fa-bank {
    --fa: "";
  }
  .fa-institution {
    --fa: "";
  }
  .fa-museum {
    --fa: "";
  }
  .fa-university {
    --fa: "";
  }
  .fa-umbrella {
    --fa: "";
  }
  .fa-trowel {
    --fa: "";
  }
  .fa-d {
    --fa: "D";
  }
  .fa-stapler {
    --fa: "";
  }
  .fa-masks-theater {
    --fa: "";
  }
  .fa-theater-masks {
    --fa: "";
  }
  .fa-kip-sign {
    --fa: "";
  }
  .fa-hand-point-left {
    --fa: "";
  }
  .fa-handshake-simple {
    --fa: "";
  }
  .fa-handshake-alt {
    --fa: "";
  }
  .fa-jet-fighter {
    --fa: "";
  }
  .fa-fighter-jet {
    --fa: "";
  }
  .fa-square-share-nodes {
    --fa: "";
  }
  .fa-share-alt-square {
    --fa: "";
  }
  .fa-barcode {
    --fa: "";
  }
  .fa-plus-minus {
    --fa: "";
  }
  .fa-video {
    --fa: "";
  }
  .fa-video-camera {
    --fa: "";
  }
  .fa-graduation-cap {
    --fa: "";
  }
  .fa-mortar-board {
    --fa: "";
  }
  .fa-hand-holding-medical {
    --fa: "";
  }
  .fa-person-circle-check {
    --fa: "";
  }
  .fa-turn-up {
    --fa: "";
  }
  .fa-level-up-alt {
    --fa: "";
  }
  .sr-only,
  .fa-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
  .sr-only-focusable:not(:focus),
  .fa-sr-only-focusable:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
  /*!
   * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com
   * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
   * Copyright 2024 Fonticons, Inc.
   */
  :root, :host {
    --fa-style-family-classic: "Font Awesome 6 Free";
    --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
  }
  @font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype");
  }
  .fas, .fc-icon-spinner, .fc-icon-trash, .fc-icon-edit, .fc-icon-select-in-table, .fc-icon-chevron, .fc-icon-select, .fc-icon-plus, .fc-icon-danger, .fc-icon-caret-down, .fc-icon-check, .fc-icon-angle-double-down, .fc-icon-validation-nok, .fc-icon-play, .fc-icon-pause, .fc-announcement-icon.fc-problem,
  .fa-solid {
    font-weight: 900;
  }
  /*!
   * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com
   * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
   * Copyright 2024 Fonticons, Inc.
   */
  :root, :host {
    --fa-style-family-classic: "Font Awesome 6 Free";
    --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
  }
  @font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype");
  }
  .far, .fc-icon-copy, .fc-icon-validation-ok,
  .fa-regular {
    font-weight: 400;
  }
  @font-face {
    font-family: "rfs-icons";
    src: url("/content/fonts/rfs-icons.eot?v=2.45.8");
    src: url("/content/fonts/rfs-icons.eot?v=2.45.8") format("eot"), url("/content/fonts/rfs-icons.woff2?v=2.45.8") format("woff2"), url("/content/fonts/rfs-icons.woff?v=2.45.8") format("woff"), url("/content/fonts/rfs-icons.ttf?v=2.45.8") format("truetype");
  }
  .rfs-icon:before, .fc-icon-search:before, .fc-icon-arrow--right:before, .fc-icon-select-new:before, .fc-icon-filter:before, .fc-icon-info:before, .fc-icon-info-area:before, .fc-icon-info-nooffset:before, .fc-icon-info-area-nooffset:before, .fc-icon-attach:before, .fc-icon-cross:before, .fc-icon-cross-nooffset:before, .fc-icon-cross-thick:before, .fc-icon-download:before, .fc-icon-alert:before, .fc-icon-check2:before, .fc-icon-supercircle-area:before, .fc-icon-supercircle-border:before, .fc-icon-sitemap:before, .fc-icon-link:before, .fc-announcement-icon.fc-alert:before, .fc-announcement-icon.fc-approved:before, .fc-announcement-icon.fc-info:before, .fc-input-date-icon:before, .fc-input-date-iconclear:before,
  [class*=rfs-icon--type]:before {
    font-family: "rfs-icons";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
  }
  .rfs-icon--size-medium:before, .fc-icon-search.fc-icon-medium:before, .fc-icon-search.fc-icon-large:before, .fc-icon-search.fc-icon-larger:before, .fc-icon-arrow--right.fc-icon-medium:before, .fc-icon-medium.fc-icon-select-new:before, .fc-icon-arrow--right.fc-icon-large:before, .fc-icon-large.fc-icon-select-new:before, .fc-icon-arrow--right.fc-icon-larger:before, .fc-icon-larger.fc-icon-select-new:before, .fc-icon-filter.fc-icon-medium:before, .fc-icon-filter.fc-icon-large:before, .fc-icon-filter.fc-icon-larger:before, .fc-icon-info.fc-icon-medium:before, .fc-icon-info.fc-icon-large:before, .fc-icon-info.fc-icon-larger:before, .fc-icon-info-area.fc-icon-medium:before, .fc-icon-info-area.fc-icon-large:before, .fc-icon-info-area.fc-icon-larger:before, .fc-icon-info-nooffset.fc-icon-medium:before, .fc-icon-info-nooffset.fc-icon-large:before, .fc-icon-info-nooffset.fc-icon-larger:before, .fc-icon-info-area-nooffset.fc-icon-medium:before, .fc-icon-info-area-nooffset.fc-icon-large:before, .fc-icon-info-area-nooffset.fc-icon-larger:before, .fc-icon-attach.fc-icon-medium:before, .fc-icon-attach.fc-icon-large:before, .fc-icon-attach.fc-icon-larger:before, .fc-icon-cross.fc-icon-medium:before, .fc-icon-cross.fc-icon-large:before, .fc-icon-cross.fc-icon-larger:before, .fc-icon-cross-nooffset.fc-icon-medium:before, .fc-icon-cross-nooffset.fc-icon-large:before, .fc-icon-cross-nooffset.fc-icon-larger:before, .fc-icon-cross-thick.fc-icon-medium:before, .fc-icon-cross-thick.fc-icon-large:before, .fc-icon-cross-thick.fc-icon-larger:before, .fc-icon-download.fc-icon-medium:before, .fc-icon-download.fc-icon-large:before, .fc-icon-download.fc-icon-larger:before, .fc-icon-alert.fc-icon-medium:before, .fc-icon-alert.fc-icon-large:before, .fc-icon-alert.fc-icon-larger:before, .fc-icon-check2.fc-icon-medium:before, .fc-icon-check2.fc-icon-large:before, .fc-icon-check2.fc-icon-larger:before, .fc-icon-supercircle-area.fc-icon-medium:before, .fc-icon-supercircle-area.fc-icon-large:before, .fc-icon-supercircle-area.fc-icon-larger:before, .fc-icon-supercircle-border.fc-icon-medium:before, .fc-icon-supercircle-border.fc-icon-large:before, .fc-icon-supercircle-border.fc-icon-larger:before, .fc-icon-sitemap.fc-icon-medium:before, .fc-icon-sitemap.fc-icon-large:before, .fc-icon-sitemap.fc-icon-larger:before, .fc-icon-link.fc-icon-medium:before, .fc-icon-link.fc-icon-large:before, .fc-icon-link.fc-icon-larger:before, .fc-icon-medium.fc-announcement-icon.fc-alert:before, .fc-icon-large.fc-announcement-icon.fc-alert:before, .fc-icon-larger.fc-announcement-icon.fc-alert:before, .fc-icon-medium.fc-announcement-icon.fc-approved:before, .fc-icon-large.fc-announcement-icon.fc-approved:before, .fc-icon-larger.fc-announcement-icon.fc-approved:before, .fc-icon-medium.fc-announcement-icon.fc-info:before, .fc-icon-large.fc-announcement-icon.fc-info:before, .fc-icon-larger.fc-announcement-icon.fc-info:before {
    font-size: 32px;
  }
  .rfs-icon--size-large:before, .fc-icon-search.fc-icon-extra-large:before, .fc-icon-arrow--right.fc-icon-extra-large:before, .fc-icon-extra-large.fc-icon-select-new:before, .fc-icon-filter.fc-icon-extra-large:before, .fc-icon-info.fc-icon-extra-large:before, .fc-icon-info-area.fc-icon-extra-large:before, .fc-icon-info-nooffset.fc-icon-extra-large:before, .fc-icon-info-area-nooffset.fc-icon-extra-large:before, .fc-icon-attach.fc-icon-extra-large:before, .fc-icon-cross.fc-icon-extra-large:before, .fc-icon-cross-nooffset.fc-icon-extra-large:before, .fc-icon-cross-thick.fc-icon-extra-large:before, .fc-icon-download.fc-icon-extra-large:before, .fc-icon-alert.fc-icon-extra-large:before, .fc-icon-check2.fc-icon-extra-large:before, .fc-icon-supercircle-area.fc-icon-extra-large:before, .fc-icon-supercircle-border.fc-icon-extra-large:before, .fc-icon-sitemap.fc-icon-extra-large:before, .fc-icon-link.fc-icon-extra-large:before, .fc-icon-extra-large.fc-announcement-icon.fc-alert:before, .fc-icon-extra-large.fc-announcement-icon.fc-approved:before, .fc-icon-extra-large.fc-announcement-icon.fc-info:before {
    font-size: 64px;
  }
  .rfs-icon--type--arrow:before {
    content: "\f117";
  }
  .rfs-icon--type--arrow:before {
    display: inline-block;
  }
  .rfs-icon--type-cross:before, .fc-icon-cross:before, .fc-icon-cross-nooffset:before, .fc-input-date-iconclear:before {
    content: "\f003";
  }
  .rfs-icon--type-adres:before {
    content: "\f004";
  }
  .rfs-icon--type-adresboek:before {
    content: "\f005";
  }
  .rfs-icon--type-afspraak-kop-koffie:before {
    content: "\f006";
  }
  .rfs-icon--type-alert:before, .fc-icon-alert:before, .fc-announcement-icon.fc-alert:before {
    content: "\f007";
  }
  .rfs-icon--type-area-of-expertise:before {
    content: "\f008";
  }
  .rfs-icon--type-area-of-interest:before {
    content: "\f009";
  }
  .rfs-icon--type-berekening:before {
    content: "\f010";
  }
  .rfs-icon--type-bewaar:before {
    content: "\f011";
  }
  .rfs-icon--type-bijlage:before, .fc-icon-attach:before {
    content: "\f012";
  }
  .rfs-icon--type-camera:before {
    content: "\f013";
  }
  .rfs-icon--type-centreren1:before {
    content: "\f014";
  }
  .rfs-icon--type-centreren2:before {
    content: "\f015";
  }
  .rfs-icon--type-check1:before {
    content: "\f016";
  }
  .rfs-icon--type-check2:before, .fc-icon-check2:before, .fc-announcement-icon.fc-approved:before {
    content: "\f017";
  }
  .rfs-icon--type-contact-toevoegen:before {
    content: "\f018";
  }
  .rfs-icon--type-contact:before {
    content: "\f019";
  }
  .rfs-icon--type-cursor:before {
    content: "\f020";
  }
  .rfs-icon--type-datum:before, .fc-input-date-icon:before {
    content: "\f021";
  }
  .rfs-icon--type-delen1:before {
    content: "\f022";
  }
  .rfs-icon--type-delen2:before {
    content: "\f023";
  }
  .rfs-icon--type-directions1:before {
    content: "\f024";
  }
  .rfs-icon--type-directions2:before {
    content: "\f025";
  }
  .rfs-icon--type-dmmjb-kader:before {
    content: "\f026";
  }
  .rfs-icon--type-dmmjb:before {
    content: "\f027";
  }
  .rfs-icon--type-download2:before, .fc-icon-download:before {
    content: "\f028";
  }
  .rfs-icon--type-euro:before {
    content: "\f029";
  }
  .rfs-icon--type-exporteer:before {
    content: "\f030";
  }
  .rfs-icon--type-facebook:before {
    content: "\f031";
  }
  .rfs-icon--type-favoriet:before {
    content: "\f032";
  }
  .rfs-icon--type-feedback:before {
    content: "\f033";
  }
  .rfs-icon--type-filter:before, .fc-icon-filter:before {
    content: "\f034";
  }
  .rfs-icon--type-gelezen:before {
    content: "\f035";
  }
  .rfs-icon--type-geluid-aan:before {
    content: "\f036";
  }
  .rfs-icon--type-geluid-uit:before {
    content: "\f037";
  }
  .rfs-icon--type-googleplus:before {
    content: "\f038";
  }
  .rfs-icon--type-home:before {
    content: "\f039";
  }
  .rfs-icon--type-info:before {
    content: "\f042";
  }
  .rfs-icon--type-info-supercircle:before, .fc-icon-info:before, .fc-icon-info-nooffset:before, .fc-announcement-icon.fc-info:before {
    content: "\f043";
  }
  .rfs-icon--type-instagram:before {
    content: "\f046";
  }
  .rfs-icon--type-instellingen:before {
    content: "\f047";
  }
  .rfs-icon--type-invullen:before {
    content: "\f048";
  }
  .rfs-icon--type-kaart:before {
    content: "\f049";
  }
  .rfs-icon--type-lijst:before {
    content: "\f050";
  }
  .rfs-icon--type-like:before {
    content: "\f051";
  }
  .rfs-icon--type-link:before, .fc-icon-link:before {
    content: "\f052";
  }
  .rfs-icon--type-linkedin:before {
    content: "\f053";
  }
  .rfs-icon--type-locatie:before {
    content: "\f054";
  }
  .rfs-icon--type-loep:before, .fc-icon-search:before {
    content: "\f055";
  }
  .rfs-icon--type-loguit:before {
    content: "\f056";
  }
  .rfs-icon--type-mail:before {
    content: "\f057";
  }
  .rfs-icon--type-map:before {
    content: "\f058";
  }
  .rfs-icon--type-markeringsvlag:before {
    content: "\f059";
  }
  .rfs-icon--type-member:before {
    content: "\f060";
  }
  .rfs-icon--type-menu:before {
    content: "\f061";
  }
  .rfs-icon--type-min1:before {
    content: "\f062";
  }
  .rfs-icon--type-min2:before {
    content: "\f063";
  }
  .rfs-icon--type-mobiel:before {
    content: "\f064";
  }
  .rfs-icon--type-my-work:before {
    content: "\f065";
  }
  .rfs-icon--type-nieuws1:before {
    content: "\f066";
  }
  .rfs-icon--type-nieuwvenster:before {
    content: "\f067";
  }
  .rfs-icon--type-onderhoud:before {
    content: "\f068";
  }
  .rfs-icon--type-order:before {
    content: "\f069";
  }
  .rfs-icon--type-pas-op:before {
    content: "\f070";
  }
  .rfs-icon--type-percentage:before {
    content: "\f071";
  }
  .rfs-icon--type-persoon:before {
    content: "\f072";
  }
  .rfs-icon--type-pijl-boven:before {
    content: "\f073";
  }
  .rfs-icon--type-pijl-links:before {
    content: "\f074";
  }
  .rfs-icon--type-pijl-onder:before {
    content: "\f075";
  }
  .rfs-icon--type-pijl-rechts:before {
    content: "\f076";
  }
  .rfs-icon--type-plus1:before {
    content: "\f077";
  }
  .rfs-icon--type-plus2:before {
    content: "\f078";
  }
  .rfs-icon--type-potlood:before {
    content: "\f079";
  }
  .rfs-icon--type-print:before {
    content: "\f080";
  }
  .rfs-icon--type-prullenbak:before {
    content: "\f081";
  }
  .rfs-icon--type-random-reader:before {
    content: "\f082";
  }
  .rfs-icon--type-rekwijzingen:before {
    content: "\f083";
  }
  .rfs-icon--type-rss1:before {
    content: "\f084";
  }
  .rfs-icon--type-rss2:before {
    content: "\f085";
  }
  .rfs-icon--type-service1:before {
    content: "\f086";
  }
  .rfs-icon--type-sitemap:before, .fc-icon-sitemap:before {
    content: "\f087";
  }
  .rfs-icon--type-slot-dicht:before {
    content: "\f088";
  }
  .rfs-icon--type-slot-open:before {
    content: "\f089";
  }
  .rfs-icon--type-sluit1:before {
    content: "\f090";
  }
  .rfs-icon--type-sluit2:before, .fc-icon-cross-thick:before {
    content: "\f091";
  }
  .rfs-icon--type-tag:before {
    content: "\f092";
  }
  .rfs-icon--type-telefoon:before {
    content: "\f093";
  }
  .rfs-icon--type-thumbs-up:before {
    content: "\f094";
  }
  .rfs-icon--type-tijd:before {
    content: "\f095";
  }
  .rfs-icon--type-toegankelijkheid1:before {
    content: "\f096";
  }
  .rfs-icon--type-toegankelijkheid2:before {
    content: "\f097";
  }
  .rfs-icon--type-trending-topic1:before {
    content: "\f098";
  }
  .rfs-icon--type-trending-topic2:before {
    content: "\f099";
  }
  .rfs-icon--type-twitter:before {
    content: "\f100";
  }
  .rfs-icon--type-uitroepteken1:before {
    content: "\f101";
  }
  .rfs-icon--type-uitroepteken2:before {
    content: "\f102";
  }
  .rfs-icon--type-uw-overzicht:before {
    content: "\f103";
  }
  .rfs-icon--type-ververs:before {
    content: "\f104";
  }
  .rfs-icon--type-video:before {
    content: "\f105";
  }
  .rfs-icon--type-voorbeeld:before {
    content: "\f106";
  }
  .rfs-icon--type-vraagteken1:before {
    content: "\f107";
  }
  .rfs-icon--type-vraagteken2:before {
    content: "\f108";
  }
  .rfs-icon--type-weegschaal:before {
    content: "\f109";
  }
  .rfs-icon--type-wifi:before {
    content: "\f110";
  }
  .rfs-icon--type-winkelwagen:before {
    content: "\f111";
  }
  .rfs-icon--type-youtube:before {
    content: "\f112";
  }
  .rfs-icon--type-supercircle-area:before, .fc-icon-supercircle-area:before {
    content: "\f113";
  }
  .rfs-icon--type-supercircle-border:before, .fc-icon-supercircle-border:before {
    content: "\f114";
  }
  .rfs-icon--type-arrow--down:before {
    content: "\f115";
  }
  .rfs-icon--type-arrow--left:before {
    content: "\f116";
  }
  .rfs-icon--type-arrow--right:before, .fc-icon-arrow--right:before, .fc-icon-select-new:before {
    content: "\f117";
  }
  .rfs-icon--type-arrow--up:before {
    content: "\f118";
  }
  .rfs-icon--type-switch-area:before {
    content: "\f119";
  }
  .rfs-icon--type-switch-border:before {
    content: "\f120";
  }
  .rfs-icon--type-af:before {
    content: "\f121";
  }
  .rfs-icon--type-bij:before {
    content: "\f122";
  }
  .rfs-icon--type-nl:before {
    content: "\f123";
  }
  .rfs-icon--type-en:before {
    content: "\f124";
  }
  .rfs-icon--type-kalender:before {
    content: "\f125";
  }
  .rfs-icon--type-meer:before {
    content: "\f126";
  }
  .rfs-icon--type-touch-id:before {
    content: "\f127";
  }
  .rfs-icon--type-maps-area:before {
    content: "\f128";
  }
  .rfs-icon--type-maps-border:before {
    content: "\f129";
  }
  .rfs-icon--type-maps-bank:before {
    content: "\f130";
  }
  .rfs-icon--type-maps-atm:before {
    content: "\f131";
  }
  .rfs-icon--type-maps-marker:before {
    content: "\f132";
  }
  .rfs-icon--type-maps-marker-bank:before {
    content: "\f133";
  }
  .rfs-icon--type-maps-marker-atm:before {
    content: "\f134";
  }
  .rfs-icon--type-maps-location:before {
    content: "\f135";
  }
  .rfs-icon--type-ongedaan:before {
    content: "\f136";
  }
  .rfs-icon--type-upload2:before {
    content: "\f137";
  }
  .rfs-icon--type-info-supercircle-area:before, .fc-icon-info-area:before, .fc-icon-info-area-nooffset:before {
    content: "\f138";
  }
  .rfs-icon--type-slidergrip:before {
    content: "\f139";
  }
  .rfs-icon--type-zelfregelen:before {
    content: "\f140";
  }
  .rfs-icon--type-xml:before {
    content: "\f141";
  }
  .rfs-icon--type-uitloggen-bold:before {
    content: "\f142";
  }
  .rfs-icon--type-tekst:before {
    content: "\f143";
  }
  .rfs-icon--type-pdf:before {
    content: "\f144";
  }
  .rfs-icon--type-loep-bold:before {
    content: "\f145";
  }
  .rfs-icon--type-inloggen:before {
    content: "\f146";
  }
  .rfs-icon--type-info-moremenu:before {
    content: "\f147";
  }
  .rfs-icon--type-info-moremenu-verticaal:before {
    content: "\f148";
  }
  .rfs-icon--type-home-bold:before {
    content: "\f149";
  }
  .rfs-icon--type-csv:before {
    content: "\f150";
  }
  .rfs-icon--type-contacpersoon-toevoegen:before {
    content: "\f151";
  }
  .rfs-icon--type-favoriet-gevuld:before {
    content: "\f152";
  }
  .rfs-icon--type-arrow--down-encircled:before {
    content: "\f153";
  }
  .rfs-icon--type-telefoon-kaal:before {
    content: "\f159";
  }
  .rfs-icon--type-linkedin-kaal:before {
    content: "\f161";
  }
  .rfs-icon--type-twitter-kaal:before {
    content: "\f162";
  }
  .rfs-icon--type-facebook-circle:before {
    content: "\f170";
  }
  .rfs-icon--type-linkedin-circle:before {
    content: "\f171";
  }
  .rfs-icon--type-twitter-circle:before {
    content: "\f172";
  }
  .rfs-icon--type-staaf-diagram:before {
    content: "\f200";
  }
  .rfs-icon--type-kopieren:before {
    content: "\f201";
  }
  .rfs-icon--type-contact-bubble:before {
    content: "\f202";
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /*
      These variables are specific to RaboTaxatie 
  */
  /* note that in case of errors (like max < min) the 'min' will win */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  .fc-bucket-value-up {
    color: #63A600;
  }
  .fc-bucket-value-down {
    color: #E00;
  }
  .fc-bucket-position-up {
    color: #63A600;
  }
  .fc-bucket-position-up:before {
    font-family: "Font Awesome 6 Free";
    content: "\f077";
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
    padding-right: 1px;
  }
  .fc-bucket-position-down {
    color: #E00;
  }
  .fc-bucket-position-down:before {
    font-family: "Font Awesome 6 Free";
    content: "\f078";
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
    padding-right: 1px;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /*
      These variables are specific to RaboTaxatie 
  */
  /* note that in case of errors (like max < min) the 'min' will win */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  .fc-flowmenu-item-container {
    display: grid;
    column-gap: 10px;
    grid-template-columns: min-content auto;
  }
  .fc-flowmenu-item-header {
    display: contents;
    color: #FD6400;
    cursor: pointer;
  }
  .fc-flowmenu-item-header.collapsed {
    color: #000099;
  }
  .fc-flowmenu-item-header.disabled {
    color: #EEF0F0 !important;
  }
  .fc-flowmenu-item-marker:before {
    font-family: "Font Awesome 6 Free";
    content: "\f078";
    display: inline-block;
    vertical-align: top;
    padding-top: 3px;
    font-weight: 900;
  }
  .fc-flowmenu-item-marker.fc-flow-menu-mainmenu {
    font-size: x-large;
  }
  .fc-flowmenu-item-title.fc-flow-menu-mainmenu {
    font-size: x-large;
  }
  .fc-flowmenu-item-collapsed {
    display: none;
  }
  /* 
      This container is needed to keep the shadows around items when sliding.
      We create space for the shadows by adding a padding.
      As the items in the container are now visually offset by 15px to the right, we use the margin to shift back.
      And the container needs to be widened by 30px (2 x 15) to grab back the space lost by the padding.
      The widening can be done by using 100% and add 30px.
  */
  .fc-flowmenu-item-content-container {
    padding-top: 15px;
    padding-bottom: 15px;
    /*padding-right: 15px;*/
    /*margin-left: -15px;*/
    /*width: calc(100% + 30px);*/
    /* Only used for initial setup !!! */
  }
  .fc-flowmenu-item-content-container.collapsed {
    display: none;
  }
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  /*
      These variables are specific to RaboTaxatie 
  */
  /* note that in case of errors (like max < min) the 'min' will win */
  /* RFS-2 would dictate 14px, which on our VDIs equals 10.5pt */
  .fc-audit-remarklabel {
    margin-left: 0.75em;
    cursor: pointer;
    align-self: baseline;
  }
  .fc-audit-showremark {
    cursor: pointer;
  }
  .fc-audit-remark-display-grid {
    display: grid;
    grid-template-areas: "textarea icon";
    grid-template-columns: 1fr min-content;
    grid-template-rows: 1fr 17px;
    align-items: end;
    column-gap: 15px;
    grid-column: control/-1;
    align-items: center;
  }
  .fc-audit-remark-hidden-grid {
    display: grid;
    grid-template-areas: "icon label";
    grid-template-columns: 1fr max-content;
    grid-column-gap: 10px;
    align-items: center;
    text-align: right;
  }
  html {
    /* Forcefully show scrollbar so horizontal centering doesn't get messed up when there's a shortage of content */
    overflow-y: scroll !important;
  }
  body {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    overflow-y: initial; /* Prevents double scrollbar on some older browsers when using "overflow-y: scroll;" on the HTML tag */
  }
  /*
    Basic setup 
  */
  #master-layout {
    display: grid;
    grid-template-areas: "header" "content" "footer";
  }
  .horizontal-strip-layout {
    display: grid;
    grid-template-areas: "sl strip sr";
    grid-template-columns: minmax(10px, auto) minmax(600px, calc(100vw - 150px)) minmax(10px, auto);
    justify-items: normal;
  }
  .horizontal-rule-layout {
    display: grid;
    grid-template-areas: "strip";
    grid-template-columns: auto;
  }
  .horizontal-space-layout {
    display: grid;
    grid-template-areas: "strip";
    grid-template-columns: auto;
    grid-template-rows: 10px;
  }
}
