@import url(https://fonts.googleapis.com/css?family=Manrope:200,300,400,500,600,700,800|Material+Icons&display=swap);
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Aktiv";
  src: url("/assets/fonts/AktivGrotesk/AktivGrotesk_W_Rg.eot"); /* IE9 Compat Modes */
  src: url("/assets/fonts/AktivGrotesk/AktivGrotesk_W_Rg.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/AktivGrotesk/AktivGrotesk_W_Rg.woff2") format("woff2"), url("/assets/fonts/AktivGrotesk/AktivGrotesk_W_Rg.woff") format("woff"); /* Pretty Modern Browsers */
  font-weight: 400;
}
@font-face {
  font-family: "Aktiv";
  src: url("/assets/fonts/AktivGrotesk/AktivGrotesk_W_Md.eot"); /* IE9 Compat Modes */
  src: url("/assets/fonts/AktivGrotesk/AktivGrotesk_W_Md.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/AktivGrotesk/AktivGrotesk_W_Md.woff2") format("woff2"), url("/assets/fonts/AktivGrotesk/AktivGrotesk_W_Md.woff") format("woff"); /* Pretty Modern Browsers */
  font-weight: 600;
}
@font-face {
  font-family: "GT Ultra";
  src: url("/assets/fonts/GTUltra/GTUltraMedian-Regular.eot"); /* IE9 Compat Modes */
  src: url("/assets/fonts/GTUltra/GTUltraMedian-Regular.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/GTUltra/GTUltraMedian-Regular.woff2") format("woff2"), url("/assets/fonts/GTUltra/GTUltraMedian-Regular.woff") format("woff"); /* Pretty Modern Browsers */
  font-weight: 400;
}
h1, .h1,
h2,
.h2,
h3,
.h3 {
  font-family: "GT Ultra", Georgia, sans-serif;
  line-height: 1em;
}

h4, .h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 600;
}

h1, .h1 {
  font-size: 2.625rem;
}

h2, .h2 {
  font-size: 2.25rem;
}

h3, .h3 {
  font-size: 1.8125rem;
}

h4, .h4 {
  font-size: 1.3125rem;
}

h5, .h5 {
  font-size: 1.125rem;
}

h6, .h6 {
  font-size: 1rem;
}

a {
  text-decoration: none;
}

/* reset.scss removes the effect of <strong>, so we re-apply it here. */
strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

html,
body {
  height: 100%;
  font-size: 16px !important;
  line-height: 1.5em;
}

div.application {
  font-family: "Aktiv", Arial, sans-serif;
}
div.application.theme--light {
  background: #F6F6F6;
  color: #000000;
}

.container.app-width .container.app-width {
  padding: 0 5%;
}
.container.app-width .container.app-width.fluid {
  max-width: 100%;
}

.logo {
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 600;
}

.container {
  max-width: 90vw;
  padding: 0 15px;
}
.container .layout {
  margin-left: -15px;
  margin-right: -15px;
}
.container .layout.nested {
  padding-left: 1px;
  border-left: 2px solid #173F35;
  margin-left: 2px;
}
.container .flex {
  padding: 0 15px;
}

.x-form > .container {
  padding: 15px;
}
.x-form > .container > .layout.nested {
  padding-left: 1px;
  border-left: 2px solid #333538;
  margin-left: 3px !important;
  margin-top: 8px !important;
}
.x-form > .container > .layout.nested .flex {
  padding: 0 15px;
}
.x-form > .container > .layout > .flex {
  padding: 8px 15px;
}

#wrapper:not(.login-layout):not(.dashboard-layout) {
  padding-bottom: 150px;
}

.login-layout {
  background-color: #173F35;
}
.login-layout .logo {
  height: 35px;
  margin-top: 74px;
}

.logo {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1em;
  text-decoration: none;
  color: #FFFFFF;
  height: 100%;
  display: flex;
  align-items: center;
}
.logo span {
  margin-right: 12px;
  color: #E0EC89;
}
.logo img {
  height: 100%;
}

.grecaptcha-badge {
  visibility: hidden;
}

.page-header {
  background-color: #152C46;
  color: #FFFFFF !important;
  padding: 20px 0;
  margin-bottom: 25px;
}

.page-content {
  padding: 40px 0;
}

.page-header-title {
  color: #FFFFFF !important;
}

.grow-0 {
  flex-grow: 0 !important;
}

.risk__content {
  height: calc(100% - 156px);
}
.risk__content.shape {
  background-position: 0 305px;
}

.page__content {
  height: calc(100% - 199px);
}
.page__content.shape {
  background-position: 0 350px;
}

.shape {
  background-image: url("/assets/img/howden-logo-background.svg");
  background-size: 100%;
  background-attachment: fixed;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */ /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
           supported by Chrome, Edge, Opera and Firefox */
}

.bold-text {
  font-weight: 600 !important;
}

.text-editor .x-input.x-textarea.x-text-field.x-text-field--outline.error--text .x-input__control .x-input__slot .x-label {
  color: #FF585F;
}
.text-editor .x-input.x-textarea.x-text-field.x-text-field--outline .x-input__control .x-input__slot .x-text-field__slot {
  flex-direction: column;
  margin: 0;
  width: 100%;
}
.text-editor .editor-menubar {
  padding: 10px 10px;
  margin: -24px -10px 0;
  border-bottom: 1px solid #2D2D2E;
}
.text-editor .editor-menubar button.x-btn.editor-menubar-button {
  min-width: auto;
  height: 32px;
  width: 32px;
  border-radius: 100%;
  margin: 2px;
}
.text-editor .editor-menubar button.x-btn.editor-menubar-button:not(.x-btn--icon):not(.x-btn--flat):not(.x-btn--outline).theme--light {
  background: #2D2D2E;
  color: #D9D9D9;
}
.text-editor .editor-menubar button.x-btn.editor-menubar-button:not(.x-btn--icon):not(.x-btn--flat):not(.x-btn--outline).theme--light.is-active {
  background: #9D9D9D;
  color: #FFFFFF;
}
.text-editor .editor {
  width: 100%;
  padding: 10px 0;
}
.text-editor .editor .ProseMirror {
  outline: none;
  min-height: 8em;
}
.text-editor .editor .ProseMirror .ProseMirror-gapcursor {
  height: 1.5em;
  position: relative;
}
.text-editor .editor ol {
  list-style: decimal;
}
.text-editor .editor ul {
  list-style: disc;
}
.text-editor .editor ol, .text-editor .editor ul {
  margin-inline-start: 1em;
  padding-inline-start: 40px;
}
.text-editor .editor blockquote {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 40px;
  padding-left: 15px;
  border-left: 3px;
  border-style: solid;
  border-color: #D9D9D9;
}
.text-editor .editor .tableWrapper {
  width: 100%;
  margin: 10px 0 7px;
  padding-bottom: 3px;
  overflow-x: auto;
}
.text-editor .editor .tableWrapper table {
  width: 100%;
  font-size: 0.875rem;
  table-layout: fixed;
  background: #1a1a1a;
}
.text-editor .editor .tableWrapper table, .text-editor .editor .tableWrapper table th, .text-editor .editor .tableWrapper table td {
  border: 1px solid #D9D9D9;
}
.text-editor .editor .tableWrapper table td {
  padding: 6px;
  width: 107px;
}

.text-editor-output {
  margin-top: 15px;
  overflow-x: auto;
}
.text-editor-output > *:not(:last-child) {
  margin-bottom: 30px;
}
.text-editor-output ol, .text-editor-output ul {
  padding-left: 40px;
  margin-bottom: 20px;
}
.text-editor-output ol {
  list-style: decimal;
}
.text-editor-output ul {
  list-style: disc;
}
.text-editor-output blockquote {
  margin-left: 1em;
  border-left: 2px solid currentColor;
  padding: 0.25em 0.25em 0.25em 1em;
}
.text-editor-output table {
  width: 100%;
}
.text-editor-output table tr {
  background: #1a1a1a;
}
.text-editor-output table tr td {
  border: 1px solid #46454D;
  padding: 4px;
  min-width: 75px;
}

.x-list.notification-list {
  border-radius: 4px;
  padding: 14px 0;
  color: #232a3b;
}
.x-list.notification-list ::v-deep .x-list__tile {
  align-items: start;
  height: auto;
  font-size: 15px;
  color: #585E70;
}
.x-list.notification-list ::v-deep .x-list__tile__avatar {
  min-width: 34px;
}
.x-list.notification-list ::v-deep .x-list__tile__avatar .x-avatar {
  padding-top: 1px;
  box-sizing: content-box;
}
.x-list.notification-list ::v-deep .x-list__tile__avatar .x-avatar .x-icon.green-icon {
  color: #23B01D;
}
.x-list.notification-list ::v-deep .x-list__tile__avatar .x-avatar .x-icon.yellow-icon {
  color: #F5A623;
}
.x-list.notification-list ::v-deep .x-list__tile__avatar .x-avatar .x-icon.red-icon {
  color: #D23131;
}
.x-list.notification-list ::v-deep .x-list__tile__avatar .x-avatar .x-icon.grey-icon {
  color: #777777;
}
.x-list.notification-list .notification-title {
  font-weight: 600;
}
.x-list.notification-list .notification-description {
  margin: 5px 0;
}
.x-list.notification-list .notification-description ::v-deep a {
  text-decoration: underline;
}
.x-list.notification-list .notification-description ::v-deep a:hover {
  color: #0056b3;
}
.x-list.notification-list .notification-date {
  opacity: 0.65;
  font-size: 14px;
}

.table-striped {
  color: #5B6786;
  width: 100%;
}
.table-striped th,
.table-striped td {
  padding: 5px 10px;
}
.table-striped th {
  text-transform: uppercase;
  color: #5B6786;
  font-size: 12px;
  font-weight: 600;
  background: #ECEDF3;
}
.table-striped tbody tr {
  border-top: 1px solid #D2D8E0;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: #FFFFFF;
}
.table-striped tbody tr:nth-of-type(even) {
  background-color: #F2F3F7;
}
.table-striped tfoot {
  border-top: 2px solid #5B6786;
  text-transform: uppercase;
  font-weight: 600;
}
.table-striped .numeric {
  font-family: inherit;
}

.premium-change-table-header {
  background-color: #173F35 !important;
  color: white !important;
  font-weight: 600 !important;
}

.theme--light.x-btn:not(.x-btn--outline) {
  color: #173F35;
}

.theme--light.x-btn:not(.x-btn--icon):not(.x-btn--flat) {
  background-color: #f5f5f5;
}

.theme--light.x-btn:not(.x-btn--outline) {
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
}
.theme--light.x-btn:not(.x-btn--outline) .x-btn__content {
  z-index: 1;
}
.theme--light.x-btn:not(.x-btn--outline) .x-btn__content .material-icons {
  font-weight: 200;
}
.theme--light.x-btn:not(.x-btn--outline)::after {
  border-radius: inherit;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  opacity: 1;
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
  width: 100%;
  z-index: 0;
}
.theme--light.x-btn:not(.x-btn--outline).secondary {
  color: #000000;
}
.theme--light.x-btn:not(.x-btn--outline).secondary .x-icon {
  color: #000000;
}
.theme--light.x-btn:not(.x-btn--outline).secondary:hover::after {
  background-color: #998542;
  border-color: #998542;
}
.theme--light.x-btn:not(.x-btn--outline).pistachio {
  color: #173F35;
}
.theme--light.x-btn:not(.x-btn--outline).pistachio:hover {
  color: #E0EC89;
}
.theme--light.x-btn:not(.x-btn--outline).pistachio:hover::after {
  background-color: #173F35;
  border-color: #173F35;
}
.theme--light.x-btn:not(.x-btn--outline).offwhite {
  color: #173F35;
}
.theme--light.x-btn:not(.x-btn--outline).offwhite:hover {
  color: #E0EC89;
}
.theme--light.x-btn:not(.x-btn--outline).offwhite:hover::after {
  background-color: #173F35;
  border-color: #173F35;
}
.theme--light.x-btn:not(.x-btn--outline).remove {
  background-color: rgba(226, 81, 65, 0.1) !important;
  border-color: rgba(226, 81, 65, 0.1) !important;
  color: rgba(226, 81, 65, 0.64);
}
.theme--light.x-btn:not(.x-btn--outline).remove:hover::before, .theme--light.x-btn:not(.x-btn--outline).remove:hover::after {
  background-color: rgba(226, 81, 65, 0.2) !important;
}
.theme--light.x-btn:not(.x-btn--outline).remove.x-btn--icon {
  border-radius: 50%;
}
.theme--light.x-btn:not(.x-btn--outline).remove .x-icon {
  color: rgba(226, 81, 65, 0.64);
}
.theme--light.x-btn:not(.x-btn--outline).cancel {
  color: #173F35;
  background-color: transparent !important;
  border: 1px solid #9D9D9D !important;
}
.theme--light.x-btn:not(.x-btn--outline).reset {
  color: #173F35;
  border: 1px solid #9D9D9D !important;
}
.theme--light.x-btn:not(.x-btn--outline).reset:hover::after {
  background-color: #D9D9D9;
}
.theme--light.x-btn:not(.x-btn--outline).x-btn--cancel {
  border-color: #9D9D9D !important;
}

.close-button {
  background-color: #FF585F !important;
  color: #FFFFFF !important;
}

.theme--light.x-btn.x-btn--disabled:not(.x-btn--icon):not(.x-btn--flat):not(.x-btn--outline) {
  background-color: #D9D9D9 !important;
  color: #FFFFFF !important;
}
.theme--light.x-btn.x-btn--disabled:not(.x-btn--icon):not(.x-btn--flat):not(.x-btn--outline).success--text {
  background-color: #D9D9D9 !important;
  color: #FFFFFF !important;
}

.x-card .x-card__title {
  padding: 24px 24px 10px;
}
.x-card .x-card__text {
  padding: 10px 24px 24px;
}

.x-input--selection-controls__check.secondary {
  background-color: #666666 !important;
  border-color: #666666 !important;
}

.x-input--checkbox.x-input--hide-details .x-input__slot {
  flex-direction: row-reverse;
  align-items: flex-start;
}

.x-table.x-datatable {
  font-family: "Aktiv", Arial, sans-serif;
}
.x-table.x-datatable thead tr {
  height: 40px;
}
.x-table.x-datatable thead tr th {
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
}
.x-table.x-datatable thead tr th:first-child, .x-table.x-datatable thead tr th:not(:first-child) {
  padding: 1em 12px;
}
.x-table.x-datatable thead tr th.sortable .x-icon {
  font-size: 14px !important;
  margin: 0 0 0 5px;
}
.x-table.x-datatable thead tr th.sortable.text-xs-center .x-icon, .x-table.x-datatable thead tr th.sortable.text-xs-right .x-icon {
  margin: 0 5px 0 0;
}
.x-table.x-datatable thead tr th.no-padding {
  padding: 0;
}
.x-table.x-datatable tbody tr td, .x-table.x-datatable tfoot tr td {
  font-size: 0.875rem;
  vertical-align: middle;
  height: 48px;
}
.x-table.x-datatable tbody tr td:first-child, .x-table.x-datatable tbody tr td:not(:first-child), .x-table.x-datatable tfoot tr td:first-child, .x-table.x-datatable tfoot tr td:not(:first-child) {
  padding: 0 12px;
}
.x-table.x-datatable tbody tr td.no-padding, .x-table.x-datatable tfoot tr td.no-padding {
  padding: 0;
}
.x-table.x-datatable tbody tr td .error-message, .x-table.x-datatable tfoot tr td .error-message {
  padding: 2em;
}
.x-table.x-datatable tfoot tr {
  background: #FFFFFF;
}
.x-table.x-datatable tfoot tr td {
  color: #333538;
  font-weight: 600;
}
.x-table.x-datatable.theme--light {
  background: transparent;
  color: #666666;
}
.x-table.x-datatable.theme--light thead tr:first-child {
  border: none;
}
.x-table.x-datatable.theme--light thead tr th {
  color: #1B1C1D;
}
.x-table.x-datatable.theme--light tbody tr:not(:last-child) {
  border: none;
}
.x-table.x-datatable.theme--light tbody tr:nth-child(odd):not(.unstyled-row):not(.contact-row-3) {
  background: #FFFFFF;
}
.x-table.x-datatable.theme--light tbody tr:nth-child(even):not(.unstyled-row):not(.contact-row-3) {
  background: #FFFFFF;
}
.x-table.x-datatable.theme--light tbody tr td {
  color: #000000;
}
.x-table.x-datatable.theme--light tbody tr td .highlight {
  border-radius: 2px;
  background: #173F35;
  color: #E0EC89;
  pointer-events: none;
}
.x-table.x-datatable.theme--light tbody tr td.note-cell {
  font-size: 0.75rem;
  color: #D9D9D9;
}

.fit-to-width .x-table.x-datatable thead tr th {
  white-space: normal;
}
.fit-to-width .x-table.x-datatable thead tr th:hover {
  color: #9D9D9D !important;
}

.cell-padding-vertical .x-table.x-datatable tbody tr td {
  padding-top: 8px;
  padding-bottom: 8px;
}

.cell-vertical-align-top .x-table.x-datatable tbody tr td {
  vertical-align: top;
}

.double-rows .x-table.x-datatable.theme--light tbody tr:not(.unstyled-row) {
  background: transparent;
}
.double-rows .x-table.x-datatable.theme--light tbody tr:not(.unstyled-row):nth-child(4n+1):not(.unstyled-row), .double-rows .x-table.x-datatable.theme--light tbody tr:not(.unstyled-row):nth-child(4n+2):not(.unstyled-row) {
  background: #0D0D0D;
}

.inverse .x-table.x-datatable.theme--light tbody tr:nth-child(odd):not(.unstyled-row) {
  background: #F6F6F6;
}
.inverse.double-rows .x-table.x-datatable.theme--light tbody tr:nth-child(odd):not(.unstyled-row) {
  background: transparent;
}
.inverse.double-rows .x-table.x-datatable.theme--light tbody tr:nth-child(4n+1):not(.unstyled-row), .inverse.double-rows .x-table.x-datatable.theme--light tbody tr:nth-child(4n+2):not(.unstyled-row) {
  background: #1a1a1a;
}

.mta-added-items .x-table.x-datatable.theme--light tbody tr:nth-child(odd):not(.unstyled-row) {
  background: #EBF6EE;
}
.mta-added-items .x-table.x-datatable.theme--light tbody tr:nth-child(even):not(.unstyled-row) {
  background: #F5FBF6;
}

.no-row-hover .x-table.x-datatable.theme--light tbody tr:hover {
  background: transparent;
}
.no-row-hover .x-table.x-datatable.theme--light tbody tr:hover:nth-child(odd):not(.unstyled-row) {
  background: #E6E6E6;
}
.no-row-hover.double-rows .x-table.x-datatable.theme--light tbody tr:hover:nth-child(odd):not(.unstyled-row) {
  background: transparent;
}
.no-row-hover.double-rows .x-table.x-datatable.theme--light tbody tr:hover:nth-child(4n+1):not(.unstyled-row), .no-row-hover.double-rows .x-table.x-datatable.theme--light tbody tr:hover:nth-child(4n+2):not(.unstyled-row) {
  background: #0D0D0D;
}
.no-row-hover.inverse .x-table.x-datatable.theme--light tbody tr:hover {
  background: transparent;
}
.no-row-hover.inverse .x-table.x-datatable.theme--light tbody tr:hover:nth-child(odd):not(.unstyled-row) {
  background: #E6E6E6;
}
.no-row-hover.inverse.double-rows .x-table.x-datatable.theme--light tbody tr:hover:nth-child(odd):not(.unstyled-row) {
  background: transparent;
}
.no-row-hover.inverse.double-rows .x-table.x-datatable.theme--light tbody tr:hover:nth-child(4n+1):not(.unstyled-row), .no-row-hover.inverse.double-rows .x-table.x-datatable.theme--light tbody tr:hover:nth-child(4n+2):not(.unstyled-row) {
  background: #1a1a1a;
}

.dashed-rows .x-table.x-datatable.theme--light tbody tr:not(.unstyled-row) {
  border-bottom: 1px dashed rgba(112, 112, 112, 0.5);
}
.dashed-rows .x-table.x-datatable.theme--light tbody tr:not(.unstyled-row) .x-icon {
  color: #152C46 !important;
}

.double-dashed-rows .x-table.x-datatable.theme--light tbody tr:not(.unstyled-row):nth-child(2n) {
  border-bottom: 1px dashed rgba(112, 112, 112, 0.5);
}

.theme--light.x-datatable thead th.column.sortable.active,
.theme--light.x-datatable thead th.column.sortable.active .x-icon {
  color: #152C46;
  font-weight: 600;
}

.x-tabs__bar {
  background-color: #152C46 !important;
}

.x-tabs__item {
  opacity: 1 !important;
}

.x-tabs__item--active {
  background-color: #F6F6F6;
  color: #152C46;
  border-bottom: #F6F6F6;
}

.sortable:hover {
  color: #00AAFF !important;
}

.additional-stylings {
  font-size: 0.75rem;
  white-space: nowrap;
  color: #000000;
}

div.x-dialog {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}
div.x-dialog .container {
  padding: 40px;
}
div.x-dialog .container h2, div.x-dialog .container .h2 {
  font-size: 2.125rem;
}
div.x-dialog div.x-input.theme--light.x-text-field.x-text-field--outline:not(.x-input--is-focused):not(.x-input--has-state) .x-input__control .x-input__slot:hover {
  border-color: #152C46;
}

.x-divider.primary {
  border-color: #E6E6E6 !important;
}
.x-divider.section-divider {
  border-color: #152C46;
}
.x-divider.section-divider-white {
  border-color: #FFFFFF;
}
.x-divider.thick {
  border-top-width: 4px;
}

ul.x-expansion-panel {
  box-shadow: none;
}
ul.x-expansion-panel.theme--light .x-expansion-panel__container {
  background: #FFFFFF;
  color: inherit;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  margin-bottom: 16px;
}
ul.x-expansion-panel.theme--light .x-expansion-panel__container .x-expansion-panel__header {
  padding: 19px 40px 19px 24px;
}
ul.x-expansion-panel.theme--light .x-expansion-panel__container .x-expansion-panel__header h3, ul.x-expansion-panel.theme--light .x-expansion-panel__container .x-expansion-panel__header .h3 {
  color: #152C46;
  font-size: 1.5rem;
}
ul.x-expansion-panel.theme--light .x-expansion-panel__container .x-expansion-panel__header .x-expansion-panel__header__icon .x-icon {
  color: #2D2D2E;
}
ul.x-expansion-panel.theme--light .x-expansion-panel__container .x-expansion-panel__body {
  padding: 0 24px;
}
ul.x-expansion-panel.theme--light .x-expansion-panel__container .x-expansion-panel__body table h4, ul.x-expansion-panel.theme--light .x-expansion-panel__container .x-expansion-panel__body table .h4 {
  font-size: 1.125rem;
  margin: 16px 0;
}
ul.x-expansion-panel.theme--light .x-expansion-panel__container.x-expansion-panel__container--active .x-expansion-panel__body {
  padding-bottom: 32px;
}

div.x-input {
  letter-spacing: 0;
  min-width: 100px;
}
div.x-input .x-label {
  font-size: 0.875rem;
  margin-bottom: 5px;
  font-weight: 600;
}
div.x-input.required .x-label::after {
  content: " *";
  color: red;
}
div.x-input > .x-input__control > .x-input__slot > .x-text-field__slot .x-text-field__prefix, div.x-input > .x-input__control > .x-input__slot > .x-select__slot .x-text-field__prefix {
  background: rgba(0, 0, 0, 0.03) !important;
  color: #000000;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 400;
}
div.x-input > .x-input__control > .x-input__slot > .x-text-field__slot .x-input__append-inner .x-icon,
div.x-input > .x-input__control > .x-input__slot > .x-text-field__slot .x-input__prepend-outer .x-icon, div.x-input > .x-input__control > .x-input__slot > .x-select__slot .x-input__append-inner .x-icon,
div.x-input > .x-input__control > .x-input__slot > .x-select__slot .x-input__prepend-outer .x-icon {
  font-size: 1.5rem;
}
div.x-input.x-input--is-disabled > .x-input__control > .x-input__slot .x-label {
  color: #000000;
}
div.x-input.x-input--is-disabled > .x-input__control > .x-input__slot > .x-text-field__slot {
  background: #F0F0F0 !important;
  border-color: #D9D9D9 !important;
}
div.x-input.x-input--is-disabled > .x-input__control > .x-input__slot > .x-text-field__slot .x-text-field__prefix {
  background: #EFF1F4;
}
div.x-input.x-input--is-disabled > .x-input__control > .x-input__slot input {
  color: #666666;
  font-weight: 600;
}

.theme--light.x-input:not(.x-input--is-disabled) input,
.theme--light.x-input:not(.x-input--is-disabled) textarea {
  font-weight: 600;
}
.theme--light.x-input:not(.x-input--is-disabled) input::-moz-placeholder, .theme--light.x-input:not(.x-input--is-disabled) textarea::-moz-placeholder {
  color: #5B6B7E;
  font-weight: 400;
}
.theme--light.x-input:not(.x-input--is-disabled) input::placeholder,
.theme--light.x-input:not(.x-input--is-disabled) textarea::placeholder {
  color: #5B6B7E;
  font-weight: 400;
}

.x-menu__content {
  padding: 2px;
  border-radius: 8px;
}
.x-menu__content .x-list {
  padding: 0;
}
.x-menu__content .x-list .x-list__tile {
  height: auto;
  padding: 9px;
  color: inherit;
}
.x-menu__content .x-list .buttons-top-tile .x-list__tile {
  padding-top: 0;
  margin: -9px;
}
.x-menu__content .x-list .buttons-top-tile .x-list__tile button {
  flex-grow: 1;
  margin: 9px;
}
.x-menu__content .x-list .buttons-top-tile .x-list__tile button:not(:first-child) {
  margin-left: 0;
}
.x-menu__content.theme--light {
  background: #FFFFFF;
  border-radius: 9px;
  -ms-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.4);
}
.x-menu__content.theme--light.x-autocomplete__content {
  border-radius: 8px;
}
.x-menu__content.theme--light .x-list,
.x-menu__content.theme--light .x-select-list {
  background: transparent;
  color: inherit;
  box-shadow: none;
}
.x-menu__content.theme--light .x-list .x-list__tile {
  color: #173F35;
}
.x-menu__content.theme--light .x-list .x-list__tile.primary--text {
  color: #173F35 !important;
}
.x-menu__content.theme--light .x-list .x-list__tile:not(.x-list__tile--disabled):hover {
  background: #FFBF3F;
  color: #FFFFFF !important;
}
.x-menu__content.theme--light .x-list .x-list__tile .x-list__tile__sub-title {
  color: #161d2f;
}
.x-menu__content.theme--light .x-list .no-hover .x-list__tile:hover {
  background: transparent;
  color: inherit;
}

.x-overlay.x-overlay--active:before {
  opacity: 0.75;
}

.theme--light.x-pagination .x-pagination__item {
  width: auto !important;
  min-width: 24px;
  padding: 0 8px;
  border-radius: 24px;
}
.theme--light.x-pagination .x-pagination__item.x-pagination__item--active {
  color: #173F35;
}
.theme--light.x-pagination .x-pagination__item:hover {
  background-color: #173F35 !important;
  color: #E0EC89 !important;
}

.x-input--selection-controls.x-input--radio-group {
  margin-top: 0;
  padding-top: 0;
}
.x-input--selection-controls.x-input--radio-group.x-input--radio-group--row .x-input--radio-group__input {
  border: 1px solid #A9AEB8;
  border-radius: 8px;
  background: #fff;
  width: auto;
}
.x-input--selection-controls.x-input--radio-group.x-input--radio-group--row .x-input--radio-group__input .x-radio:not(:nth-last-of-type(1)) {
  border-right: 1px solid #A9AEB8;
}
.x-input--selection-controls.x-input--radio-group .x-input__slot > .x-label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.x-input--selection-controls.x-input--radio-group .x-input__slot .x-radio {
  padding: 10px 20px 10px 10px;
  margin: 0;
}
.x-input--selection-controls.x-input--radio-group .x-input__slot .x-radio .primary {
  border: 1px solid #173F35 !important;
}
.x-input--selection-controls.x-input--radio-group .x-input__slot .x-radio .x-input--selection-controls__input {
  width: 20px;
  height: 20px;
  background-color: white !important;
  justify-content: center;
  align-items: center;
}
.x-input--selection-controls.x-input--radio-group .x-input__slot .x-radio .x-input--selection-controls__input .x-icon {
  align-self: center;
  color: #173F35;
  font-size: 16px;
  transform: translateX(-0.25px);
}

.x-input--selection-controls:not(.x-input--hide-details).x-input--radio-group--row .x-input__slot {
  flex-direction: column;
  align-items: flex-start;
}

.radio-group-label {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1em;
  color: #173F35;
  margin-bottom: 5px;
}
.radio-group-label span {
  color: #FF585F;
}

.step-heading {
  color: #002855;
  font-size: 32px;
  line-height: 64px;
  font-weight: normal;
}

.x-stepper__header {
  box-shadow: none !important;
}

.x-stepper__items .x-stepper__content {
  padding: 0;
}

.x-stepper__step {
  border-radius: 50%;
}

.x-stepper__step__step {
  border: 2px solid #D2D8E0;
  background: transparent !important;
  color: #9CA9BB !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1rem;
  margin: 0;
}
.x-stepper__step__step.primary {
  background: transparent !important;
}

.x-stepper__header .x-divider {
  height: 2px;
  max-height: 2px;
  border-radius: 2px;
  border: none;
  background-color: #D2D8E0;
}
.x-stepper__header .x-divider.active {
  background-color: #40B6E6 !important;
}
.x-stepper__header .x-divider.complete {
  background-color: #60BF5C !important;
}

.x-stepper__step--active .x-stepper__step__step {
  border: 2px solid #40B6E6 !important;
  color: #40B6E6 !important;
  font-size: 14px;
  font-weight: 600;
}

.x-stepper__step--complete .x-stepper__step__step {
  border: 2px solid #60BF5C !important;
  color: #60BF5C !important;
  font-size: 14px;
  font-weight: 600;
}
.x-stepper__step--complete .x-stepper__step__step .x-icon {
  color: #60BF5C !important;
  font-size: 26px;
}

.x-stepper__step--active ::v-deep .x-stepper__label {
  color: #ffc107;
}

div.x-input--switch {
  font-family: "GT Ultra", Georgia, sans-serif;
  font-size: 1rem;
}
div.x-input--switch.theme--light .x-input__control .x-input__slot .x-label {
  color: inherit;
  margin-left: 10px;
}
div.x-input--switch.theme--light .x-input__control .x-input__slot .x-input--selection-controls__input {
  margin: 0;
  height: 22px;
  width: 42px;
}
div.x-input--switch.theme--light .x-input__control .x-input__slot .x-input--selection-controls__input .x-input--selection-controls__ripple {
  left: -12px;
}
div.x-input--switch.theme--light .x-input__control .x-input__slot .x-input--selection-controls__input .x-input--switch__track {
  border-radius: 11px;
  opacity: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
div.x-input--switch.theme--light .x-input__control .x-input__slot .x-input--selection-controls__input .x-input--switch__thumb {
  color: #FFFFFF !important;
  width: 18px;
  height: 18px;
  top: 2px;
  left: 3px;
  box-shadow: none;
}
div.x-input--switch.theme--light .x-input__control .x-messages {
  min-height: 15px;
}
div.x-input--switch.theme--light.x-input--is-dirty .x-input--switch__thumb,
div.x-input--switch.theme--light.x-input--is-dirty .x-input--selection-controls__ripple {
  transform: translate(18px);
}
div.x-input--switch.theme--light .x-input__prepend-outer {
  margin-right: 10px;
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
}
div.x-input--switch.theme--light.double-switch {
  align-items: center;
}
div.x-input--switch.theme--light.double-switch .x-label {
  color: #9D9D9D;
}
div.x-input--switch.theme--light.double-switch .x-input__prepend-outer {
  color: #52C76B;
}
div.x-input--switch.theme--light.double-switch.x-input--is-label-active .x-label {
  color: #52C76B;
}
div.x-input--switch.theme--light.double-switch.x-input--is-label-active .x-input__prepend-outer {
  color: #9D9D9D;
}
div.x-input--switch.theme--light.double-switch .x-input--switch__track {
  color: #52C76B !important;
}

.x-select.x-input--is-disabled ::v-deep > .x-input__control > .x-input__slot > .x-select__slot {
  background: #EFF1F4;
  border-color: #CED0D6;
}
.x-select.x-input--is-disabled ::v-deep > .x-input__control > .x-input__slot > .x-select__slot input {
  color: #000000;
}
.x-select .x-select__slot {
  border-radius: 8px;
  height: 40px;
}
.x-select .x-select__selection {
  font-weight: 600;
  color: #000000;
  font-size: 0.875rem;
}
.x-select.x-text-field input {
  font-size: 0.875rem;
  font-weight: 600;
  color: #000000;
}

.theme--light.x-text-field:not(.x-textarea) > .x-input__control > .x-input__slot > .x-text-field__slot {
  border-radius: 8px;
  height: 40px !important;
  box-shadow: none;
}
.theme--light.x-text-field > .x-input__control > .x-input__slot > .x-text-field__slot {
  border-radius: 6px;
  height: 40px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.04);
}
.theme--light.x-text-field > .x-input__control > .x-input__slot > .x-text-field__slot .x-text-field__prefix {
  border-top-left-radius: inherit !important;
  border-bottom-left-radius: inherit !important;
}
.theme--light.x-text-field > .x-input__control > .x-input__slot > .x-text-field__slot .x-text-field__suffix {
  border-top-right-radius: inherit !important;
  border-bottom-right-radius: inherit !important;
}
.theme--light.x-text-field > .x-input__control > .x-input__slot > .x-text-field__slot input {
  font-size: 0.875rem;
  font-weight: 600;
  color: #000000;
}
.theme--light.x-text-field > .x-input__control > .x-input__slot > .x-text-field__slot input::-moz-placeholder {
  font-weight: 400;
  color: #5B6B7E;
}
.theme--light.x-text-field > .x-input__control > .x-input__slot > .x-text-field__slot input::placeholder {
  font-weight: 400;
  color: #5B6B7E;
}
.theme--light.x-text-field .x-label {
  color: #000000;
}
.theme--light.x-text-field.x-input--is-disabled > .x-input__control > .x-input__slot > .x-text-field__slot {
  background: #F0F0F0;
  border-color: #D9D9D9;
}
.theme--light.x-text-field.x-input--is-disabled > .x-input__control > .x-input__slot > .x-text-field__slot .x-text-field__prefix {
  background: #EFF1F4;
}
.theme--light.x-text-field.x-input--is-disabled > .x-input__control > .x-input__slot > .x-text-field__slot input {
  color: #666666;
}

.x-textarea textarea {
  font-size: 0.875rem;
  font-weight: 400;
  min-height: 80px;
}
.x-textarea.theme--light.x-input--is-disabled textarea {
  color: #000000;
}

.x-tag {
  font-family: "Aktiv", Arial, sans-serif !important;
}

.event-box {
  background-color: #FFFFFF;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04);
  border-radius: 0px 4px 4px 4px;
  padding: 24px 32px;
  margin: 32px 0;
}

.event-box--margin {
  margin-left: 25px;
  padding-bottom: 1px;
}

.task-box {
  flex-direction: column;
}

.task-row {
  padding: 8px 8px 16px;
  margin-bottom: 6px;
  border-radius: 4px;
}
.task-row:nth-child(odd) {
  background-color: #F6F6F6;
}

.details-row {
  padding: 4px 8px;
  border-radius: 2px;
}
.details-row:nth-child(odd) {
  background-color: #F6F6F6;
}

.event-box-text {
  font-size: 12px;
  font-weight: 600;
  line-height: 16.39px;
}

.event-box-title {
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
  color: #152C46;
  font-family: "GT Ultra", Georgia, sans-serif;
}

.task-container-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.task-container-data {
  font-weight: 600;
  color: #152C46;
}

/*# sourceMappingURL=app.css.map*/